From 4d7b597f698e31b2f4aebdec5d4fe0690c2dc0fc Mon Sep 17 00:00:00 2001
From: amiraa <amiraa@mit.edu>
Date: Sat, 30 Apr 2022 16:48:31 -0400
Subject: [PATCH] AM216_Final_Project

---
 .gitignore                        |    55 +-
 demos/indexDropbox.html           |    89 +
 demos/indexExampleGraph.html      |   480 +
 json/tutorial.json                | 59357 +---------------------------
 json/tutorialInit.json            |     2 +-
 julia/include/export.jl           |    15 +
 julia/include/forces.jl           |     8 +-
 julia/include/run.jl              |  1647 +-
 julia/include/updateNodes.jl      |    14 +-
 jupyter/AM216_Final_Project.ipynb |  1348 +
 10 files changed, 3481 insertions(+), 59534 deletions(-)
 create mode 100644 demos/indexDropbox.html
 create mode 100644 demos/indexExampleGraph.html
 create mode 100644 jupyter/AM216_Final_Project.ipynb

diff --git a/.gitignore b/.gitignore
index 9e0b20d..bf38b87 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,27 +1,28 @@
-node_modules
-.ipynb_checkpoints
-*.3dm.rhl
-*.3dmbak
-*.objbak
-*.stl
-*.obj
-*.mtl
-CAD
-tutorial
-newTendon
-live
-.DS_Store
-*.gif
-*.png
-*.mp4
-img
-res3d
-*.stlbak
-*.dxfbak
-*.3mf
-*bracket.3dm
-*new_face_75.3dm
-*.gcode
-objs
-library_vol_0.25_ratio_0.0
-obj
+node_modules
+.ipynb_checkpoints
+*.3dm.rhl
+*.3dmbak
+*.objbak
+*.stl
+*.obj
+*.mtl
+CAD
+tutorial
+newTendon
+live
+.DS_Store
+*.gif
+*.png
+*.mp4
+img
+res3d
+*.stlbak
+*.dxfbak
+*.3mf
+*bracket.3dm
+*new_face_75.3dm
+*.gcode
+objs
+library_vol_0.25_ratio_0.0
+obj
+AM216_Final_Project
diff --git a/demos/indexDropbox.html b/demos/indexDropbox.html
new file mode 100644
index 0000000..93471e0
--- /dev/null
+++ b/demos/indexDropbox.html
@@ -0,0 +1,89 @@
+<!doctype html>
+<html>
+<head>
+  <title>Dropbox JavaScript SDK</title>
+  <link rel="stylesheet" href="/styles.css">
+  <script src="https://cdn.jsdelivr.net/npm/promise-polyfill@7/dist/polyfill.min.js"></script>
+  <script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.js"></script>
+  <script src="https://unpkg.com/dropbox@10.28.0/dist/Dropbox-sdk.min.js"></script>
+</head>
+<body>
+  <!-- Example layout boilerplate -->
+  <header class="page-header">
+    <div class="container">
+      <nav>
+        <a href="/">
+          <h1>
+            <img src="https://cfl.dropboxstatic.com/static/images/brand/logotype_white-vflRG5Zd8.svg" class="logo" />
+            JavaScript SDK Examples
+          </h1>
+        </a>
+        <a href="https://github.com/dropbox/dropbox-sdk-js/tree/main/examples/javascript" class="view-source">View Source</a>
+      </nav>
+      <h2 class="code">
+        <a href="/">examples</a> / basic
+      </h2>
+    </div>
+  </header>
+
+  <!-- Example description and UI -->
+  <section class="container main">
+    <p>This example fetches the contents of your root Dropbox directory. It uses the <code>Dropbox.filesListFolder()</code> method [<a href="http://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesListFolder">docs</a>].</p>
+
+    <!-- <form id="basic-form" onSubmit="return listFiles()">
+      <input type="text" id="access-token" placeholder="Access token" />
+      <button type="submit">Submit</button>
+    </form> -->
+
+    <!-- The files returned from the SDK will be added here -->
+    <ul id="files"></ul>
+
+    <p class="info">To obtain an access token for quick testing, you can go to <a href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_list_folder" target="_blank">API Explorer</a> click the "Get Token" button on the top right, copy the token it creates and then paste it here.</p>
+  </section>
+
+  <!-- Scripts to run example -->
+  <script>
+    var form = document.getElementById('basic-form');
+    var ACCESS_TOKEN = "sl.BGviryDjQhu6utc8dYNFgdL9qyZuhKDji159P5C1rXja2MPu1tuDseCRWM_-FFDbC_ZNWi90ALgmOwBQ-e0a2QbwIIiYJK1-hSuOTW19Sis6DgKIjbraEbsxfRQYYFd14mlinn8X";
+
+    var dbx = new Dropbox.Dropbox({ accessToken: ACCESS_TOKEN });
+      dbx.filesListFolder({path: 'id:3rLnCv96uAAAAAAAAAy7Pg'})
+        .then(function(response) {
+          console.log('response', response)
+          displayFiles(response.result.entries);
+        })
+        .catch(function(error) {
+          console.error(error);
+        });
+    
+    // form.onsubmit = function listFiles(e) {
+    //   e.preventDefault();
+
+    //   var ACCESS_TOKEN = "sl.BGviryDjQhu6utc8dYNFgdL9qyZuhKDji159P5C1rXja2MPu1tuDseCRWM_-FFDbC_ZNWi90ALgmOwBQ-e0a2QbwIIiYJK1-hSuOTW19Sis6DgKIjbraEbsxfRQYYFd14mlinn8X";
+      
+      
+    //   document.getElementById('access-token').value;
+    //   var dbx = new Dropbox.Dropbox({ accessToken: ACCESS_TOKEN });
+    //   dbx.filesListFolder({path: ''})
+    //     .then(function(response) {
+    //       console.log('response', response)
+    //       displayFiles(response.result.entries);
+    //     })
+    //     .catch(function(error) {
+    //       console.error(error);
+    //     });
+    // }
+
+    function displayFiles(files) {
+      var filesList = document.getElementById('files');
+      var li;
+      for (var i = 0; i < files.length; i++) {
+        li = document.createElement('li');
+        console.log(files[i])
+        li.appendChild(document.createTextNode(files[i].name));
+        filesList.appendChild(li);
+      }
+    }
+  </script>
+</body>
+</html>
diff --git a/demos/indexExampleGraph.html b/demos/indexExampleGraph.html
new file mode 100644
index 0000000..11a00ff
--- /dev/null
+++ b/demos/indexExampleGraph.html
@@ -0,0 +1,480 @@
+<head>
+    <style> body { margin: 0; } </style>
+    <title>MetaVoxel</title>
+
+    <script src="https://unpkg.com/dropbox@10.28.0/dist/Dropbox-sdk.min.js"></script>
+
+    <script src="../lib/dat.gui.js"></script>
+
+    <script src="//unpkg.com/three"></script>
+  
+    <script src="../lib/js-colormaps.js"></script>
+  
+    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
+    <script src="//unpkg.com/3d-force-graph"></script>
+    <!-- <script src="../lib/3d-force-graph.js"></script> -->
+    <script src="//unpkg.com/three-spritetext"></script>
+
+    <script src="../visualization/utils.js"></script>
+  </head>
+  
+  <body>
+    <div id="3d-graph"></div>
+  
+    <script>
+        var color1= 0xffffff; /*white*/
+        var color2= '#020227';  /*kohly*/
+        var color3= 0x1c5c61; /*teal*/
+        var color4= "#fa6e70"; //red/orange
+        var color5="#380152"; //purple
+        var color6="#696767"; //grey
+        var color7="#03dbfc"; //blue
+
+        var name="tutorial";
+    //   var name="newTendon";
+
+        var scale,nodeScale;
+
+        var interaction= {
+            type:"train",
+            number:"1",
+            exaggeration:1,
+            speed:100/10, //100
+            run: getFiles
+        }
+
+        var gui = new dat.GUI();
+        // gui.add(interaction,'exaggeration',0.0,100.0).listen();
+        // gui.add(interaction,'speed',0.0,2000.0).listen();
+        gui.add(interaction,'type',{ train: 'train', gen1: 'gen1', gen2: 'gen2' }).listen();
+        gui.add(interaction,'number').listen();
+        gui.add(interaction,'run').listen();
+
+        var ACCESS_TOKEN = "sl.BGviryDjQhu6utc8dYNFgdL9qyZuhKDji159P5C1rXja2MPu1tuDseCRWM_-FFDbC_ZNWi90ALgmOwBQ-e0a2QbwIIiYJK1-hSuOTW19Sis6DgKIjbraEbsxfRQYYFd14mlinn8X";
+
+        var dbx = new Dropbox.Dropbox({ accessToken: ACCESS_TOKEN });
+        // console.log(dbx.filesListFolder({path: 'id:3rLnCv96uAAAAAAAAAy7Pg'}).result)
+        // var files=getFiles("train","1");
+        // displayFiles(files);
+
+        var urls=[]
+        var count=0;
+        var ii=[];
+        var names=[];
+
+        function getFiles(){
+            urls=[]
+            count=0;
+            ii=[];
+            names=[];
+
+
+            var name=interaction.type;
+            var number=interaction.number;
+            var folder1="";
+            var folder2="";
+            var files="";
+            dbx.filesListFolder({path: 'id:3rLnCv96uAAAAAAAAAy7Pg'})
+                .then(function(response) {
+                    // console.log('response', response)
+                    
+                    folder1=displayFiles(response.result.entries,name);
+                    console.log(folder1)
+                    dbx.filesListFolder({path: folder1.id})
+                        .then(function(response) {
+                            // console.log('response', response)
+                            
+                            folder2=displayFiles(response.result.entries,number);
+                            console.log(folder2)
+                            dbx.filesListFolder({path: folder2.id})
+                                .then(function(response) {
+                                    // console.log('response', response)
+                                    
+                                    files=response.result.entries;
+                                    
+                                    
+                                    for (var i = 0; i < files.length; i++) {
+                                        // filesGetTemporaryLink
+                                        // filesDownload
+                                        var file=files[i];
+                                        
+                                        // console.log(ii)
+                                        dbx.filesGetTemporaryLink({path: file.id})
+                                                .then(function(response) {
+                                                // console.log('response', response.result)
+
+                                                var nname=response.result.metadata.name;
+                                                // console.log(nname)
+                                                ii.push(parseInt(nname.slice(0, -5)))
+                                                names.push(nname);
+                                                
+                                                urls.push(response.result.link)
+                                                // console.log(ii)
+                                                count++;
+                                                if (count==files.length){
+                                                    // console.log(ii)
+                                                    // console.log(urls);
+                                                    show();
+                                                }
+
+                                            })
+                                            .catch(function(error) {
+                                            console.error(error);
+                                        });
+                                    }
+                                })
+                                .catch(function(error) {
+                                console.error(error);
+                            });
+                        })
+                        .catch(function(error) {
+                        console.error(error);
+                    });
+                })
+                .catch(function(error) {
+                console.error(error);
+            });
+            
+
+        }
+
+    
+
+
+
+        function displayFiles(files,name) {
+            for (var i = 0; i < files.length; i++) {
+                if (files[i].name==name){
+                    // console.log(files[i])
+                    return files[i];
+                } 
+            }
+        }
+
+        
+        function show(){
+            // var name=interaction.name;
+            $.getJSON(urls[ii.indexOf(0)], function(json0) {
+                    var maxNumFiles=json0.maxNumFiles-1;
+                    var vizScale=json0.scale;
+                    // var vizScale=1;
+                $.getJSON(urls[ii.indexOf(urls.length-1)], function(json) {
+                    var setup=json;
+                    var static=false
+                    setup.viz.colorMaps=[YlGnBu,coolwarm, winter ,jet];
+                    
+            
+
+                    if(setup.hierarchical){
+                        // scale=setup.scale*200;
+                        // nodeScale=scale/1500;
+                        scale=setup.scale*0.001;
+                        nodeScale=scale*10;
+
+                    }else{
+                        scale=setup.scale*50;
+                        nodeScale=scale*2.0;
+                    }
+                    if (setup.multiscale){
+
+                        scale=setup.scale*0.003;
+                        nodeScale=scale*10
+
+                    }
+
+            
+                    var stress=0.0;
+                    var gData = 
+                    {
+                        nodes: setup.nodes.map(node => ({ 
+                            // id: node.id,
+                            id: (node.parent=="11")?node.id:(node.parent+node.id),
+                            px:node.position.x*scale*vizScale,
+                            py:node.position.y*scale*vizScale,
+                            pz:node.position.z*scale*vizScale,
+                            dx:node.displacement.x*scale*vizScale,
+                            dy:node.displacement.y*scale*vizScale,
+                            dz:node.displacement.z*scale*vizScale,
+                            restrained:node.restrained_degrees_of_freedom[0],
+                            loaded:!(node.force.x==0.0&&node.force.y==0.0&&node.force.z==0.0),
+                            displaced:(node.fixedDisplacement===undefined ||(node.fixedDisplacement.x==0&&node.fixedDisplacement.y==0&&node.fixedDisplacement.z==0))?false:true,
+                            dxs:new Array(maxNumFiles).fill(0),
+                            dys:new Array(maxNumFiles).fill(0),
+                            dzs:new Array(maxNumFiles).fill(0),
+                            axs:new Array(maxNumFiles).fill(0),
+                            ays:new Array(maxNumFiles).fill(0),
+                            azs:new Array(maxNumFiles).fill(0),
+                            size:(node.material===undefined) ? nodeScale:(( setup.multiscale===undefined || !setup.multiscale)?(nodeScale*0.8):(node.scale*nodeScale*0.8**(1/node.scale))),
+                            opacity: (node.parent=="11"|| setup.multiscale===undefined ||node.parent=="")?0.8:0.0,
+
+                        })),
+                        links: setup.edges
+                            .filter(edge => edge.id)
+                            .map(edge => ({
+                                // source: 'n'+edge.source,
+                                // target: 'n'+edge.target,
+                                source: (setup.multiscale===undefined || !setup.multiscale ||edge.sourceNodalCoordinate==0)?'n'+edge.source:('n'+edge.source+'n'+edge.sourceNodalCoordinate),
+                                target: (setup.multiscale===undefined || !setup.multiscale ||edge.targetNodalCoordinate==0)?'n'+edge.target:('n'+edge.target+'n'+edge.targetNodalCoordinate),
+                            
+                                stresses:new Array(maxNumFiles).fill(getColor(setup.viz,edge.stress)),
+                                stressesVal:new Array(maxNumFiles).fill(edge.stress),
+                                color:getColor(setup.viz,edge.stress)
+                            }))
+                    };
+
+                    // console.log(getColor(setup.viz,setup.edges[0].stress))
+
+                    
+                    
+                    //////////////////////////////////////////////////////////////////////////
+                    const Graph = ForceGraph3D({ controlType: 'orbit' }).backgroundColor(color2)
+                    (document.getElementById('3d-graph'))
+                    .d3Force('center', null)
+                    .d3Force('charge', null)
+                    .linkWidth(1.0*scale)
+                    .linkOpacity(1.0)
+                    // .linkColor(color3)
+                    .nodeThreeObject(({ size,restrained,loaded,displaced,opacity }) => new THREE.Mesh(
+                        new THREE.BoxGeometry(size, size, size)
+                        ,
+                            new THREE.MeshLambertMaterial({
+                            color: getNodeColor(restrained,loaded,displaced),
+                            transparent: opacity>0.0?false:true,
+                            transparent:false,
+                            opacity: opacity
+                        })
+                    ))
+                    .d3Force('box', () => {
+            
+                            gData.nodes.forEach(node => {
+                            node.fx=node.px;
+                            node.fy=node.py;
+                            node.fz=node.pz;
+            
+                        });
+                    })
+                    .cooldownTime(Infinity)
+                    .graphData(gData);
+
+                    var position=new THREE.Vector3(500,100,3000);
+                    Graph.camera().position.copy( position );
+                    // Graph.camera().lookAt( 500, orbit.target.y, orbit.target.z );
+                    // Graph.camera().lookAt( 500, 0, 0 );
+                    Graph.controls().target.set( 500, 100, 0 );
+
+                    ////////////////////////////////////
+                    drawConstraintBoundingBoxes(json0,Graph.scene(),scale*vizScale);
+
+
+                    ///////////////////////////////////////
+
+                    if(static){
+                        var count=0;
+                        var totalCount=0;
+                        var increment=true;
+                        
+                        setInterval(() => {
+                            Graph.d3Force('box', () => {
+                                gData.nodes.forEach(node => {
+                                node.fx=node.px+count/interaction.speed*node.dx*interaction.exaggeration;
+                                node.fy=node.py+count/interaction.speed*node.dy*interaction.exaggeration;
+                                node.fz=node.pz+count/interaction.speed*node.dz*interaction.exaggeration;
+                    
+                                });
+                            });
+                    
+                            if(count>interaction.speed){
+                                increment=false;
+                            }else if (count<0){
+                                increment=true;
+                            }
+
+                            if(increment){
+                                count++;
+                            }else{
+                                count--;
+                            }
+
+                        }, 1);
+
+                    }else{ //dynamic
+                        for(let i=0;i<maxNumFiles;i++){
+                            $.getJSON(urls[ii.indexOf(i)] , function(jsons) {
+                                var setups=jsons;
+                                for(let j=0;j<setups.nodes.length;j++){
+                                    gData.nodes[j].dxs[i]=setups.nodes[j].displacement.x*scale*vizScale;
+                                    gData.nodes[j].dys[i]=setups.nodes[j].displacement.y*scale*vizScale;
+                                    gData.nodes[j].dzs[i]=setups.nodes[j].displacement.z*scale*vizScale;
+                                    gData.nodes[j].axs[i]=setups.nodes[j].angle.x;
+                                    gData.nodes[j].ays[i]=setups.nodes[j].angle.y;
+                                    gData.nodes[j].azs[i]=setups.nodes[j].angle.z;
+                                }
+                                for(let j=0;j<setups.edges.length;j++){
+                                    setups.viz.colorMaps=[YlGnBu,coolwarm, winter ,jet];
+                                    setups.viz.colorMap=0;
+                                    // console.log(getColor(setups.viz,setups.edges[j].stress))
+                                    gData.links[j].stresses[i]=getColor(setups.viz,setups.edges[j].stress);
+                                    gData.links[j].stressesVal[i]=setups.edges[j].stress;
+                                }
+                            });
+                        }
+
+                        var count=0;
+                        var totalCount=0;
+                        var increment=true;
+                    
+
+                        
+                        setInterval(() => {
+                            Graph.d3Force('box', () => {
+                                gData.nodes.forEach(node => {
+                                    node.fx=node.px+node.dxs[count]*interaction.exaggeration;
+                                    node.fy=node.py+node.dys[count]*interaction.exaggeration;
+                                    node.fz=node.pz+node.dzs[count]*interaction.exaggeration;
+                                });
+
+                            });
+
+                            // gData.links.forEach(edge => {edge.color=edge.stresses[count]});
+                            // Graph.graphData(gData);
+
+                            Graph.nodeThreeObject(({ size,restrained,loaded,displaced,axs,ays,azs,opacity }) => getMesh(size,restrained,loaded,displaced,axs[count],ays[count],azs[count],opacity) );
+                            
+                            Graph.linkColor(({ stresses }) => stresses[count]);
+                            // Graph.linkWidth(({ stressesVal }) => (stressesVal[count]==0.0)?(scale/10.0):scale)
+                            // Graph.linkOpacity(({ stresses }) => stresses[count]);
+                            // console.log()
+
+                            
+                            count++;
+                            if(count>maxNumFiles-1){
+                                count=0;
+                            }
+                            // if(count>=maxNumFiles-1){
+                            //     increment=false;
+                            // }else if (count<=1){
+                            //     increment=true;
+                            // }
+
+                            // if(increment){
+                            //     count++;
+                            // }else{
+                            //     count--;
+                            // }
+
+                        }, interaction.speed);
+
+                    }
+            
+            
+                    
+                    
+                });
+
+            });
+
+
+        }
+        
+  
+      
+
+        function drawConstraintBoundingBoxes(setup,scene,scale){
+
+            //grid helper
+            var helper = new THREE.GridHelper( 100, 100 );
+            helper.position.y = -setup.voxelSize/2.0*scale;
+
+            helper.position.y = -setup.voxelSize/2.0*scale +2*setup.voxelSize*scale;
+            if (setup.hierarchical){
+                helper.position.y=setup.voxelSize*scale*(1.2 -0.1)
+            }
+
+            helper.position.y=10000*setup.voxelSize*scale
+            helper.position.y=0.0
+            console.log(helper.position.y)
+
+            helper.material.opacity = 0.4;
+            helper.material.transparent = true;
+            helper.scale.x=2.0*scale
+            helper.scale.z=2.0*scale
+            scene.add(helper);
+
+            let supports=setup.supports;
+            let loads=setup.loads;
+            let mat=setup.materials;
+            let disps=setup.fixedDisplacements;
+            if (supports ) {
+                for (var i=0;i< supports.length;i++) {
+                    let s=supports[i][0];
+                    drawBox(s.min,s.max,color4,scene,scale);
+                }
+            }
+            if (loads ) {
+                for (var i=0;i< loads.length;i++) {
+                    let l=loads[i][0];
+                    drawBox(l.min,l.max,color7,scene,scale);
+                }
+                
+            }
+            if (disps ) {
+                for (var i=0;i< disps.length;i++) {
+                    let l=disps[i][0];
+                    drawBox(l.min,l.max,color7,scene,scale);
+                }
+                
+            }
+            if (mat ) {
+                
+                for (var i=0;i< mat.length;i++) {
+                    let l=mat[i][0];
+                    // console.log(l)
+                    drawBox(l.min,l.max,color5,scene,scale);
+                }
+                
+            }
+            
+        };
+
+        function drawBox (min,max,color,scene,scale) {
+            var box = new THREE.Box3(new THREE.Vector3(min.x*scale,min.y*scale,min.z*scale),new THREE.Vector3(max.x*scale,max.y*scale,max.z*scale));
+            var helper = new THREE.Box3Helper( box, color );
+            scene.add( helper );
+            // todo add name??
+        };
+
+        function getNodeColor(restrained,loaded,displaced){
+            if (restrained){
+                return 0xfa6e70;
+            }else if(loaded){
+                return 0x03dbfc;
+            }else if(displaced){
+                return 0x03dbfc;
+            }else{
+                return color3;
+            }
+        }
+
+        function getMesh(size,restrained,loaded,displaced,ax,ay,az,opacity){
+        var m=new THREE.Mesh(
+                new THREE.BoxGeometry(size, size, size),
+                new THREE.MeshLambertMaterial({
+                    color: getNodeColor(restrained,loaded,displaced),
+                    transparent: opacity>0.0?false:true,
+                    transparent: false,
+                    opacity: opacity
+                })
+            );
+        m.rotation.x=ax;
+        m.rotation.y=ay;
+        m.rotation.z=az;
+        m.visible = !(opacity>0.0?false:true);
+
+        return m;
+
+    }
+
+  
+  
+    </script>
+  </body>
\ No newline at end of file
diff --git a/json/tutorial.json b/json/tutorial.json
index 53d7faf..fad81cf 100644
--- a/json/tutorial.json
+++ b/json/tutorial.json
@@ -21,9 +21,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 0,
-          "z": 37.5
+          "x": 0.0005,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -47,10 +47,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -74,9 +74,9 @@
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 0
+          "x": 0.0005,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -100,10 +100,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -127,9 +127,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 0,
-          "z": 37.5
+          "x": 0.0005,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -152,11 +152,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -180,9 +180,9 @@
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 75
+          "x": 0.0005,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -205,11 +205,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -233,9 +233,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 75,
-          "z": 37.5
+          "x": 0.0015,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -259,10 +259,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -286,9 +286,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 0
+          "x": 0.0015,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -312,10 +312,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -339,9 +339,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 75
+          "x": 0.0015,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -364,11 +364,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -392,9 +392,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 75,
-          "z": 37.5
+          "x": 0.0015,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -417,11 +417,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -445,9 +445,9 @@
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 0
+          "x": 0.0025,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -471,10 +471,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -498,9 +498,9 @@
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 75
+          "x": 0.0025,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -524,10 +524,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -551,9 +551,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 0
+          "x": 0.0025,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -576,11 +576,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -604,9 +604,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 75
+          "x": 0.0025,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -629,11 +629,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -649,17 +649,17 @@
           77
         ],
         "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
+          false,
+          false,
+          false,
           true,
           true,
           true
         ],
         "position": {
-          "x": 75,
-          "y": 0,
-          "z": 112.5
+          "x": 0.0035,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -683,10 +683,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -702,17 +702,17 @@
           83
         ],
         "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
+          false,
+          false,
+          false,
           true,
           true,
           true
         ],
         "position": {
-          "x": 0,
-          "y": 0,
-          "z": 112.5
+          "x": 0.0035,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -736,10 +736,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -755,17 +755,17 @@
           89
         ],
         "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
+          false,
+          false,
+          false,
           true,
           true,
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 150
+          "x": 0.0035,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -788,11 +788,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -816,9 +816,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 75,
-          "z": 112.5
+          "x": 0.0035,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -841,11 +841,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -869,9 +869,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 150
+          "x": 0.0045000000000000005,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -895,10 +895,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -922,9 +922,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 75,
-          "z": 112.5
+          "x": 0.0045000000000000005,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -948,10 +948,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -975,9 +975,9 @@
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 150
+          "x": 0.0045000000000000005,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -1000,11 +1000,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1028,9 +1028,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 150
+          "x": 0.0045000000000000005,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -1053,11 +1053,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1073,17 +1073,17 @@
           125
         ],
         "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
+          false,
+          false,
+          false,
           true,
           true,
           true
         ],
         "position": {
-          "x": 75,
-          "y": 0,
-          "z": 187.5
+          "x": 0.0055,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -1107,10 +1107,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1126,17 +1126,17 @@
           131
         ],
         "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
+          false,
+          false,
+          false,
           true,
           true,
           true
         ],
         "position": {
-          "x": 0,
-          "y": 0,
-          "z": 187.5
+          "x": 0.0055,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -1160,10 +1160,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1179,17 +1179,17 @@
           137
         ],
         "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
+          false,
+          false,
+          false,
           true,
           true,
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 225
+          "x": 0.0055,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -1212,11 +1212,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1240,9 +1240,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 75,
-          "z": 187.5
+          "x": 0.0055,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -1265,11 +1265,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1293,9 +1293,9 @@
           true
         ],
         "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 225
+          "x": 0.006500000000000001,
+          "y": 0.0005,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -1319,10 +1319,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1346,9 +1346,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 75,
-          "z": 187.5
+          "x": 0.006500000000000001,
+          "y": 0.0005,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -1372,10 +1372,10 @@
         },
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1399,9 +1399,9 @@
           true
         ],
         "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 225
+          "x": 0.006500000000000001,
+          "y": 0.0015,
+          "z": 0.0005
         },
         "force": {
           "x": 0,
@@ -1424,11 +1424,11 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
       },
@@ -1452,9 +1452,9 @@
           true
         ],
         "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 225
+          "x": 0.006500000000000001,
+          "y": 0.0015,
+          "z": 0.0015
         },
         "force": {
           "x": 0,
@@ -1477,58816 +1477,798 @@
           "z": 0
         },
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "nomSize": 1
-      },
+      }
+    ],
+    "edges": [
       {
-        "id": "n28",
-        "parent": "11",
-        "degrees_of_freedom": [
-          168,
-          169,
-          170,
-          171,
-          172,
-          173
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 0,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
+        "id": "e0",
+        "source": 1,
+        "target": 0,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
-        "nomSize": 1
+        "stress": 0,
+        "sourceNodalCoordinate": 0,
+        "targetNodalCoordinate": 0
       },
       {
-        "id": "n29",
-        "parent": "11",
-        "degrees_of_freedom": [
-          174,
-          175,
-          176,
-          177,
-          178,
-          179
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 0,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
+        "id": "e1",
+        "source": 2,
+        "target": 0,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
-        "nomSize": 1
+        "stress": 0,
+        "sourceNodalCoordinate": 0,
+        "targetNodalCoordinate": 0
       },
       {
-        "id": "n30",
-        "parent": "11",
-        "degrees_of_freedom": [
-          180,
-          181,
-          182,
-          183,
-          184,
-          185
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
+        "id": "e2",
+        "source": 3,
+        "target": 2,
+        "material": {
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
+        "stress": 0,
+        "sourceNodalCoordinate": 0,
+        "targetNodalCoordinate": 0
+      },
+      {
+        "id": "e3",
+        "source": 3,
+        "target": 1,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
-        "nomSize": 1
+        "stress": 0,
+        "sourceNodalCoordinate": 0,
+        "targetNodalCoordinate": 0
       },
       {
-        "id": "n31",
-        "parent": "11",
-        "degrees_of_freedom": [
-          186,
-          187,
-          188,
-          189,
-          190,
-          191
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 75,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
+        "id": "e4",
+        "source": 4,
+        "target": 0,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
-        "nomSize": 1
+        "stress": 0,
+        "sourceNodalCoordinate": 0,
+        "targetNodalCoordinate": 0
       },
       {
-        "id": "n32",
-        "parent": "11",
-        "degrees_of_freedom": [
-          192,
-          193,
-          194,
-          195,
-          196,
-          197
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n33",
-        "parent": "11",
-        "degrees_of_freedom": [
-          198,
-          199,
-          200,
-          201,
-          202,
-          203
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 75,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n34",
-        "parent": "11",
-        "degrees_of_freedom": [
-          204,
-          205,
-          206,
-          207,
-          208,
-          209
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n35",
-        "parent": "11",
-        "degrees_of_freedom": [
-          210,
-          211,
-          212,
-          213,
-          214,
-          215
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n36",
-        "parent": "11",
-        "degrees_of_freedom": [
-          216,
-          217,
-          218,
-          219,
-          220,
-          221
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 0,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n37",
-        "parent": "11",
-        "degrees_of_freedom": [
-          222,
-          223,
-          224,
-          225,
-          226,
-          227
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 0,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n38",
-        "parent": "11",
-        "degrees_of_freedom": [
-          228,
-          229,
-          230,
-          231,
-          232,
-          233
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n39",
-        "parent": "11",
-        "degrees_of_freedom": [
-          234,
-          235,
-          236,
-          237,
-          238,
-          239
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 75,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n40",
-        "parent": "11",
-        "degrees_of_freedom": [
-          240,
-          241,
-          242,
-          243,
-          244,
-          245
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n41",
-        "parent": "11",
-        "degrees_of_freedom": [
-          246,
-          247,
-          248,
-          249,
-          250,
-          251
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 75,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n42",
-        "parent": "11",
-        "degrees_of_freedom": [
-          252,
-          253,
-          254,
-          255,
-          256,
-          257
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n43",
-        "parent": "11",
-        "degrees_of_freedom": [
-          258,
-          259,
-          260,
-          261,
-          262,
-          263
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n44",
-        "parent": "11",
-        "degrees_of_freedom": [
-          264,
-          265,
-          266,
-          267,
-          268,
-          269
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 0,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n45",
-        "parent": "11",
-        "degrees_of_freedom": [
-          270,
-          271,
-          272,
-          273,
-          274,
-          275
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 0,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n46",
-        "parent": "11",
-        "degrees_of_freedom": [
-          276,
-          277,
-          278,
-          279,
-          280,
-          281
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n47",
-        "parent": "11",
-        "degrees_of_freedom": [
-          282,
-          283,
-          284,
-          285,
-          286,
-          287
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 75,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n48",
-        "parent": "11",
-        "degrees_of_freedom": [
-          288,
-          289,
-          290,
-          291,
-          292,
-          293
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n49",
-        "parent": "11",
-        "degrees_of_freedom": [
-          294,
-          295,
-          296,
-          297,
-          298,
-          299
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 75,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n50",
-        "parent": "11",
-        "degrees_of_freedom": [
-          300,
-          301,
-          302,
-          303,
-          304,
-          305
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n51",
-        "parent": "11",
-        "degrees_of_freedom": [
-          306,
-          307,
-          308,
-          309,
-          310,
-          311
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n52",
-        "parent": "11",
-        "degrees_of_freedom": [
-          312,
-          313,
-          314,
-          315,
-          316,
-          317
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 0,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n53",
-        "parent": "11",
-        "degrees_of_freedom": [
-          318,
-          319,
-          320,
-          321,
-          322,
-          323
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 0,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n54",
-        "parent": "11",
-        "degrees_of_freedom": [
-          324,
-          325,
-          326,
-          327,
-          328,
-          329
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n55",
-        "parent": "11",
-        "degrees_of_freedom": [
-          330,
-          331,
-          332,
-          333,
-          334,
-          335
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 75,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n56",
-        "parent": "11",
-        "degrees_of_freedom": [
-          336,
-          337,
-          338,
-          339,
-          340,
-          341
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n57",
-        "parent": "11",
-        "degrees_of_freedom": [
-          342,
-          343,
-          344,
-          345,
-          346,
-          347
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 75,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n58",
-        "parent": "11",
-        "degrees_of_freedom": [
-          348,
-          349,
-          350,
-          351,
-          352,
-          353
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n59",
-        "parent": "11",
-        "degrees_of_freedom": [
-          354,
-          355,
-          356,
-          357,
-          358,
-          359
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n60",
-        "parent": "11",
-        "degrees_of_freedom": [
-          360,
-          361,
-          362,
-          363,
-          364,
-          365
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 0,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n61",
-        "parent": "11",
-        "degrees_of_freedom": [
-          366,
-          367,
-          368,
-          369,
-          370,
-          371
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 0,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n62",
-        "parent": "11",
-        "degrees_of_freedom": [
-          372,
-          373,
-          374,
-          375,
-          376,
-          377
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 0,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n63",
-        "parent": "11",
-        "degrees_of_freedom": [
-          378,
-          379,
-          380,
-          381,
-          382,
-          383
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 75,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n64",
-        "parent": "11",
-        "degrees_of_freedom": [
-          384,
-          385,
-          386,
-          387,
-          388,
-          389
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 37.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n65",
-        "parent": "11",
-        "degrees_of_freedom": [
-          390,
-          391,
-          392,
-          393,
-          394,
-          395
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 75,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n66",
-        "parent": "11",
-        "degrees_of_freedom": [
-          396,
-          397,
-          398,
-          399,
-          400,
-          401
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 75,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n67",
-        "parent": "11",
-        "degrees_of_freedom": [
-          402,
-          403,
-          404,
-          405,
-          406,
-          407
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 37.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n68",
-        "parent": "11",
-        "degrees_of_freedom": [
-          408,
-          409,
-          410,
-          411,
-          412,
-          413
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n69",
-        "parent": "11",
-        "degrees_of_freedom": [
-          414,
-          415,
-          416,
-          417,
-          418,
-          419
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n70",
-        "parent": "11",
-        "degrees_of_freedom": [
-          420,
-          421,
-          422,
-          423,
-          424,
-          425
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n71",
-        "parent": "11",
-        "degrees_of_freedom": [
-          426,
-          427,
-          428,
-          429,
-          430,
-          431
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n72",
-        "parent": "11",
-        "degrees_of_freedom": [
-          432,
-          433,
-          434,
-          435,
-          436,
-          437
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n73",
-        "parent": "11",
-        "degrees_of_freedom": [
-          438,
-          439,
-          440,
-          441,
-          442,
-          443
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n74",
-        "parent": "11",
-        "degrees_of_freedom": [
-          444,
-          445,
-          446,
-          447,
-          448,
-          449
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n75",
-        "parent": "11",
-        "degrees_of_freedom": [
-          450,
-          451,
-          452,
-          453,
-          454,
-          455
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n76",
-        "parent": "11",
-        "degrees_of_freedom": [
-          456,
-          457,
-          458,
-          459,
-          460,
-          461
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n77",
-        "parent": "11",
-        "degrees_of_freedom": [
-          462,
-          463,
-          464,
-          465,
-          466,
-          467
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n78",
-        "parent": "11",
-        "degrees_of_freedom": [
-          468,
-          469,
-          470,
-          471,
-          472,
-          473
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n79",
-        "parent": "11",
-        "degrees_of_freedom": [
-          474,
-          475,
-          476,
-          477,
-          478,
-          479
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n80",
-        "parent": "11",
-        "degrees_of_freedom": [
-          480,
-          481,
-          482,
-          483,
-          484,
-          485
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n81",
-        "parent": "11",
-        "degrees_of_freedom": [
-          486,
-          487,
-          488,
-          489,
-          490,
-          491
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n82",
-        "parent": "11",
-        "degrees_of_freedom": [
-          492,
-          493,
-          494,
-          495,
-          496,
-          497
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n83",
-        "parent": "11",
-        "degrees_of_freedom": [
-          498,
-          499,
-          500,
-          501,
-          502,
-          503
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n84",
-        "parent": "11",
-        "degrees_of_freedom": [
-          504,
-          505,
-          506,
-          507,
-          508,
-          509
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n85",
-        "parent": "11",
-        "degrees_of_freedom": [
-          510,
-          511,
-          512,
-          513,
-          514,
-          515
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n86",
-        "parent": "11",
-        "degrees_of_freedom": [
-          516,
-          517,
-          518,
-          519,
-          520,
-          521
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n87",
-        "parent": "11",
-        "degrees_of_freedom": [
-          522,
-          523,
-          524,
-          525,
-          526,
-          527
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n88",
-        "parent": "11",
-        "degrees_of_freedom": [
-          528,
-          529,
-          530,
-          531,
-          532,
-          533
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n89",
-        "parent": "11",
-        "degrees_of_freedom": [
-          534,
-          535,
-          536,
-          537,
-          538,
-          539
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n90",
-        "parent": "11",
-        "degrees_of_freedom": [
-          540,
-          541,
-          542,
-          543,
-          544,
-          545
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n91",
-        "parent": "11",
-        "degrees_of_freedom": [
-          546,
-          547,
-          548,
-          549,
-          550,
-          551
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n92",
-        "parent": "11",
-        "degrees_of_freedom": [
-          552,
-          553,
-          554,
-          555,
-          556,
-          557
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n93",
-        "parent": "11",
-        "degrees_of_freedom": [
-          558,
-          559,
-          560,
-          561,
-          562,
-          563
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n94",
-        "parent": "11",
-        "degrees_of_freedom": [
-          564,
-          565,
-          566,
-          567,
-          568,
-          569
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n95",
-        "parent": "11",
-        "degrees_of_freedom": [
-          570,
-          571,
-          572,
-          573,
-          574,
-          575
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n96",
-        "parent": "11",
-        "degrees_of_freedom": [
-          576,
-          577,
-          578,
-          579,
-          580,
-          581
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n97",
-        "parent": "11",
-        "degrees_of_freedom": [
-          582,
-          583,
-          584,
-          585,
-          586,
-          587
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n98",
-        "parent": "11",
-        "degrees_of_freedom": [
-          588,
-          589,
-          590,
-          591,
-          592,
-          593
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n99",
-        "parent": "11",
-        "degrees_of_freedom": [
-          594,
-          595,
-          596,
-          597,
-          598,
-          599
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n100",
-        "parent": "11",
-        "degrees_of_freedom": [
-          600,
-          601,
-          602,
-          603,
-          604,
-          605
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n101",
-        "parent": "11",
-        "degrees_of_freedom": [
-          606,
-          607,
-          608,
-          609,
-          610,
-          611
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n102",
-        "parent": "11",
-        "degrees_of_freedom": [
-          612,
-          613,
-          614,
-          615,
-          616,
-          617
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n103",
-        "parent": "11",
-        "degrees_of_freedom": [
-          618,
-          619,
-          620,
-          621,
-          622,
-          623
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n104",
-        "parent": "11",
-        "degrees_of_freedom": [
-          624,
-          625,
-          626,
-          627,
-          628,
-          629
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n105",
-        "parent": "11",
-        "degrees_of_freedom": [
-          630,
-          631,
-          632,
-          633,
-          634,
-          635
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n106",
-        "parent": "11",
-        "degrees_of_freedom": [
-          636,
-          637,
-          638,
-          639,
-          640,
-          641
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 150,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n107",
-        "parent": "11",
-        "degrees_of_freedom": [
-          642,
-          643,
-          644,
-          645,
-          646,
-          647
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 112.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n108",
-        "parent": "11",
-        "degrees_of_freedom": [
-          648,
-          649,
-          650,
-          651,
-          652,
-          653
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 150,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n109",
-        "parent": "11",
-        "degrees_of_freedom": [
-          654,
-          655,
-          656,
-          657,
-          658,
-          659
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 150,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n110",
-        "parent": "11",
-        "degrees_of_freedom": [
-          660,
-          661,
-          662,
-          663,
-          664,
-          665
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 112.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n111",
-        "parent": "11",
-        "degrees_of_freedom": [
-          666,
-          667,
-          668,
-          669,
-          670,
-          671
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n112",
-        "parent": "11",
-        "degrees_of_freedom": [
-          672,
-          673,
-          674,
-          675,
-          676,
-          677
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n113",
-        "parent": "11",
-        "degrees_of_freedom": [
-          678,
-          679,
-          680,
-          681,
-          682,
-          683
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n114",
-        "parent": "11",
-        "degrees_of_freedom": [
-          684,
-          685,
-          686,
-          687,
-          688,
-          689
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n115",
-        "parent": "11",
-        "degrees_of_freedom": [
-          690,
-          691,
-          692,
-          693,
-          694,
-          695
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n116",
-        "parent": "11",
-        "degrees_of_freedom": [
-          696,
-          697,
-          698,
-          699,
-          700,
-          701
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n117",
-        "parent": "11",
-        "degrees_of_freedom": [
-          702,
-          703,
-          704,
-          705,
-          706,
-          707
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n118",
-        "parent": "11",
-        "degrees_of_freedom": [
-          708,
-          709,
-          710,
-          711,
-          712,
-          713
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n119",
-        "parent": "11",
-        "degrees_of_freedom": [
-          714,
-          715,
-          716,
-          717,
-          718,
-          719
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n120",
-        "parent": "11",
-        "degrees_of_freedom": [
-          720,
-          721,
-          722,
-          723,
-          724,
-          725
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n121",
-        "parent": "11",
-        "degrees_of_freedom": [
-          726,
-          727,
-          728,
-          729,
-          730,
-          731
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n122",
-        "parent": "11",
-        "degrees_of_freedom": [
-          732,
-          733,
-          734,
-          735,
-          736,
-          737
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n123",
-        "parent": "11",
-        "degrees_of_freedom": [
-          738,
-          739,
-          740,
-          741,
-          742,
-          743
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n124",
-        "parent": "11",
-        "degrees_of_freedom": [
-          744,
-          745,
-          746,
-          747,
-          748,
-          749
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n125",
-        "parent": "11",
-        "degrees_of_freedom": [
-          750,
-          751,
-          752,
-          753,
-          754,
-          755
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n126",
-        "parent": "11",
-        "degrees_of_freedom": [
-          756,
-          757,
-          758,
-          759,
-          760,
-          761
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n127",
-        "parent": "11",
-        "degrees_of_freedom": [
-          762,
-          763,
-          764,
-          765,
-          766,
-          767
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n128",
-        "parent": "11",
-        "degrees_of_freedom": [
-          768,
-          769,
-          770,
-          771,
-          772,
-          773
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n129",
-        "parent": "11",
-        "degrees_of_freedom": [
-          774,
-          775,
-          776,
-          777,
-          778,
-          779
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n130",
-        "parent": "11",
-        "degrees_of_freedom": [
-          780,
-          781,
-          782,
-          783,
-          784,
-          785
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n131",
-        "parent": "11",
-        "degrees_of_freedom": [
-          786,
-          787,
-          788,
-          789,
-          790,
-          791
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n132",
-        "parent": "11",
-        "degrees_of_freedom": [
-          792,
-          793,
-          794,
-          795,
-          796,
-          797
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n133",
-        "parent": "11",
-        "degrees_of_freedom": [
-          798,
-          799,
-          800,
-          801,
-          802,
-          803
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n134",
-        "parent": "11",
-        "degrees_of_freedom": [
-          804,
-          805,
-          806,
-          807,
-          808,
-          809
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n135",
-        "parent": "11",
-        "degrees_of_freedom": [
-          810,
-          811,
-          812,
-          813,
-          814,
-          815
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n136",
-        "parent": "11",
-        "degrees_of_freedom": [
-          816,
-          817,
-          818,
-          819,
-          820,
-          821
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n137",
-        "parent": "11",
-        "degrees_of_freedom": [
-          822,
-          823,
-          824,
-          825,
-          826,
-          827
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n138",
-        "parent": "11",
-        "degrees_of_freedom": [
-          828,
-          829,
-          830,
-          831,
-          832,
-          833
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n139",
-        "parent": "11",
-        "degrees_of_freedom": [
-          834,
-          835,
-          836,
-          837,
-          838,
-          839
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n140",
-        "parent": "11",
-        "degrees_of_freedom": [
-          840,
-          841,
-          842,
-          843,
-          844,
-          845
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n141",
-        "parent": "11",
-        "degrees_of_freedom": [
-          846,
-          847,
-          848,
-          849,
-          850,
-          851
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n142",
-        "parent": "11",
-        "degrees_of_freedom": [
-          852,
-          853,
-          854,
-          855,
-          856,
-          857
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n143",
-        "parent": "11",
-        "degrees_of_freedom": [
-          858,
-          859,
-          860,
-          861,
-          862,
-          863
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n144",
-        "parent": "11",
-        "degrees_of_freedom": [
-          864,
-          865,
-          866,
-          867,
-          868,
-          869
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n145",
-        "parent": "11",
-        "degrees_of_freedom": [
-          870,
-          871,
-          872,
-          873,
-          874,
-          875
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n146",
-        "parent": "11",
-        "degrees_of_freedom": [
-          876,
-          877,
-          878,
-          879,
-          880,
-          881
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n147",
-        "parent": "11",
-        "degrees_of_freedom": [
-          882,
-          883,
-          884,
-          885,
-          886,
-          887
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n148",
-        "parent": "11",
-        "degrees_of_freedom": [
-          888,
-          889,
-          890,
-          891,
-          892,
-          893
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n149",
-        "parent": "11",
-        "degrees_of_freedom": [
-          894,
-          895,
-          896,
-          897,
-          898,
-          899
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 225,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n150",
-        "parent": "11",
-        "degrees_of_freedom": [
-          900,
-          901,
-          902,
-          903,
-          904,
-          905
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 187.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n151",
-        "parent": "11",
-        "degrees_of_freedom": [
-          906,
-          907,
-          908,
-          909,
-          910,
-          911
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 225,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n152",
-        "parent": "11",
-        "degrees_of_freedom": [
-          912,
-          913,
-          914,
-          915,
-          916,
-          917
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 225,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n153",
-        "parent": "11",
-        "degrees_of_freedom": [
-          918,
-          919,
-          920,
-          921,
-          922,
-          923
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 187.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n154",
-        "parent": "11",
-        "degrees_of_freedom": [
-          924,
-          925,
-          926,
-          927,
-          928,
-          929
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n155",
-        "parent": "11",
-        "degrees_of_freedom": [
-          930,
-          931,
-          932,
-          933,
-          934,
-          935
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n156",
-        "parent": "11",
-        "degrees_of_freedom": [
-          936,
-          937,
-          938,
-          939,
-          940,
-          941
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n157",
-        "parent": "11",
-        "degrees_of_freedom": [
-          942,
-          943,
-          944,
-          945,
-          946,
-          947
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n158",
-        "parent": "11",
-        "degrees_of_freedom": [
-          948,
-          949,
-          950,
-          951,
-          952,
-          953
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n159",
-        "parent": "11",
-        "degrees_of_freedom": [
-          954,
-          955,
-          956,
-          957,
-          958,
-          959
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n160",
-        "parent": "11",
-        "degrees_of_freedom": [
-          960,
-          961,
-          962,
-          963,
-          964,
-          965
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n161",
-        "parent": "11",
-        "degrees_of_freedom": [
-          966,
-          967,
-          968,
-          969,
-          970,
-          971
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n162",
-        "parent": "11",
-        "degrees_of_freedom": [
-          972,
-          973,
-          974,
-          975,
-          976,
-          977
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n163",
-        "parent": "11",
-        "degrees_of_freedom": [
-          978,
-          979,
-          980,
-          981,
-          982,
-          983
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n164",
-        "parent": "11",
-        "degrees_of_freedom": [
-          984,
-          985,
-          986,
-          987,
-          988,
-          989
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n165",
-        "parent": "11",
-        "degrees_of_freedom": [
-          990,
-          991,
-          992,
-          993,
-          994,
-          995
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n166",
-        "parent": "11",
-        "degrees_of_freedom": [
-          996,
-          997,
-          998,
-          999,
-          1000,
-          1001
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n167",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1002,
-          1003,
-          1004,
-          1005,
-          1006,
-          1007
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n168",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1008,
-          1009,
-          1010,
-          1011,
-          1012,
-          1013
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n169",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1014,
-          1015,
-          1016,
-          1017,
-          1018,
-          1019
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n170",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1020,
-          1021,
-          1022,
-          1023,
-          1024,
-          1025
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n171",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1026,
-          1027,
-          1028,
-          1029,
-          1030,
-          1031
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n172",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1032,
-          1033,
-          1034,
-          1035,
-          1036,
-          1037
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n173",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1038,
-          1039,
-          1040,
-          1041,
-          1042,
-          1043
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n174",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1044,
-          1045,
-          1046,
-          1047,
-          1048,
-          1049
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n175",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1050,
-          1051,
-          1052,
-          1053,
-          1054,
-          1055
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n176",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1056,
-          1057,
-          1058,
-          1059,
-          1060,
-          1061
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n177",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1062,
-          1063,
-          1064,
-          1065,
-          1066,
-          1067
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n178",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1068,
-          1069,
-          1070,
-          1071,
-          1072,
-          1073
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n179",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1074,
-          1075,
-          1076,
-          1077,
-          1078,
-          1079
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n180",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1080,
-          1081,
-          1082,
-          1083,
-          1084,
-          1085
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n181",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1086,
-          1087,
-          1088,
-          1089,
-          1090,
-          1091
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n182",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1092,
-          1093,
-          1094,
-          1095,
-          1096,
-          1097
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n183",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1098,
-          1099,
-          1100,
-          1101,
-          1102,
-          1103
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n184",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1104,
-          1105,
-          1106,
-          1107,
-          1108,
-          1109
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n185",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1110,
-          1111,
-          1112,
-          1113,
-          1114,
-          1115
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n186",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1116,
-          1117,
-          1118,
-          1119,
-          1120,
-          1121
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n187",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1122,
-          1123,
-          1124,
-          1125,
-          1126,
-          1127
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n188",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1128,
-          1129,
-          1130,
-          1131,
-          1132,
-          1133
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n189",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1134,
-          1135,
-          1136,
-          1137,
-          1138,
-          1139
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n190",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1140,
-          1141,
-          1142,
-          1143,
-          1144,
-          1145
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n191",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1146,
-          1147,
-          1148,
-          1149,
-          1150,
-          1151
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n192",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1152,
-          1153,
-          1154,
-          1155,
-          1156,
-          1157
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 300,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n193",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1158,
-          1159,
-          1160,
-          1161,
-          1162,
-          1163
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 262.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n194",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1164,
-          1165,
-          1166,
-          1167,
-          1168,
-          1169
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 300,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n195",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1170,
-          1171,
-          1172,
-          1173,
-          1174,
-          1175
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 300,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n196",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1176,
-          1177,
-          1178,
-          1179,
-          1180,
-          1181
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 262.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n197",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1182,
-          1183,
-          1184,
-          1185,
-          1186,
-          1187
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n198",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1188,
-          1189,
-          1190,
-          1191,
-          1192,
-          1193
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n199",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1194,
-          1195,
-          1196,
-          1197,
-          1198,
-          1199
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n200",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1200,
-          1201,
-          1202,
-          1203,
-          1204,
-          1205
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n201",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1206,
-          1207,
-          1208,
-          1209,
-          1210,
-          1211
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n202",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1212,
-          1213,
-          1214,
-          1215,
-          1216,
-          1217
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n203",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1218,
-          1219,
-          1220,
-          1221,
-          1222,
-          1223
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n204",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1224,
-          1225,
-          1226,
-          1227,
-          1228,
-          1229
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n205",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1230,
-          1231,
-          1232,
-          1233,
-          1234,
-          1235
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n206",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1236,
-          1237,
-          1238,
-          1239,
-          1240,
-          1241
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n207",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1242,
-          1243,
-          1244,
-          1245,
-          1246,
-          1247
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n208",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1248,
-          1249,
-          1250,
-          1251,
-          1252,
-          1253
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n209",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1254,
-          1255,
-          1256,
-          1257,
-          1258,
-          1259
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n210",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1260,
-          1261,
-          1262,
-          1263,
-          1264,
-          1265
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n211",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1266,
-          1267,
-          1268,
-          1269,
-          1270,
-          1271
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n212",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1272,
-          1273,
-          1274,
-          1275,
-          1276,
-          1277
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n213",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1278,
-          1279,
-          1280,
-          1281,
-          1282,
-          1283
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n214",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1284,
-          1285,
-          1286,
-          1287,
-          1288,
-          1289
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n215",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1290,
-          1291,
-          1292,
-          1293,
-          1294,
-          1295
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n216",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1296,
-          1297,
-          1298,
-          1299,
-          1300,
-          1301
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n217",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1302,
-          1303,
-          1304,
-          1305,
-          1306,
-          1307
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n218",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1308,
-          1309,
-          1310,
-          1311,
-          1312,
-          1313
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n219",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1314,
-          1315,
-          1316,
-          1317,
-          1318,
-          1319
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n220",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1320,
-          1321,
-          1322,
-          1323,
-          1324,
-          1325
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n221",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1326,
-          1327,
-          1328,
-          1329,
-          1330,
-          1331
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n222",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1332,
-          1333,
-          1334,
-          1335,
-          1336,
-          1337
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n223",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1338,
-          1339,
-          1340,
-          1341,
-          1342,
-          1343
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n224",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1344,
-          1345,
-          1346,
-          1347,
-          1348,
-          1349
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n225",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1350,
-          1351,
-          1352,
-          1353,
-          1354,
-          1355
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n226",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1356,
-          1357,
-          1358,
-          1359,
-          1360,
-          1361
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n227",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1362,
-          1363,
-          1364,
-          1365,
-          1366,
-          1367
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n228",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1368,
-          1369,
-          1370,
-          1371,
-          1372,
-          1373
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n229",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1374,
-          1375,
-          1376,
-          1377,
-          1378,
-          1379
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n230",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1380,
-          1381,
-          1382,
-          1383,
-          1384,
-          1385
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n231",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1386,
-          1387,
-          1388,
-          1389,
-          1390,
-          1391
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n232",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1392,
-          1393,
-          1394,
-          1395,
-          1396,
-          1397
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n233",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1398,
-          1399,
-          1400,
-          1401,
-          1402,
-          1403
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n234",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1404,
-          1405,
-          1406,
-          1407,
-          1408,
-          1409
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n235",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1410,
-          1411,
-          1412,
-          1413,
-          1414,
-          1415
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 375,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n236",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1416,
-          1417,
-          1418,
-          1419,
-          1420,
-          1421
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 337.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n237",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1422,
-          1423,
-          1424,
-          1425,
-          1426,
-          1427
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 375,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n238",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1428,
-          1429,
-          1430,
-          1431,
-          1432,
-          1433
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 375,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n239",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1434,
-          1435,
-          1436,
-          1437,
-          1438,
-          1439
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 337.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n240",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1440,
-          1441,
-          1442,
-          1443,
-          1444,
-          1445
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n241",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1446,
-          1447,
-          1448,
-          1449,
-          1450,
-          1451
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n242",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1452,
-          1453,
-          1454,
-          1455,
-          1456,
-          1457
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n243",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1458,
-          1459,
-          1460,
-          1461,
-          1462,
-          1463
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n244",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1464,
-          1465,
-          1466,
-          1467,
-          1468,
-          1469
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n245",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1470,
-          1471,
-          1472,
-          1473,
-          1474,
-          1475
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n246",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1476,
-          1477,
-          1478,
-          1479,
-          1480,
-          1481
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n247",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1482,
-          1483,
-          1484,
-          1485,
-          1486,
-          1487
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n248",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1488,
-          1489,
-          1490,
-          1491,
-          1492,
-          1493
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n249",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1494,
-          1495,
-          1496,
-          1497,
-          1498,
-          1499
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n250",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1500,
-          1501,
-          1502,
-          1503,
-          1504,
-          1505
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n251",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1506,
-          1507,
-          1508,
-          1509,
-          1510,
-          1511
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n252",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1512,
-          1513,
-          1514,
-          1515,
-          1516,
-          1517
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n253",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1518,
-          1519,
-          1520,
-          1521,
-          1522,
-          1523
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n254",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1524,
-          1525,
-          1526,
-          1527,
-          1528,
-          1529
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n255",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1530,
-          1531,
-          1532,
-          1533,
-          1534,
-          1535
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n256",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1536,
-          1537,
-          1538,
-          1539,
-          1540,
-          1541
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n257",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1542,
-          1543,
-          1544,
-          1545,
-          1546,
-          1547
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n258",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1548,
-          1549,
-          1550,
-          1551,
-          1552,
-          1553
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n259",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1554,
-          1555,
-          1556,
-          1557,
-          1558,
-          1559
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n260",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1560,
-          1561,
-          1562,
-          1563,
-          1564,
-          1565
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n261",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1566,
-          1567,
-          1568,
-          1569,
-          1570,
-          1571
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n262",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1572,
-          1573,
-          1574,
-          1575,
-          1576,
-          1577
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n263",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1578,
-          1579,
-          1580,
-          1581,
-          1582,
-          1583
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n264",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1584,
-          1585,
-          1586,
-          1587,
-          1588,
-          1589
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n265",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1590,
-          1591,
-          1592,
-          1593,
-          1594,
-          1595
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n266",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1596,
-          1597,
-          1598,
-          1599,
-          1600,
-          1601
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n267",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1602,
-          1603,
-          1604,
-          1605,
-          1606,
-          1607
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n268",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1608,
-          1609,
-          1610,
-          1611,
-          1612,
-          1613
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n269",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1614,
-          1615,
-          1616,
-          1617,
-          1618,
-          1619
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n270",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1620,
-          1621,
-          1622,
-          1623,
-          1624,
-          1625
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n271",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1626,
-          1627,
-          1628,
-          1629,
-          1630,
-          1631
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n272",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1632,
-          1633,
-          1634,
-          1635,
-          1636,
-          1637
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n273",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1638,
-          1639,
-          1640,
-          1641,
-          1642,
-          1643
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n274",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1644,
-          1645,
-          1646,
-          1647,
-          1648,
-          1649
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n275",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1650,
-          1651,
-          1652,
-          1653,
-          1654,
-          1655
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n276",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1656,
-          1657,
-          1658,
-          1659,
-          1660,
-          1661
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n277",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1662,
-          1663,
-          1664,
-          1665,
-          1666,
-          1667
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n278",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1668,
-          1669,
-          1670,
-          1671,
-          1672,
-          1673
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 450,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n279",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1674,
-          1675,
-          1676,
-          1677,
-          1678,
-          1679
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 412.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n280",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1680,
-          1681,
-          1682,
-          1683,
-          1684,
-          1685
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 450,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n281",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1686,
-          1687,
-          1688,
-          1689,
-          1690,
-          1691
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 450,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n282",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1692,
-          1693,
-          1694,
-          1695,
-          1696,
-          1697
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 412.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n283",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1698,
-          1699,
-          1700,
-          1701,
-          1702,
-          1703
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n284",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1704,
-          1705,
-          1706,
-          1707,
-          1708,
-          1709
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n285",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1710,
-          1711,
-          1712,
-          1713,
-          1714,
-          1715
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n286",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1716,
-          1717,
-          1718,
-          1719,
-          1720,
-          1721
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n287",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1722,
-          1723,
-          1724,
-          1725,
-          1726,
-          1727
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n288",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1728,
-          1729,
-          1730,
-          1731,
-          1732,
-          1733
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n289",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1734,
-          1735,
-          1736,
-          1737,
-          1738,
-          1739
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n290",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1740,
-          1741,
-          1742,
-          1743,
-          1744,
-          1745
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n291",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1746,
-          1747,
-          1748,
-          1749,
-          1750,
-          1751
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n292",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1752,
-          1753,
-          1754,
-          1755,
-          1756,
-          1757
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n293",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1758,
-          1759,
-          1760,
-          1761,
-          1762,
-          1763
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n294",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1764,
-          1765,
-          1766,
-          1767,
-          1768,
-          1769
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n295",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1770,
-          1771,
-          1772,
-          1773,
-          1774,
-          1775
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n296",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1776,
-          1777,
-          1778,
-          1779,
-          1780,
-          1781
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n297",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1782,
-          1783,
-          1784,
-          1785,
-          1786,
-          1787
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n298",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1788,
-          1789,
-          1790,
-          1791,
-          1792,
-          1793
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n299",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1794,
-          1795,
-          1796,
-          1797,
-          1798,
-          1799
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n300",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1800,
-          1801,
-          1802,
-          1803,
-          1804,
-          1805
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n301",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1806,
-          1807,
-          1808,
-          1809,
-          1810,
-          1811
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n302",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1812,
-          1813,
-          1814,
-          1815,
-          1816,
-          1817
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n303",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1818,
-          1819,
-          1820,
-          1821,
-          1822,
-          1823
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n304",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1824,
-          1825,
-          1826,
-          1827,
-          1828,
-          1829
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n305",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1830,
-          1831,
-          1832,
-          1833,
-          1834,
-          1835
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n306",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1836,
-          1837,
-          1838,
-          1839,
-          1840,
-          1841
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n307",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1842,
-          1843,
-          1844,
-          1845,
-          1846,
-          1847
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n308",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1848,
-          1849,
-          1850,
-          1851,
-          1852,
-          1853
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n309",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1854,
-          1855,
-          1856,
-          1857,
-          1858,
-          1859
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n310",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1860,
-          1861,
-          1862,
-          1863,
-          1864,
-          1865
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n311",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1866,
-          1867,
-          1868,
-          1869,
-          1870,
-          1871
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n312",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1872,
-          1873,
-          1874,
-          1875,
-          1876,
-          1877
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n313",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1878,
-          1879,
-          1880,
-          1881,
-          1882,
-          1883
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n314",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1884,
-          1885,
-          1886,
-          1887,
-          1888,
-          1889
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n315",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1890,
-          1891,
-          1892,
-          1893,
-          1894,
-          1895
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n316",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1896,
-          1897,
-          1898,
-          1899,
-          1900,
-          1901
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n317",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1902,
-          1903,
-          1904,
-          1905,
-          1906,
-          1907
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n318",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1908,
-          1909,
-          1910,
-          1911,
-          1912,
-          1913
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n319",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1914,
-          1915,
-          1916,
-          1917,
-          1918,
-          1919
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n320",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1920,
-          1921,
-          1922,
-          1923,
-          1924,
-          1925
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n321",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1926,
-          1927,
-          1928,
-          1929,
-          1930,
-          1931
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 525,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n322",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1932,
-          1933,
-          1934,
-          1935,
-          1936,
-          1937
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 487.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n323",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1938,
-          1939,
-          1940,
-          1941,
-          1942,
-          1943
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 525,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n324",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1944,
-          1945,
-          1946,
-          1947,
-          1948,
-          1949
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 525,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n325",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1950,
-          1951,
-          1952,
-          1953,
-          1954,
-          1955
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 487.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n326",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1956,
-          1957,
-          1958,
-          1959,
-          1960,
-          1961
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n327",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1962,
-          1963,
-          1964,
-          1965,
-          1966,
-          1967
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n328",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1968,
-          1969,
-          1970,
-          1971,
-          1972,
-          1973
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n329",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1974,
-          1975,
-          1976,
-          1977,
-          1978,
-          1979
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n330",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1980,
-          1981,
-          1982,
-          1983,
-          1984,
-          1985
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n331",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1986,
-          1987,
-          1988,
-          1989,
-          1990,
-          1991
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n332",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1992,
-          1993,
-          1994,
-          1995,
-          1996,
-          1997
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n333",
-        "parent": "11",
-        "degrees_of_freedom": [
-          1998,
-          1999,
-          2000,
-          2001,
-          2002,
-          2003
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n334",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2004,
-          2005,
-          2006,
-          2007,
-          2008,
-          2009
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n335",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2010,
-          2011,
-          2012,
-          2013,
-          2014,
-          2015
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n336",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2016,
-          2017,
-          2018,
-          2019,
-          2020,
-          2021
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n337",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2022,
-          2023,
-          2024,
-          2025,
-          2026,
-          2027
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n338",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2028,
-          2029,
-          2030,
-          2031,
-          2032,
-          2033
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n339",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2034,
-          2035,
-          2036,
-          2037,
-          2038,
-          2039
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n340",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2040,
-          2041,
-          2042,
-          2043,
-          2044,
-          2045
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n341",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2046,
-          2047,
-          2048,
-          2049,
-          2050,
-          2051
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n342",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2052,
-          2053,
-          2054,
-          2055,
-          2056,
-          2057
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n343",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2058,
-          2059,
-          2060,
-          2061,
-          2062,
-          2063
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n344",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2064,
-          2065,
-          2066,
-          2067,
-          2068,
-          2069
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n345",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2070,
-          2071,
-          2072,
-          2073,
-          2074,
-          2075
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n346",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2076,
-          2077,
-          2078,
-          2079,
-          2080,
-          2081
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n347",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2082,
-          2083,
-          2084,
-          2085,
-          2086,
-          2087
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n348",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2088,
-          2089,
-          2090,
-          2091,
-          2092,
-          2093
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n349",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2094,
-          2095,
-          2096,
-          2097,
-          2098,
-          2099
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n350",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2100,
-          2101,
-          2102,
-          2103,
-          2104,
-          2105
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n351",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2106,
-          2107,
-          2108,
-          2109,
-          2110,
-          2111
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n352",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2112,
-          2113,
-          2114,
-          2115,
-          2116,
-          2117
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n353",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2118,
-          2119,
-          2120,
-          2121,
-          2122,
-          2123
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n354",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2124,
-          2125,
-          2126,
-          2127,
-          2128,
-          2129
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n355",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2130,
-          2131,
-          2132,
-          2133,
-          2134,
-          2135
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n356",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2136,
-          2137,
-          2138,
-          2139,
-          2140,
-          2141
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n357",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2142,
-          2143,
-          2144,
-          2145,
-          2146,
-          2147
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n358",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2148,
-          2149,
-          2150,
-          2151,
-          2152,
-          2153
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n359",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2154,
-          2155,
-          2156,
-          2157,
-          2158,
-          2159
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n360",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2160,
-          2161,
-          2162,
-          2163,
-          2164,
-          2165
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n361",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2166,
-          2167,
-          2168,
-          2169,
-          2170,
-          2171
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n362",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2172,
-          2173,
-          2174,
-          2175,
-          2176,
-          2177
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n363",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2178,
-          2179,
-          2180,
-          2181,
-          2182,
-          2183
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n364",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2184,
-          2185,
-          2186,
-          2187,
-          2188,
-          2189
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 600,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n365",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2190,
-          2191,
-          2192,
-          2193,
-          2194,
-          2195
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 75,
-          "y": 562.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n366",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2196,
-          2197,
-          2198,
-          2199,
-          2200,
-          2201
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 600,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n367",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2202,
-          2203,
-          2204,
-          2205,
-          2206,
-          2207
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 37.5,
-          "y": 600,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n368",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2208,
-          2209,
-          2210,
-          2211,
-          2212,
-          2213
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 0,
-          "y": 562.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n369",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2214,
-          2215,
-          2216,
-          2217,
-          2218,
-          2219
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n370",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2220,
-          2221,
-          2222,
-          2223,
-          2224,
-          2225
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n371",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2226,
-          2227,
-          2228,
-          2229,
-          2230,
-          2231
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n372",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2232,
-          2233,
-          2234,
-          2235,
-          2236,
-          2237
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n373",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2238,
-          2239,
-          2240,
-          2241,
-          2242,
-          2243
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n374",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2244,
-          2245,
-          2246,
-          2247,
-          2248,
-          2249
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n375",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2250,
-          2251,
-          2252,
-          2253,
-          2254,
-          2255
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n376",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2256,
-          2257,
-          2258,
-          2259,
-          2260,
-          2261
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n377",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2262,
-          2263,
-          2264,
-          2265,
-          2266,
-          2267
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n378",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2268,
-          2269,
-          2270,
-          2271,
-          2272,
-          2273
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n379",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2274,
-          2275,
-          2276,
-          2277,
-          2278,
-          2279
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n380",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2280,
-          2281,
-          2282,
-          2283,
-          2284,
-          2285
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n381",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2286,
-          2287,
-          2288,
-          2289,
-          2290,
-          2291
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n382",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2292,
-          2293,
-          2294,
-          2295,
-          2296,
-          2297
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n383",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2298,
-          2299,
-          2300,
-          2301,
-          2302,
-          2303
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n384",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2304,
-          2305,
-          2306,
-          2307,
-          2308,
-          2309
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n385",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2310,
-          2311,
-          2312,
-          2313,
-          2314,
-          2315
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n386",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2316,
-          2317,
-          2318,
-          2319,
-          2320,
-          2321
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n387",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2322,
-          2323,
-          2324,
-          2325,
-          2326,
-          2327
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n388",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2328,
-          2329,
-          2330,
-          2331,
-          2332,
-          2333
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n389",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2334,
-          2335,
-          2336,
-          2337,
-          2338,
-          2339
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n390",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2340,
-          2341,
-          2342,
-          2343,
-          2344,
-          2345
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n391",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2346,
-          2347,
-          2348,
-          2349,
-          2350,
-          2351
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n392",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2352,
-          2353,
-          2354,
-          2355,
-          2356,
-          2357
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n393",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2358,
-          2359,
-          2360,
-          2361,
-          2362,
-          2363
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n394",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2364,
-          2365,
-          2366,
-          2367,
-          2368,
-          2369
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n395",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2370,
-          2371,
-          2372,
-          2373,
-          2374,
-          2375
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n396",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2376,
-          2377,
-          2378,
-          2379,
-          2380,
-          2381
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n397",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2382,
-          2383,
-          2384,
-          2385,
-          2386,
-          2387
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n398",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2388,
-          2389,
-          2390,
-          2391,
-          2392,
-          2393
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n399",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2394,
-          2395,
-          2396,
-          2397,
-          2398,
-          2399
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n400",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2400,
-          2401,
-          2402,
-          2403,
-          2404,
-          2405
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n401",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2406,
-          2407,
-          2408,
-          2409,
-          2410,
-          2411
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n402",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2412,
-          2413,
-          2414,
-          2415,
-          2416,
-          2417
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n403",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2418,
-          2419,
-          2420,
-          2421,
-          2422,
-          2423
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n404",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2424,
-          2425,
-          2426,
-          2427,
-          2428,
-          2429
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n405",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2430,
-          2431,
-          2432,
-          2433,
-          2434,
-          2435
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n406",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2436,
-          2437,
-          2438,
-          2439,
-          2440,
-          2441
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n407",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2442,
-          2443,
-          2444,
-          2445,
-          2446,
-          2447
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 0,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n408",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2448,
-          2449,
-          2450,
-          2451,
-          2452,
-          2453
-        ],
-        "restrained_degrees_of_freedom": [
-          true,
-          true,
-          true,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 0,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n409",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2454,
-          2455,
-          2456,
-          2457,
-          2458,
-          2459
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 75,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n410",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2460,
-          2461,
-          2462,
-          2463,
-          2464,
-          2465
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 37.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n411",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2466,
-          2467,
-          2468,
-          2469,
-          2470,
-          2471
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 75,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n412",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2472,
-          2473,
-          2474,
-          2475,
-          2476,
-          2477
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n413",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2478,
-          2479,
-          2480,
-          2481,
-          2482,
-          2483
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n414",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2484,
-          2485,
-          2486,
-          2487,
-          2488,
-          2489
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n415",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2490,
-          2491,
-          2492,
-          2493,
-          2494,
-          2495
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n416",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2496,
-          2497,
-          2498,
-          2499,
-          2500,
-          2501
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n417",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2502,
-          2503,
-          2504,
-          2505,
-          2506,
-          2507
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n418",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2508,
-          2509,
-          2510,
-          2511,
-          2512,
-          2513
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n419",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2514,
-          2515,
-          2516,
-          2517,
-          2518,
-          2519
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n420",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2520,
-          2521,
-          2522,
-          2523,
-          2524,
-          2525
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n421",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2526,
-          2527,
-          2528,
-          2529,
-          2530,
-          2531
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n422",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2532,
-          2533,
-          2534,
-          2535,
-          2536,
-          2537
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n423",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2538,
-          2539,
-          2540,
-          2541,
-          2542,
-          2543
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n424",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2544,
-          2545,
-          2546,
-          2547,
-          2548,
-          2549
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n425",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2550,
-          2551,
-          2552,
-          2553,
-          2554,
-          2555
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n426",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2556,
-          2557,
-          2558,
-          2559,
-          2560,
-          2561
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n427",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2562,
-          2563,
-          2564,
-          2565,
-          2566,
-          2567
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n428",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2568,
-          2569,
-          2570,
-          2571,
-          2572,
-          2573
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n429",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2574,
-          2575,
-          2576,
-          2577,
-          2578,
-          2579
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n430",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2580,
-          2581,
-          2582,
-          2583,
-          2584,
-          2585
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n431",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2586,
-          2587,
-          2588,
-          2589,
-          2590,
-          2591
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n432",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2592,
-          2593,
-          2594,
-          2595,
-          2596,
-          2597
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n433",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2598,
-          2599,
-          2600,
-          2601,
-          2602,
-          2603
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n434",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2604,
-          2605,
-          2606,
-          2607,
-          2608,
-          2609
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n435",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2610,
-          2611,
-          2612,
-          2613,
-          2614,
-          2615
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 150,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n436",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2616,
-          2617,
-          2618,
-          2619,
-          2620,
-          2621
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 112.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n437",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2622,
-          2623,
-          2624,
-          2625,
-          2626,
-          2627
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 150,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n438",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2628,
-          2629,
-          2630,
-          2631,
-          2632,
-          2633
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n439",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2634,
-          2635,
-          2636,
-          2637,
-          2638,
-          2639
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n440",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2640,
-          2641,
-          2642,
-          2643,
-          2644,
-          2645
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n441",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2646,
-          2647,
-          2648,
-          2649,
-          2650,
-          2651
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n442",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2652,
-          2653,
-          2654,
-          2655,
-          2656,
-          2657
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n443",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2658,
-          2659,
-          2660,
-          2661,
-          2662,
-          2663
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n444",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2664,
-          2665,
-          2666,
-          2667,
-          2668,
-          2669
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n445",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2670,
-          2671,
-          2672,
-          2673,
-          2674,
-          2675
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n446",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2676,
-          2677,
-          2678,
-          2679,
-          2680,
-          2681
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n447",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2682,
-          2683,
-          2684,
-          2685,
-          2686,
-          2687
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n448",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2688,
-          2689,
-          2690,
-          2691,
-          2692,
-          2693
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n449",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2694,
-          2695,
-          2696,
-          2697,
-          2698,
-          2699
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n450",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2700,
-          2701,
-          2702,
-          2703,
-          2704,
-          2705
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n451",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2706,
-          2707,
-          2708,
-          2709,
-          2710,
-          2711
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n452",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2712,
-          2713,
-          2714,
-          2715,
-          2716,
-          2717
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n453",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2718,
-          2719,
-          2720,
-          2721,
-          2722,
-          2723
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n454",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2724,
-          2725,
-          2726,
-          2727,
-          2728,
-          2729
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n455",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2730,
-          2731,
-          2732,
-          2733,
-          2734,
-          2735
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n456",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2736,
-          2737,
-          2738,
-          2739,
-          2740,
-          2741
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n457",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2742,
-          2743,
-          2744,
-          2745,
-          2746,
-          2747
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n458",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2748,
-          2749,
-          2750,
-          2751,
-          2752,
-          2753
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n459",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2754,
-          2755,
-          2756,
-          2757,
-          2758,
-          2759
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n460",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2760,
-          2761,
-          2762,
-          2763,
-          2764,
-          2765
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n461",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2766,
-          2767,
-          2768,
-          2769,
-          2770,
-          2771
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 225,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n462",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2772,
-          2773,
-          2774,
-          2775,
-          2776,
-          2777
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 187.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n463",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2778,
-          2779,
-          2780,
-          2781,
-          2782,
-          2783
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 225,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n464",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2784,
-          2785,
-          2786,
-          2787,
-          2788,
-          2789
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n465",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2790,
-          2791,
-          2792,
-          2793,
-          2794,
-          2795
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n466",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2796,
-          2797,
-          2798,
-          2799,
-          2800,
-          2801
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n467",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2802,
-          2803,
-          2804,
-          2805,
-          2806,
-          2807
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n468",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2808,
-          2809,
-          2810,
-          2811,
-          2812,
-          2813
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n469",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2814,
-          2815,
-          2816,
-          2817,
-          2818,
-          2819
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n470",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2820,
-          2821,
-          2822,
-          2823,
-          2824,
-          2825
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n471",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2826,
-          2827,
-          2828,
-          2829,
-          2830,
-          2831
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n472",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2832,
-          2833,
-          2834,
-          2835,
-          2836,
-          2837
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n473",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2838,
-          2839,
-          2840,
-          2841,
-          2842,
-          2843
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n474",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2844,
-          2845,
-          2846,
-          2847,
-          2848,
-          2849
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n475",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2850,
-          2851,
-          2852,
-          2853,
-          2854,
-          2855
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n476",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2856,
-          2857,
-          2858,
-          2859,
-          2860,
-          2861
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n477",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2862,
-          2863,
-          2864,
-          2865,
-          2866,
-          2867
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n478",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2868,
-          2869,
-          2870,
-          2871,
-          2872,
-          2873
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n479",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2874,
-          2875,
-          2876,
-          2877,
-          2878,
-          2879
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n480",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2880,
-          2881,
-          2882,
-          2883,
-          2884,
-          2885
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n481",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2886,
-          2887,
-          2888,
-          2889,
-          2890,
-          2891
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n482",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2892,
-          2893,
-          2894,
-          2895,
-          2896,
-          2897
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n483",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2898,
-          2899,
-          2900,
-          2901,
-          2902,
-          2903
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n484",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2904,
-          2905,
-          2906,
-          2907,
-          2908,
-          2909
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n485",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2910,
-          2911,
-          2912,
-          2913,
-          2914,
-          2915
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n486",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2916,
-          2917,
-          2918,
-          2919,
-          2920,
-          2921
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n487",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2922,
-          2923,
-          2924,
-          2925,
-          2926,
-          2927
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 300,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n488",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2928,
-          2929,
-          2930,
-          2931,
-          2932,
-          2933
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 262.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n489",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2934,
-          2935,
-          2936,
-          2937,
-          2938,
-          2939
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 300,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n490",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2940,
-          2941,
-          2942,
-          2943,
-          2944,
-          2945
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n491",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2946,
-          2947,
-          2948,
-          2949,
-          2950,
-          2951
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n492",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2952,
-          2953,
-          2954,
-          2955,
-          2956,
-          2957
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n493",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2958,
-          2959,
-          2960,
-          2961,
-          2962,
-          2963
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n494",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2964,
-          2965,
-          2966,
-          2967,
-          2968,
-          2969
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n495",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2970,
-          2971,
-          2972,
-          2973,
-          2974,
-          2975
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n496",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2976,
-          2977,
-          2978,
-          2979,
-          2980,
-          2981
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n497",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2982,
-          2983,
-          2984,
-          2985,
-          2986,
-          2987
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n498",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2988,
-          2989,
-          2990,
-          2991,
-          2992,
-          2993
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n499",
-        "parent": "11",
-        "degrees_of_freedom": [
-          2994,
-          2995,
-          2996,
-          2997,
-          2998,
-          2999
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n500",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3000,
-          3001,
-          3002,
-          3003,
-          3004,
-          3005
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n501",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3006,
-          3007,
-          3008,
-          3009,
-          3010,
-          3011
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n502",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3012,
-          3013,
-          3014,
-          3015,
-          3016,
-          3017
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n503",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3018,
-          3019,
-          3020,
-          3021,
-          3022,
-          3023
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n504",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3024,
-          3025,
-          3026,
-          3027,
-          3028,
-          3029
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n505",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3030,
-          3031,
-          3032,
-          3033,
-          3034,
-          3035
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n506",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3036,
-          3037,
-          3038,
-          3039,
-          3040,
-          3041
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n507",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3042,
-          3043,
-          3044,
-          3045,
-          3046,
-          3047
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n508",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3048,
-          3049,
-          3050,
-          3051,
-          3052,
-          3053
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n509",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3054,
-          3055,
-          3056,
-          3057,
-          3058,
-          3059
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n510",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3060,
-          3061,
-          3062,
-          3063,
-          3064,
-          3065
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n511",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3066,
-          3067,
-          3068,
-          3069,
-          3070,
-          3071
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n512",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3072,
-          3073,
-          3074,
-          3075,
-          3076,
-          3077
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n513",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3078,
-          3079,
-          3080,
-          3081,
-          3082,
-          3083
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 375,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n514",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3084,
-          3085,
-          3086,
-          3087,
-          3088,
-          3089
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 337.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n515",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3090,
-          3091,
-          3092,
-          3093,
-          3094,
-          3095
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 375,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n516",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3096,
-          3097,
-          3098,
-          3099,
-          3100,
-          3101
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n517",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3102,
-          3103,
-          3104,
-          3105,
-          3106,
-          3107
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n518",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3108,
-          3109,
-          3110,
-          3111,
-          3112,
-          3113
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n519",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3114,
-          3115,
-          3116,
-          3117,
-          3118,
-          3119
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n520",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3120,
-          3121,
-          3122,
-          3123,
-          3124,
-          3125
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n521",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3126,
-          3127,
-          3128,
-          3129,
-          3130,
-          3131
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n522",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3132,
-          3133,
-          3134,
-          3135,
-          3136,
-          3137
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n523",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3138,
-          3139,
-          3140,
-          3141,
-          3142,
-          3143
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n524",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3144,
-          3145,
-          3146,
-          3147,
-          3148,
-          3149
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n525",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3150,
-          3151,
-          3152,
-          3153,
-          3154,
-          3155
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n526",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3156,
-          3157,
-          3158,
-          3159,
-          3160,
-          3161
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n527",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3162,
-          3163,
-          3164,
-          3165,
-          3166,
-          3167
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n528",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3168,
-          3169,
-          3170,
-          3171,
-          3172,
-          3173
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n529",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3174,
-          3175,
-          3176,
-          3177,
-          3178,
-          3179
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n530",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3180,
-          3181,
-          3182,
-          3183,
-          3184,
-          3185
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n531",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3186,
-          3187,
-          3188,
-          3189,
-          3190,
-          3191
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n532",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3192,
-          3193,
-          3194,
-          3195,
-          3196,
-          3197
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n533",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3198,
-          3199,
-          3200,
-          3201,
-          3202,
-          3203
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n534",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3204,
-          3205,
-          3206,
-          3207,
-          3208,
-          3209
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n535",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3210,
-          3211,
-          3212,
-          3213,
-          3214,
-          3215
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n536",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3216,
-          3217,
-          3218,
-          3219,
-          3220,
-          3221
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n537",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3222,
-          3223,
-          3224,
-          3225,
-          3226,
-          3227
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n538",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3228,
-          3229,
-          3230,
-          3231,
-          3232,
-          3233
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n539",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3234,
-          3235,
-          3236,
-          3237,
-          3238,
-          3239
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 450,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n540",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3240,
-          3241,
-          3242,
-          3243,
-          3244,
-          3245
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 412.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n541",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3246,
-          3247,
-          3248,
-          3249,
-          3250,
-          3251
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 450,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n542",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3252,
-          3253,
-          3254,
-          3255,
-          3256,
-          3257
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n543",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3258,
-          3259,
-          3260,
-          3261,
-          3262,
-          3263
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n544",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3264,
-          3265,
-          3266,
-          3267,
-          3268,
-          3269
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n545",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3270,
-          3271,
-          3272,
-          3273,
-          3274,
-          3275
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n546",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3276,
-          3277,
-          3278,
-          3279,
-          3280,
-          3281
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n547",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3282,
-          3283,
-          3284,
-          3285,
-          3286,
-          3287
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n548",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3288,
-          3289,
-          3290,
-          3291,
-          3292,
-          3293
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n549",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3294,
-          3295,
-          3296,
-          3297,
-          3298,
-          3299
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n550",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3300,
-          3301,
-          3302,
-          3303,
-          3304,
-          3305
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n551",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3306,
-          3307,
-          3308,
-          3309,
-          3310,
-          3311
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n552",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3312,
-          3313,
-          3314,
-          3315,
-          3316,
-          3317
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n553",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3318,
-          3319,
-          3320,
-          3321,
-          3322,
-          3323
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n554",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3324,
-          3325,
-          3326,
-          3327,
-          3328,
-          3329
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n555",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3330,
-          3331,
-          3332,
-          3333,
-          3334,
-          3335
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n556",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3336,
-          3337,
-          3338,
-          3339,
-          3340,
-          3341
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n557",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3342,
-          3343,
-          3344,
-          3345,
-          3346,
-          3347
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n558",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3348,
-          3349,
-          3350,
-          3351,
-          3352,
-          3353
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n559",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3354,
-          3355,
-          3356,
-          3357,
-          3358,
-          3359
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n560",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3360,
-          3361,
-          3362,
-          3363,
-          3364,
-          3365
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n561",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3366,
-          3367,
-          3368,
-          3369,
-          3370,
-          3371
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n562",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3372,
-          3373,
-          3374,
-          3375,
-          3376,
-          3377
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n563",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3378,
-          3379,
-          3380,
-          3381,
-          3382,
-          3383
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n564",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3384,
-          3385,
-          3386,
-          3387,
-          3388,
-          3389
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n565",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3390,
-          3391,
-          3392,
-          3393,
-          3394,
-          3395
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 525,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n566",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3396,
-          3397,
-          3398,
-          3399,
-          3400,
-          3401
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 487.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n567",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3402,
-          3403,
-          3404,
-          3405,
-          3406,
-          3407
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 525,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n568",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3408,
-          3409,
-          3410,
-          3411,
-          3412,
-          3413
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 37.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n569",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3414,
-          3415,
-          3416,
-          3417,
-          3418,
-          3419
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n570",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3420,
-          3421,
-          3422,
-          3423,
-          3424,
-          3425
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n571",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3426,
-          3427,
-          3428,
-          3429,
-          3430,
-          3431
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 0
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n572",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3432,
-          3433,
-          3434,
-          3435,
-          3436,
-          3437
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 75
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n573",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3438,
-          3439,
-          3440,
-          3441,
-          3442,
-          3443
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 112.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n574",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3444,
-          3445,
-          3446,
-          3447,
-          3448,
-          3449
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n575",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3450,
-          3451,
-          3452,
-          3453,
-          3454,
-          3455
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 150
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n576",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3456,
-          3457,
-          3458,
-          3459,
-          3460,
-          3461
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 187.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n577",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3462,
-          3463,
-          3464,
-          3465,
-          3466,
-          3467
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n578",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3468,
-          3469,
-          3470,
-          3471,
-          3472,
-          3473
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 225
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n579",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3474,
-          3475,
-          3476,
-          3477,
-          3478,
-          3479
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 262.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n580",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3480,
-          3481,
-          3482,
-          3483,
-          3484,
-          3485
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n581",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3486,
-          3487,
-          3488,
-          3489,
-          3490,
-          3491
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 300
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n582",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3492,
-          3493,
-          3494,
-          3495,
-          3496,
-          3497
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 337.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n583",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3498,
-          3499,
-          3500,
-          3501,
-          3502,
-          3503
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n584",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3504,
-          3505,
-          3506,
-          3507,
-          3508,
-          3509
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 375
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n585",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3510,
-          3511,
-          3512,
-          3513,
-          3514,
-          3515
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 412.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n586",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3516,
-          3517,
-          3518,
-          3519,
-          3520,
-          3521
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n587",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3522,
-          3523,
-          3524,
-          3525,
-          3526,
-          3527
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 450
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n588",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3528,
-          3529,
-          3530,
-          3531,
-          3532,
-          3533
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 487.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n589",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3534,
-          3535,
-          3536,
-          3537,
-          3538,
-          3539
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n590",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3540,
-          3541,
-          3542,
-          3543,
-          3544,
-          3545
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 525
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n591",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3546,
-          3547,
-          3548,
-          3549,
-          3550,
-          3551
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 600,
-          "z": 562.5
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n592",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3552,
-          3553,
-          3554,
-          3555,
-          3556,
-          3557
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 150,
-          "y": 562.5,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      },
-      {
-        "id": "n593",
-        "parent": "11",
-        "degrees_of_freedom": [
-          3558,
-          3559,
-          3560,
-          3561,
-          3562,
-          3563
-        ],
-        "restrained_degrees_of_freedom": [
-          false,
-          false,
-          false,
-          true,
-          true,
-          true
-        ],
-        "position": {
-          "x": 112.5,
-          "y": 600,
-          "z": 600
-        },
-        "force": {
-          "x": 0,
-          "y": -0.5,
-          "z": 0
-        },
-        "displacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "fixedDisplacement": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "angle": {
-          "x": 0,
-          "y": 0,
-          "z": 0
-        },
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "nomSize": 1
-      }
-    ],
-    "edges": [
-      {
-        "id": "e0",
-        "source": 0,
-        "target": 1,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1",
-        "source": 1,
-        "target": 2,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e2",
-        "source": 2,
-        "target": 3,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e3",
-        "source": 3,
-        "target": 0,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e4",
-        "source": 4,
-        "target": 5,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e5",
-        "source": 5,
-        "target": 0,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e6",
-        "source": 0,
-        "target": 6,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e7",
-        "source": 6,
-        "target": 4,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e8",
-        "source": 7,
-        "target": 8,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e9",
-        "source": 8,
-        "target": 4,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e10",
-        "source": 4,
-        "target": 9,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e11",
-        "source": 9,
-        "target": 7,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e12",
-        "source": 2,
-        "target": 10,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e13",
-        "source": 10,
-        "target": 7,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e14",
-        "source": 7,
-        "target": 11,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e15",
-        "source": 11,
-        "target": 2,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e16",
-        "source": 8,
-        "target": 10,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e17",
-        "source": 10,
-        "target": 1,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e18",
-        "source": 1,
-        "target": 5,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e19",
-        "source": 5,
-        "target": 8,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e20",
-        "source": 6,
-        "target": 3,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e21",
-        "source": 3,
-        "target": 11,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e22",
-        "source": 11,
-        "target": 9,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e23",
-        "source": 9,
-        "target": 6,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e24",
-        "source": 12,
-        "target": 3,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e25",
-        "source": 3,
-        "target": 13,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e26",
-        "source": 13,
-        "target": 14,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e27",
-        "source": 14,
-        "target": 12,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e28",
-        "source": 15,
-        "target": 6,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e29",
-        "source": 6,
-        "target": 12,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e30",
-        "source": 12,
-        "target": 16,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e31",
-        "source": 16,
-        "target": 15,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e32",
-        "source": 17,
-        "target": 9,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e33",
-        "source": 9,
-        "target": 15,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e34",
-        "source": 15,
-        "target": 18,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e35",
-        "source": 18,
-        "target": 17,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e36",
-        "source": 13,
-        "target": 11,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e37",
-        "source": 11,
-        "target": 17,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e38",
-        "source": 17,
-        "target": 19,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e39",
-        "source": 19,
-        "target": 13,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e40",
-        "source": 16,
-        "target": 14,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e41",
-        "source": 14,
-        "target": 19,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e42",
-        "source": 19,
-        "target": 18,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e43",
-        "source": 18,
-        "target": 16,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e44",
-        "source": 20,
-        "target": 14,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e45",
-        "source": 14,
-        "target": 21,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e46",
-        "source": 21,
-        "target": 22,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e47",
-        "source": 22,
-        "target": 20,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e48",
-        "source": 23,
-        "target": 16,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e49",
-        "source": 16,
-        "target": 20,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e50",
-        "source": 20,
-        "target": 24,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e51",
-        "source": 24,
-        "target": 23,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e52",
-        "source": 25,
-        "target": 18,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e53",
-        "source": 18,
-        "target": 23,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e54",
-        "source": 23,
-        "target": 26,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e55",
-        "source": 26,
-        "target": 25,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e56",
-        "source": 21,
-        "target": 19,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e57",
-        "source": 19,
-        "target": 25,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e58",
-        "source": 25,
-        "target": 27,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e59",
-        "source": 27,
-        "target": 21,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e60",
-        "source": 24,
-        "target": 22,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e61",
-        "source": 22,
-        "target": 27,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e62",
-        "source": 27,
-        "target": 26,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e63",
-        "source": 26,
-        "target": 24,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e64",
-        "source": 28,
-        "target": 22,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e65",
-        "source": 22,
-        "target": 29,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e66",
-        "source": 29,
-        "target": 30,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e67",
-        "source": 30,
-        "target": 28,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e68",
-        "source": 31,
-        "target": 24,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e69",
-        "source": 24,
-        "target": 28,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e70",
-        "source": 28,
-        "target": 32,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e71",
-        "source": 32,
-        "target": 31,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e72",
-        "source": 33,
-        "target": 26,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e73",
-        "source": 26,
-        "target": 31,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e74",
-        "source": 31,
-        "target": 34,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e75",
-        "source": 34,
-        "target": 33,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e76",
-        "source": 29,
-        "target": 27,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e77",
-        "source": 27,
-        "target": 33,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e78",
-        "source": 33,
-        "target": 35,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e79",
-        "source": 35,
-        "target": 29,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e80",
-        "source": 32,
-        "target": 30,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e81",
-        "source": 30,
-        "target": 35,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e82",
-        "source": 35,
-        "target": 34,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e83",
-        "source": 34,
-        "target": 32,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e84",
-        "source": 36,
-        "target": 30,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e85",
-        "source": 30,
-        "target": 37,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e86",
-        "source": 37,
-        "target": 38,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e87",
-        "source": 38,
-        "target": 36,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e88",
-        "source": 39,
-        "target": 32,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e89",
-        "source": 32,
-        "target": 36,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e90",
-        "source": 36,
-        "target": 40,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e91",
-        "source": 40,
-        "target": 39,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e92",
-        "source": 41,
-        "target": 34,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e93",
-        "source": 34,
-        "target": 39,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e94",
-        "source": 39,
-        "target": 42,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e95",
-        "source": 42,
-        "target": 41,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e96",
-        "source": 37,
-        "target": 35,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e97",
-        "source": 35,
-        "target": 41,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e98",
-        "source": 41,
-        "target": 43,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e99",
-        "source": 43,
-        "target": 37,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e100",
-        "source": 40,
-        "target": 38,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e101",
-        "source": 38,
-        "target": 43,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e102",
-        "source": 43,
-        "target": 42,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e103",
-        "source": 42,
-        "target": 40,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e104",
-        "source": 44,
-        "target": 38,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e105",
-        "source": 38,
-        "target": 45,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e106",
-        "source": 45,
-        "target": 46,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e107",
-        "source": 46,
-        "target": 44,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e108",
-        "source": 47,
-        "target": 40,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e109",
-        "source": 40,
-        "target": 44,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e110",
-        "source": 44,
-        "target": 48,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e111",
-        "source": 48,
-        "target": 47,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e112",
-        "source": 49,
-        "target": 42,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e113",
-        "source": 42,
-        "target": 47,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e114",
-        "source": 47,
-        "target": 50,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e115",
-        "source": 50,
-        "target": 49,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e116",
-        "source": 45,
-        "target": 43,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e117",
-        "source": 43,
-        "target": 49,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e118",
-        "source": 49,
-        "target": 51,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e119",
-        "source": 51,
-        "target": 45,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e120",
-        "source": 48,
-        "target": 46,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e121",
-        "source": 46,
-        "target": 51,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e122",
-        "source": 51,
-        "target": 50,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e123",
-        "source": 50,
-        "target": 48,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e124",
-        "source": 52,
-        "target": 46,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e125",
-        "source": 46,
-        "target": 53,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e126",
-        "source": 53,
-        "target": 54,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e127",
-        "source": 54,
-        "target": 52,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e128",
-        "source": 55,
-        "target": 48,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e129",
-        "source": 48,
-        "target": 52,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e130",
-        "source": 52,
-        "target": 56,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e131",
-        "source": 56,
-        "target": 55,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e132",
-        "source": 57,
-        "target": 50,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e133",
-        "source": 50,
-        "target": 55,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e134",
-        "source": 55,
-        "target": 58,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e135",
-        "source": 58,
-        "target": 57,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e136",
-        "source": 53,
-        "target": 51,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e137",
-        "source": 51,
-        "target": 57,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e138",
-        "source": 57,
-        "target": 59,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e139",
-        "source": 59,
-        "target": 53,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e140",
-        "source": 56,
-        "target": 54,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e141",
-        "source": 54,
-        "target": 59,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e142",
-        "source": 59,
-        "target": 58,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e143",
-        "source": 58,
-        "target": 56,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e144",
-        "source": 60,
-        "target": 54,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e145",
-        "source": 54,
-        "target": 61,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e146",
-        "source": 61,
-        "target": 62,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e147",
-        "source": 62,
-        "target": 60,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e148",
-        "source": 63,
-        "target": 56,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e149",
-        "source": 56,
-        "target": 60,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e150",
-        "source": 60,
-        "target": 64,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e151",
-        "source": 64,
-        "target": 63,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e152",
-        "source": 65,
-        "target": 58,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e153",
-        "source": 58,
-        "target": 63,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e154",
-        "source": 63,
-        "target": 66,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e155",
-        "source": 66,
-        "target": 65,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e156",
-        "source": 61,
-        "target": 59,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e157",
-        "source": 59,
-        "target": 65,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e158",
-        "source": 65,
-        "target": 67,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e159",
-        "source": 67,
-        "target": 61,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e160",
-        "source": 64,
-        "target": 62,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e161",
-        "source": 62,
-        "target": 67,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e162",
-        "source": 67,
-        "target": 66,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e163",
-        "source": 66,
-        "target": 64,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e164",
-        "source": 68,
-        "target": 69,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e165",
-        "source": 69,
-        "target": 4,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e166",
-        "source": 4,
-        "target": 70,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e167",
-        "source": 70,
-        "target": 68,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e168",
-        "source": 71,
-        "target": 72,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e169",
-        "source": 72,
-        "target": 68,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e170",
-        "source": 68,
-        "target": 73,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e171",
-        "source": 73,
-        "target": 71,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e172",
-        "source": 7,
-        "target": 74,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e173",
-        "source": 74,
-        "target": 71,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e174",
-        "source": 71,
-        "target": 75,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e175",
-        "source": 75,
-        "target": 7,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e176",
-        "source": 72,
-        "target": 74,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e177",
-        "source": 74,
-        "target": 8,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e178",
-        "source": 8,
-        "target": 69,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e179",
-        "source": 69,
-        "target": 72,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e180",
-        "source": 70,
-        "target": 9,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e181",
-        "source": 9,
-        "target": 75,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e182",
-        "source": 75,
-        "target": 73,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e183",
-        "source": 73,
-        "target": 70,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e184",
-        "source": 76,
-        "target": 70,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e185",
-        "source": 70,
-        "target": 15,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e186",
-        "source": 15,
-        "target": 77,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e187",
-        "source": 77,
-        "target": 76,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e188",
-        "source": 78,
-        "target": 73,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e189",
-        "source": 73,
-        "target": 76,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e190",
-        "source": 76,
-        "target": 79,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e191",
-        "source": 79,
-        "target": 78,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e192",
-        "source": 17,
-        "target": 75,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e193",
-        "source": 75,
-        "target": 78,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e194",
-        "source": 78,
-        "target": 80,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e195",
-        "source": 80,
-        "target": 17,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e196",
-        "source": 77,
-        "target": 18,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e197",
-        "source": 18,
-        "target": 80,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e198",
-        "source": 80,
-        "target": 79,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e199",
-        "source": 79,
-        "target": 77,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e200",
-        "source": 81,
-        "target": 77,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e201",
-        "source": 77,
-        "target": 23,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e202",
-        "source": 23,
-        "target": 82,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e203",
-        "source": 82,
-        "target": 81,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e204",
-        "source": 83,
-        "target": 79,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e205",
-        "source": 79,
-        "target": 81,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e206",
-        "source": 81,
-        "target": 84,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e207",
-        "source": 84,
-        "target": 83,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e208",
-        "source": 25,
-        "target": 80,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e209",
-        "source": 80,
-        "target": 83,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e210",
-        "source": 83,
-        "target": 85,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e211",
-        "source": 85,
-        "target": 25,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e212",
-        "source": 82,
-        "target": 26,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e213",
-        "source": 26,
-        "target": 85,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e214",
-        "source": 85,
-        "target": 84,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e215",
-        "source": 84,
-        "target": 82,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e216",
-        "source": 86,
-        "target": 82,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e217",
-        "source": 82,
-        "target": 31,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e218",
-        "source": 31,
-        "target": 87,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e219",
-        "source": 87,
-        "target": 86,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e220",
-        "source": 88,
-        "target": 84,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e221",
-        "source": 84,
-        "target": 86,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e222",
-        "source": 86,
-        "target": 89,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e223",
-        "source": 89,
-        "target": 88,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e224",
-        "source": 33,
-        "target": 85,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e225",
-        "source": 85,
-        "target": 88,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e226",
-        "source": 88,
-        "target": 90,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e227",
-        "source": 90,
-        "target": 33,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e228",
-        "source": 87,
-        "target": 34,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e229",
-        "source": 34,
-        "target": 90,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e230",
-        "source": 90,
-        "target": 89,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e231",
-        "source": 89,
-        "target": 87,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e232",
-        "source": 91,
-        "target": 87,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e233",
-        "source": 87,
-        "target": 39,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e234",
-        "source": 39,
-        "target": 92,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e235",
-        "source": 92,
-        "target": 91,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e236",
-        "source": 93,
-        "target": 89,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e237",
-        "source": 89,
-        "target": 91,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e238",
-        "source": 91,
-        "target": 94,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e239",
-        "source": 94,
-        "target": 93,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e240",
-        "source": 41,
-        "target": 90,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e241",
-        "source": 90,
-        "target": 93,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e242",
-        "source": 93,
-        "target": 95,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e243",
-        "source": 95,
-        "target": 41,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e244",
-        "source": 92,
-        "target": 42,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e245",
-        "source": 42,
-        "target": 95,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e246",
-        "source": 95,
-        "target": 94,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e247",
-        "source": 94,
-        "target": 92,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e248",
-        "source": 96,
-        "target": 92,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e249",
-        "source": 92,
-        "target": 47,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e250",
-        "source": 47,
-        "target": 97,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e251",
-        "source": 97,
-        "target": 96,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e252",
-        "source": 98,
-        "target": 94,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e253",
-        "source": 94,
-        "target": 96,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e254",
-        "source": 96,
-        "target": 99,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e255",
-        "source": 99,
-        "target": 98,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e256",
-        "source": 49,
-        "target": 95,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e257",
-        "source": 95,
-        "target": 98,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e258",
-        "source": 98,
-        "target": 100,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e259",
-        "source": 100,
-        "target": 49,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e260",
-        "source": 97,
-        "target": 50,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e261",
-        "source": 50,
-        "target": 100,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e262",
-        "source": 100,
-        "target": 99,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e263",
-        "source": 99,
-        "target": 97,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e264",
-        "source": 101,
-        "target": 97,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e265",
-        "source": 97,
-        "target": 55,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e266",
-        "source": 55,
-        "target": 102,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e267",
-        "source": 102,
-        "target": 101,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e268",
-        "source": 103,
-        "target": 99,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e269",
-        "source": 99,
-        "target": 101,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e270",
-        "source": 101,
-        "target": 104,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e271",
-        "source": 104,
-        "target": 103,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e272",
-        "source": 57,
-        "target": 100,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e273",
-        "source": 100,
-        "target": 103,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e274",
-        "source": 103,
-        "target": 105,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e275",
-        "source": 105,
-        "target": 57,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e276",
-        "source": 102,
-        "target": 58,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e277",
-        "source": 58,
-        "target": 105,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e278",
-        "source": 105,
-        "target": 104,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e279",
-        "source": 104,
-        "target": 102,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e280",
-        "source": 106,
-        "target": 102,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e281",
-        "source": 102,
-        "target": 63,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e282",
-        "source": 63,
-        "target": 107,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e283",
-        "source": 107,
-        "target": 106,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e284",
-        "source": 108,
-        "target": 104,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e285",
-        "source": 104,
-        "target": 106,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e286",
-        "source": 106,
-        "target": 109,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e287",
-        "source": 109,
-        "target": 108,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e288",
-        "source": 65,
-        "target": 105,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e289",
-        "source": 105,
-        "target": 108,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e290",
-        "source": 108,
-        "target": 110,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e291",
-        "source": 110,
-        "target": 65,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e292",
-        "source": 107,
-        "target": 66,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e293",
-        "source": 66,
-        "target": 110,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e294",
-        "source": 110,
-        "target": 109,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e295",
-        "source": 109,
-        "target": 107,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e296",
-        "source": 111,
-        "target": 112,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e297",
-        "source": 112,
-        "target": 68,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e298",
-        "source": 68,
-        "target": 113,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e299",
-        "source": 113,
-        "target": 111,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e300",
-        "source": 114,
-        "target": 115,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e301",
-        "source": 115,
-        "target": 111,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e302",
-        "source": 111,
-        "target": 116,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e303",
-        "source": 116,
-        "target": 114,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e304",
-        "source": 71,
-        "target": 117,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e305",
-        "source": 117,
-        "target": 114,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e306",
-        "source": 114,
-        "target": 118,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e307",
-        "source": 118,
-        "target": 71,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e308",
-        "source": 115,
-        "target": 117,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e309",
-        "source": 117,
-        "target": 72,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e310",
-        "source": 72,
-        "target": 112,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e311",
-        "source": 112,
-        "target": 115,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e312",
-        "source": 113,
-        "target": 73,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e313",
-        "source": 73,
-        "target": 118,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e314",
-        "source": 118,
-        "target": 116,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e315",
-        "source": 116,
-        "target": 113,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e316",
-        "source": 119,
-        "target": 113,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e317",
-        "source": 113,
-        "target": 76,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e318",
-        "source": 76,
-        "target": 120,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e319",
-        "source": 120,
-        "target": 119,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e320",
-        "source": 121,
-        "target": 116,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e321",
-        "source": 116,
-        "target": 119,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e322",
-        "source": 119,
-        "target": 122,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e323",
-        "source": 122,
-        "target": 121,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e324",
-        "source": 78,
-        "target": 118,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e325",
-        "source": 118,
-        "target": 121,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e326",
-        "source": 121,
-        "target": 123,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e327",
-        "source": 123,
-        "target": 78,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e328",
-        "source": 120,
-        "target": 79,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e329",
-        "source": 79,
-        "target": 123,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e330",
-        "source": 123,
-        "target": 122,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e331",
-        "source": 122,
-        "target": 120,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e332",
-        "source": 124,
-        "target": 120,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e333",
-        "source": 120,
-        "target": 81,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e334",
-        "source": 81,
-        "target": 125,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e335",
-        "source": 125,
-        "target": 124,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e336",
-        "source": 126,
-        "target": 122,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e337",
-        "source": 122,
-        "target": 124,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e338",
-        "source": 124,
-        "target": 127,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e339",
-        "source": 127,
-        "target": 126,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e340",
-        "source": 83,
-        "target": 123,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e341",
-        "source": 123,
-        "target": 126,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e342",
-        "source": 126,
-        "target": 128,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e343",
-        "source": 128,
-        "target": 83,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e344",
-        "source": 125,
-        "target": 84,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e345",
-        "source": 84,
-        "target": 128,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e346",
-        "source": 128,
-        "target": 127,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e347",
-        "source": 127,
-        "target": 125,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e348",
-        "source": 129,
-        "target": 125,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e349",
-        "source": 125,
-        "target": 86,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e350",
-        "source": 86,
-        "target": 130,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e351",
-        "source": 130,
-        "target": 129,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e352",
-        "source": 131,
-        "target": 127,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e353",
-        "source": 127,
-        "target": 129,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e354",
-        "source": 129,
-        "target": 132,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e355",
-        "source": 132,
-        "target": 131,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e356",
-        "source": 88,
-        "target": 128,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e357",
-        "source": 128,
-        "target": 131,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e358",
-        "source": 131,
-        "target": 133,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e359",
-        "source": 133,
-        "target": 88,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e360",
-        "source": 130,
-        "target": 89,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e361",
-        "source": 89,
-        "target": 133,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e362",
-        "source": 133,
-        "target": 132,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e363",
-        "source": 132,
-        "target": 130,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e364",
-        "source": 134,
-        "target": 130,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e365",
-        "source": 130,
-        "target": 91,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e366",
-        "source": 91,
-        "target": 135,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e367",
-        "source": 135,
-        "target": 134,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e368",
-        "source": 136,
-        "target": 132,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e369",
-        "source": 132,
-        "target": 134,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e370",
-        "source": 134,
-        "target": 137,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e371",
-        "source": 137,
-        "target": 136,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e372",
-        "source": 93,
-        "target": 133,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e373",
-        "source": 133,
-        "target": 136,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e374",
-        "source": 136,
-        "target": 138,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e375",
-        "source": 138,
-        "target": 93,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e376",
-        "source": 135,
-        "target": 94,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e377",
-        "source": 94,
-        "target": 138,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e378",
-        "source": 138,
-        "target": 137,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e379",
-        "source": 137,
-        "target": 135,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e380",
-        "source": 139,
-        "target": 135,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e381",
-        "source": 135,
-        "target": 96,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e382",
-        "source": 96,
-        "target": 140,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e383",
-        "source": 140,
-        "target": 139,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e384",
-        "source": 141,
-        "target": 137,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e385",
-        "source": 137,
-        "target": 139,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e386",
-        "source": 139,
-        "target": 142,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e387",
-        "source": 142,
-        "target": 141,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e388",
-        "source": 98,
-        "target": 138,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e389",
-        "source": 138,
-        "target": 141,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e390",
-        "source": 141,
-        "target": 143,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e391",
-        "source": 143,
-        "target": 98,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e392",
-        "source": 140,
-        "target": 99,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e393",
-        "source": 99,
-        "target": 143,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e394",
-        "source": 143,
-        "target": 142,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e395",
-        "source": 142,
-        "target": 140,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e396",
-        "source": 144,
-        "target": 140,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e397",
-        "source": 140,
-        "target": 101,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e398",
-        "source": 101,
-        "target": 145,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e399",
-        "source": 145,
-        "target": 144,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e400",
-        "source": 146,
-        "target": 142,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e401",
-        "source": 142,
-        "target": 144,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e402",
-        "source": 144,
-        "target": 147,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e403",
-        "source": 147,
-        "target": 146,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e404",
-        "source": 103,
-        "target": 143,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e405",
-        "source": 143,
-        "target": 146,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e406",
-        "source": 146,
-        "target": 148,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e407",
-        "source": 148,
-        "target": 103,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e408",
-        "source": 145,
-        "target": 104,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e409",
-        "source": 104,
-        "target": 148,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e410",
-        "source": 148,
-        "target": 147,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e411",
-        "source": 147,
-        "target": 145,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e412",
-        "source": 149,
-        "target": 145,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e413",
-        "source": 145,
-        "target": 106,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e414",
-        "source": 106,
-        "target": 150,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e415",
-        "source": 150,
-        "target": 149,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e416",
-        "source": 151,
-        "target": 147,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e417",
-        "source": 147,
-        "target": 149,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e418",
-        "source": 149,
-        "target": 152,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e419",
-        "source": 152,
-        "target": 151,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e420",
-        "source": 108,
-        "target": 148,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e421",
-        "source": 148,
-        "target": 151,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e422",
-        "source": 151,
-        "target": 153,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e423",
-        "source": 153,
-        "target": 108,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e424",
-        "source": 150,
-        "target": 109,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e425",
-        "source": 109,
-        "target": 153,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e426",
-        "source": 153,
-        "target": 152,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e427",
-        "source": 152,
-        "target": 150,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e428",
-        "source": 154,
-        "target": 155,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e429",
-        "source": 155,
-        "target": 111,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e430",
-        "source": 111,
-        "target": 156,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e431",
-        "source": 156,
-        "target": 154,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e432",
-        "source": 157,
-        "target": 158,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e433",
-        "source": 158,
-        "target": 154,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e434",
-        "source": 154,
-        "target": 159,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e435",
-        "source": 159,
-        "target": 157,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e436",
-        "source": 114,
-        "target": 160,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e437",
-        "source": 160,
-        "target": 157,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e438",
-        "source": 157,
-        "target": 161,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e439",
-        "source": 161,
-        "target": 114,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e440",
-        "source": 158,
-        "target": 160,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e441",
-        "source": 160,
-        "target": 115,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e442",
-        "source": 115,
-        "target": 155,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e443",
-        "source": 155,
-        "target": 158,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e444",
-        "source": 156,
-        "target": 116,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e445",
-        "source": 116,
-        "target": 161,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e446",
-        "source": 161,
-        "target": 159,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e447",
-        "source": 159,
-        "target": 156,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e448",
-        "source": 162,
-        "target": 156,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e449",
-        "source": 156,
-        "target": 119,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e450",
-        "source": 119,
-        "target": 163,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e451",
-        "source": 163,
-        "target": 162,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e452",
-        "source": 164,
-        "target": 159,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e453",
-        "source": 159,
-        "target": 162,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e454",
-        "source": 162,
-        "target": 165,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e455",
-        "source": 165,
-        "target": 164,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e456",
-        "source": 121,
-        "target": 161,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e457",
-        "source": 161,
-        "target": 164,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e458",
-        "source": 164,
-        "target": 166,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e459",
-        "source": 166,
-        "target": 121,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e460",
-        "source": 163,
-        "target": 122,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e461",
-        "source": 122,
-        "target": 166,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e462",
-        "source": 166,
-        "target": 165,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e463",
-        "source": 165,
-        "target": 163,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e464",
-        "source": 167,
-        "target": 163,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e465",
-        "source": 163,
-        "target": 124,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e466",
-        "source": 124,
-        "target": 168,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e467",
-        "source": 168,
-        "target": 167,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e468",
-        "source": 169,
-        "target": 165,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e469",
-        "source": 165,
-        "target": 167,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e470",
-        "source": 167,
-        "target": 170,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e471",
-        "source": 170,
-        "target": 169,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e472",
-        "source": 126,
-        "target": 166,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e473",
-        "source": 166,
-        "target": 169,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e474",
-        "source": 169,
-        "target": 171,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e475",
-        "source": 171,
-        "target": 126,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e476",
-        "source": 168,
-        "target": 127,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e477",
-        "source": 127,
-        "target": 171,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e478",
-        "source": 171,
-        "target": 170,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e479",
-        "source": 170,
-        "target": 168,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e480",
-        "source": 172,
-        "target": 168,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e481",
-        "source": 168,
-        "target": 129,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e482",
-        "source": 129,
-        "target": 173,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e483",
-        "source": 173,
-        "target": 172,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e484",
-        "source": 174,
-        "target": 170,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e485",
-        "source": 170,
-        "target": 172,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e486",
-        "source": 172,
-        "target": 175,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e487",
-        "source": 175,
-        "target": 174,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e488",
-        "source": 131,
-        "target": 171,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e489",
-        "source": 171,
-        "target": 174,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e490",
-        "source": 174,
-        "target": 176,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e491",
-        "source": 176,
-        "target": 131,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e492",
-        "source": 173,
-        "target": 132,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e493",
-        "source": 132,
-        "target": 176,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e494",
-        "source": 176,
-        "target": 175,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e495",
-        "source": 175,
-        "target": 173,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e496",
-        "source": 177,
-        "target": 173,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e497",
-        "source": 173,
-        "target": 134,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e498",
-        "source": 134,
-        "target": 178,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e499",
-        "source": 178,
-        "target": 177,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e500",
-        "source": 179,
-        "target": 175,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e501",
-        "source": 175,
-        "target": 177,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e502",
-        "source": 177,
-        "target": 180,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e503",
-        "source": 180,
-        "target": 179,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e504",
-        "source": 136,
-        "target": 176,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e505",
-        "source": 176,
-        "target": 179,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e506",
-        "source": 179,
-        "target": 181,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e507",
-        "source": 181,
-        "target": 136,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e508",
-        "source": 178,
-        "target": 137,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e509",
-        "source": 137,
-        "target": 181,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e510",
-        "source": 181,
-        "target": 180,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e511",
-        "source": 180,
-        "target": 178,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e512",
-        "source": 182,
-        "target": 178,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e513",
-        "source": 178,
-        "target": 139,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e514",
-        "source": 139,
-        "target": 183,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e515",
-        "source": 183,
-        "target": 182,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e516",
-        "source": 184,
-        "target": 180,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e517",
-        "source": 180,
-        "target": 182,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e518",
-        "source": 182,
-        "target": 185,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e519",
-        "source": 185,
-        "target": 184,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e520",
-        "source": 141,
-        "target": 181,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e521",
-        "source": 181,
-        "target": 184,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e522",
-        "source": 184,
-        "target": 186,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e523",
-        "source": 186,
-        "target": 141,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e524",
-        "source": 183,
-        "target": 142,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e525",
-        "source": 142,
-        "target": 186,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e526",
-        "source": 186,
-        "target": 185,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e527",
-        "source": 185,
-        "target": 183,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e528",
-        "source": 187,
-        "target": 183,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e529",
-        "source": 183,
-        "target": 144,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e530",
-        "source": 144,
-        "target": 188,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e531",
-        "source": 188,
-        "target": 187,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e532",
-        "source": 189,
-        "target": 185,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e533",
-        "source": 185,
-        "target": 187,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e534",
-        "source": 187,
-        "target": 190,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e535",
-        "source": 190,
-        "target": 189,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e536",
-        "source": 146,
-        "target": 186,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e537",
-        "source": 186,
-        "target": 189,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e538",
-        "source": 189,
-        "target": 191,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e539",
-        "source": 191,
-        "target": 146,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e540",
-        "source": 188,
-        "target": 147,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e541",
-        "source": 147,
-        "target": 191,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e542",
-        "source": 191,
-        "target": 190,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e543",
-        "source": 190,
-        "target": 188,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e544",
-        "source": 192,
-        "target": 188,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e545",
-        "source": 188,
-        "target": 149,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e546",
-        "source": 149,
-        "target": 193,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e547",
-        "source": 193,
-        "target": 192,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e548",
-        "source": 194,
-        "target": 190,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e549",
-        "source": 190,
-        "target": 192,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e550",
-        "source": 192,
-        "target": 195,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e551",
-        "source": 195,
-        "target": 194,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e552",
-        "source": 151,
-        "target": 191,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e553",
-        "source": 191,
-        "target": 194,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e554",
-        "source": 194,
-        "target": 196,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e555",
-        "source": 196,
-        "target": 151,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e556",
-        "source": 193,
-        "target": 152,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e557",
-        "source": 152,
-        "target": 196,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e558",
-        "source": 196,
-        "target": 195,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e559",
-        "source": 195,
-        "target": 193,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e560",
-        "source": 197,
-        "target": 198,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e561",
-        "source": 198,
-        "target": 154,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e562",
-        "source": 154,
-        "target": 199,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e563",
-        "source": 199,
-        "target": 197,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e564",
-        "source": 200,
-        "target": 201,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e565",
-        "source": 201,
-        "target": 197,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e566",
-        "source": 197,
-        "target": 202,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e567",
-        "source": 202,
-        "target": 200,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e568",
-        "source": 157,
-        "target": 203,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e569",
-        "source": 203,
-        "target": 200,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e570",
-        "source": 200,
-        "target": 204,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e571",
-        "source": 204,
-        "target": 157,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e572",
-        "source": 201,
-        "target": 203,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e573",
-        "source": 203,
-        "target": 158,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e574",
-        "source": 158,
-        "target": 198,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e575",
-        "source": 198,
-        "target": 201,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e576",
-        "source": 199,
-        "target": 159,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e577",
-        "source": 159,
-        "target": 204,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e578",
-        "source": 204,
-        "target": 202,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e579",
-        "source": 202,
-        "target": 199,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e580",
-        "source": 205,
-        "target": 199,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e581",
-        "source": 199,
-        "target": 162,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e582",
-        "source": 162,
-        "target": 206,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e583",
-        "source": 206,
-        "target": 205,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e584",
-        "source": 207,
-        "target": 202,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e585",
-        "source": 202,
-        "target": 205,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e586",
-        "source": 205,
-        "target": 208,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e587",
-        "source": 208,
-        "target": 207,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e588",
-        "source": 164,
-        "target": 204,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e589",
-        "source": 204,
-        "target": 207,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e590",
-        "source": 207,
-        "target": 209,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e591",
-        "source": 209,
-        "target": 164,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e592",
-        "source": 206,
-        "target": 165,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e593",
-        "source": 165,
-        "target": 209,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e594",
-        "source": 209,
-        "target": 208,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e595",
-        "source": 208,
-        "target": 206,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e596",
-        "source": 210,
-        "target": 206,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e597",
-        "source": 206,
-        "target": 167,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e598",
-        "source": 167,
-        "target": 211,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e599",
-        "source": 211,
-        "target": 210,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e600",
-        "source": 212,
-        "target": 208,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e601",
-        "source": 208,
-        "target": 210,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e602",
-        "source": 210,
-        "target": 213,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e603",
-        "source": 213,
-        "target": 212,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e604",
-        "source": 169,
-        "target": 209,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e605",
-        "source": 209,
-        "target": 212,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e606",
-        "source": 212,
-        "target": 214,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e607",
-        "source": 214,
-        "target": 169,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e608",
-        "source": 211,
-        "target": 170,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e609",
-        "source": 170,
-        "target": 214,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e610",
-        "source": 214,
-        "target": 213,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e611",
-        "source": 213,
-        "target": 211,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e612",
-        "source": 215,
-        "target": 211,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e613",
-        "source": 211,
-        "target": 172,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e614",
-        "source": 172,
-        "target": 216,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e615",
-        "source": 216,
-        "target": 215,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e616",
-        "source": 217,
-        "target": 213,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e617",
-        "source": 213,
-        "target": 215,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e618",
-        "source": 215,
-        "target": 218,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e619",
-        "source": 218,
-        "target": 217,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e620",
-        "source": 174,
-        "target": 214,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e621",
-        "source": 214,
-        "target": 217,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e622",
-        "source": 217,
-        "target": 219,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e623",
-        "source": 219,
-        "target": 174,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e624",
-        "source": 216,
-        "target": 175,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e625",
-        "source": 175,
-        "target": 219,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e626",
-        "source": 219,
-        "target": 218,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e627",
-        "source": 218,
-        "target": 216,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e628",
-        "source": 220,
-        "target": 216,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e629",
-        "source": 216,
-        "target": 177,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e630",
-        "source": 177,
-        "target": 221,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e631",
-        "source": 221,
-        "target": 220,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e632",
-        "source": 222,
-        "target": 218,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e633",
-        "source": 218,
-        "target": 220,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e634",
-        "source": 220,
-        "target": 223,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e635",
-        "source": 223,
-        "target": 222,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e636",
-        "source": 179,
-        "target": 219,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e637",
-        "source": 219,
-        "target": 222,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e638",
-        "source": 222,
-        "target": 224,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e639",
-        "source": 224,
-        "target": 179,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e640",
-        "source": 221,
-        "target": 180,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e641",
-        "source": 180,
-        "target": 224,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e642",
-        "source": 224,
-        "target": 223,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e643",
-        "source": 223,
-        "target": 221,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e644",
-        "source": 225,
-        "target": 221,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e645",
-        "source": 221,
-        "target": 182,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e646",
-        "source": 182,
-        "target": 226,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e647",
-        "source": 226,
-        "target": 225,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e648",
-        "source": 227,
-        "target": 223,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e649",
-        "source": 223,
-        "target": 225,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e650",
-        "source": 225,
-        "target": 228,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e651",
-        "source": 228,
-        "target": 227,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e652",
-        "source": 184,
-        "target": 224,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e653",
-        "source": 224,
-        "target": 227,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e654",
-        "source": 227,
-        "target": 229,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e655",
-        "source": 229,
-        "target": 184,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e656",
-        "source": 226,
-        "target": 185,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e657",
-        "source": 185,
-        "target": 229,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e658",
-        "source": 229,
-        "target": 228,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e659",
-        "source": 228,
-        "target": 226,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e660",
-        "source": 230,
-        "target": 226,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e661",
-        "source": 226,
-        "target": 187,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e662",
-        "source": 187,
-        "target": 231,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e663",
-        "source": 231,
-        "target": 230,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e664",
-        "source": 232,
-        "target": 228,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e665",
-        "source": 228,
-        "target": 230,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e666",
-        "source": 230,
-        "target": 233,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e667",
-        "source": 233,
-        "target": 232,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e668",
-        "source": 189,
-        "target": 229,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e669",
-        "source": 229,
-        "target": 232,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e670",
-        "source": 232,
-        "target": 234,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e671",
-        "source": 234,
-        "target": 189,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e672",
-        "source": 231,
-        "target": 190,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e673",
-        "source": 190,
-        "target": 234,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e674",
-        "source": 234,
-        "target": 233,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e675",
-        "source": 233,
-        "target": 231,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e676",
-        "source": 235,
-        "target": 231,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e677",
-        "source": 231,
-        "target": 192,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e678",
-        "source": 192,
-        "target": 236,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e679",
-        "source": 236,
-        "target": 235,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e680",
-        "source": 237,
-        "target": 233,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e681",
-        "source": 233,
-        "target": 235,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e682",
-        "source": 235,
-        "target": 238,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e683",
-        "source": 238,
-        "target": 237,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e684",
-        "source": 194,
-        "target": 234,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e685",
-        "source": 234,
-        "target": 237,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e686",
-        "source": 237,
-        "target": 239,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e687",
-        "source": 239,
-        "target": 194,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e688",
-        "source": 236,
-        "target": 195,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e689",
-        "source": 195,
-        "target": 239,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e690",
-        "source": 239,
-        "target": 238,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e691",
-        "source": 238,
-        "target": 236,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e692",
-        "source": 240,
-        "target": 241,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e693",
-        "source": 241,
-        "target": 197,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e694",
-        "source": 197,
-        "target": 242,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e695",
-        "source": 242,
-        "target": 240,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e696",
-        "source": 243,
-        "target": 244,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e697",
-        "source": 244,
-        "target": 240,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e698",
-        "source": 240,
-        "target": 245,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e699",
-        "source": 245,
-        "target": 243,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e700",
-        "source": 200,
-        "target": 246,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e701",
-        "source": 246,
-        "target": 243,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e702",
-        "source": 243,
-        "target": 247,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e703",
-        "source": 247,
-        "target": 200,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e704",
-        "source": 244,
-        "target": 246,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e705",
-        "source": 246,
-        "target": 201,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e706",
-        "source": 201,
-        "target": 241,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e707",
-        "source": 241,
-        "target": 244,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e708",
-        "source": 242,
-        "target": 202,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e709",
-        "source": 202,
-        "target": 247,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e710",
-        "source": 247,
-        "target": 245,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e711",
-        "source": 245,
-        "target": 242,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e712",
-        "source": 248,
-        "target": 242,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e713",
-        "source": 242,
-        "target": 205,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e714",
-        "source": 205,
-        "target": 249,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e715",
-        "source": 249,
-        "target": 248,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e716",
-        "source": 250,
-        "target": 245,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e717",
-        "source": 245,
-        "target": 248,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e718",
-        "source": 248,
-        "target": 251,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e719",
-        "source": 251,
-        "target": 250,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e720",
-        "source": 207,
-        "target": 247,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e721",
-        "source": 247,
-        "target": 250,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e722",
-        "source": 250,
-        "target": 252,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e723",
-        "source": 252,
-        "target": 207,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e724",
-        "source": 249,
-        "target": 208,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e725",
-        "source": 208,
-        "target": 252,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e726",
-        "source": 252,
-        "target": 251,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e727",
-        "source": 251,
-        "target": 249,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e728",
-        "source": 253,
-        "target": 249,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e729",
-        "source": 249,
-        "target": 210,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e730",
-        "source": 210,
-        "target": 254,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e731",
-        "source": 254,
-        "target": 253,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e732",
-        "source": 255,
-        "target": 251,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e733",
-        "source": 251,
-        "target": 253,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e734",
-        "source": 253,
-        "target": 256,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e735",
-        "source": 256,
-        "target": 255,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e736",
-        "source": 212,
-        "target": 252,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e737",
-        "source": 252,
-        "target": 255,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e738",
-        "source": 255,
-        "target": 257,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e739",
-        "source": 257,
-        "target": 212,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e740",
-        "source": 254,
-        "target": 213,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e741",
-        "source": 213,
-        "target": 257,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e742",
-        "source": 257,
-        "target": 256,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e743",
-        "source": 256,
-        "target": 254,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e744",
-        "source": 258,
-        "target": 254,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e745",
-        "source": 254,
-        "target": 215,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e746",
-        "source": 215,
-        "target": 259,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e747",
-        "source": 259,
-        "target": 258,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e748",
-        "source": 260,
-        "target": 256,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e749",
-        "source": 256,
-        "target": 258,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e750",
-        "source": 258,
-        "target": 261,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e751",
-        "source": 261,
-        "target": 260,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e752",
-        "source": 217,
-        "target": 257,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e753",
-        "source": 257,
-        "target": 260,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e754",
-        "source": 260,
-        "target": 262,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e755",
-        "source": 262,
-        "target": 217,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e756",
-        "source": 259,
-        "target": 218,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e757",
-        "source": 218,
-        "target": 262,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e758",
-        "source": 262,
-        "target": 261,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e759",
-        "source": 261,
-        "target": 259,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e760",
-        "source": 263,
-        "target": 259,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e761",
-        "source": 259,
-        "target": 220,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e762",
-        "source": 220,
-        "target": 264,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e763",
-        "source": 264,
-        "target": 263,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e764",
-        "source": 265,
-        "target": 261,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e765",
-        "source": 261,
-        "target": 263,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e766",
-        "source": 263,
-        "target": 266,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e767",
-        "source": 266,
-        "target": 265,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e768",
-        "source": 222,
-        "target": 262,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e769",
-        "source": 262,
-        "target": 265,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e770",
-        "source": 265,
-        "target": 267,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e771",
-        "source": 267,
-        "target": 222,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e772",
-        "source": 264,
-        "target": 223,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e773",
-        "source": 223,
-        "target": 267,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e774",
-        "source": 267,
-        "target": 266,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e775",
-        "source": 266,
-        "target": 264,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e776",
-        "source": 268,
-        "target": 264,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e777",
-        "source": 264,
-        "target": 225,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e778",
-        "source": 225,
-        "target": 269,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e779",
-        "source": 269,
-        "target": 268,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e780",
-        "source": 270,
-        "target": 266,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e781",
-        "source": 266,
-        "target": 268,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e782",
-        "source": 268,
-        "target": 271,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e783",
-        "source": 271,
-        "target": 270,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e784",
-        "source": 227,
-        "target": 267,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e785",
-        "source": 267,
-        "target": 270,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e786",
-        "source": 270,
-        "target": 272,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e787",
-        "source": 272,
-        "target": 227,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e788",
-        "source": 269,
-        "target": 228,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e789",
-        "source": 228,
-        "target": 272,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e790",
-        "source": 272,
-        "target": 271,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e791",
-        "source": 271,
-        "target": 269,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e792",
-        "source": 273,
-        "target": 269,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e793",
-        "source": 269,
-        "target": 230,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e794",
-        "source": 230,
-        "target": 274,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e795",
-        "source": 274,
-        "target": 273,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e796",
-        "source": 275,
-        "target": 271,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e797",
-        "source": 271,
-        "target": 273,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e798",
-        "source": 273,
-        "target": 276,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e799",
-        "source": 276,
-        "target": 275,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e800",
-        "source": 232,
-        "target": 272,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e801",
-        "source": 272,
-        "target": 275,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e802",
-        "source": 275,
-        "target": 277,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e803",
-        "source": 277,
-        "target": 232,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e804",
-        "source": 274,
-        "target": 233,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e805",
-        "source": 233,
-        "target": 277,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e806",
-        "source": 277,
-        "target": 276,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e807",
-        "source": 276,
-        "target": 274,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e808",
-        "source": 278,
-        "target": 274,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e809",
-        "source": 274,
-        "target": 235,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e810",
-        "source": 235,
-        "target": 279,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e811",
-        "source": 279,
-        "target": 278,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e812",
-        "source": 280,
-        "target": 276,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e813",
-        "source": 276,
-        "target": 278,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e814",
-        "source": 278,
-        "target": 281,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e815",
-        "source": 281,
-        "target": 280,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e816",
-        "source": 237,
-        "target": 277,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e817",
-        "source": 277,
-        "target": 280,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e818",
-        "source": 280,
-        "target": 282,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e819",
-        "source": 282,
-        "target": 237,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e820",
-        "source": 279,
-        "target": 238,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e821",
-        "source": 238,
-        "target": 282,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e822",
-        "source": 282,
-        "target": 281,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e823",
-        "source": 281,
-        "target": 279,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e824",
-        "source": 283,
-        "target": 284,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e825",
-        "source": 284,
-        "target": 240,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e826",
-        "source": 240,
-        "target": 285,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e827",
-        "source": 285,
-        "target": 283,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e828",
-        "source": 286,
-        "target": 287,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e829",
-        "source": 287,
-        "target": 283,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e830",
-        "source": 283,
-        "target": 288,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e831",
-        "source": 288,
-        "target": 286,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e832",
-        "source": 243,
-        "target": 289,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e833",
-        "source": 289,
-        "target": 286,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e834",
-        "source": 286,
-        "target": 290,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e835",
-        "source": 290,
-        "target": 243,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e836",
-        "source": 287,
-        "target": 289,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e837",
-        "source": 289,
-        "target": 244,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e838",
-        "source": 244,
-        "target": 284,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e839",
-        "source": 284,
-        "target": 287,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e840",
-        "source": 285,
-        "target": 245,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e841",
-        "source": 245,
-        "target": 290,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e842",
-        "source": 290,
-        "target": 288,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e843",
-        "source": 288,
-        "target": 285,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e844",
-        "source": 291,
-        "target": 285,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e845",
-        "source": 285,
-        "target": 248,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e846",
-        "source": 248,
-        "target": 292,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e847",
-        "source": 292,
-        "target": 291,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e848",
-        "source": 293,
-        "target": 288,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e849",
-        "source": 288,
-        "target": 291,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e850",
-        "source": 291,
-        "target": 294,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e851",
-        "source": 294,
-        "target": 293,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e852",
-        "source": 250,
-        "target": 290,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e853",
-        "source": 290,
-        "target": 293,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e854",
-        "source": 293,
-        "target": 295,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e855",
-        "source": 295,
-        "target": 250,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e856",
-        "source": 292,
-        "target": 251,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e857",
-        "source": 251,
-        "target": 295,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e858",
-        "source": 295,
-        "target": 294,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e859",
-        "source": 294,
-        "target": 292,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e860",
-        "source": 296,
-        "target": 292,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e861",
-        "source": 292,
-        "target": 253,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e862",
-        "source": 253,
-        "target": 297,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e863",
-        "source": 297,
-        "target": 296,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e864",
-        "source": 298,
-        "target": 294,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e865",
-        "source": 294,
-        "target": 296,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e866",
-        "source": 296,
-        "target": 299,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e867",
-        "source": 299,
-        "target": 298,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e868",
-        "source": 255,
-        "target": 295,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e869",
-        "source": 295,
-        "target": 298,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e870",
-        "source": 298,
-        "target": 300,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e871",
-        "source": 300,
-        "target": 255,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e872",
-        "source": 297,
-        "target": 256,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e873",
-        "source": 256,
-        "target": 300,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e874",
-        "source": 300,
-        "target": 299,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e875",
-        "source": 299,
-        "target": 297,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e876",
-        "source": 301,
-        "target": 297,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e877",
-        "source": 297,
-        "target": 258,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e878",
-        "source": 258,
-        "target": 302,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e879",
-        "source": 302,
-        "target": 301,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e880",
-        "source": 303,
-        "target": 299,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e881",
-        "source": 299,
-        "target": 301,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e882",
-        "source": 301,
-        "target": 304,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e883",
-        "source": 304,
-        "target": 303,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e884",
-        "source": 260,
-        "target": 300,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e885",
-        "source": 300,
-        "target": 303,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e886",
-        "source": 303,
-        "target": 305,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e887",
-        "source": 305,
-        "target": 260,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e888",
-        "source": 302,
-        "target": 261,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e889",
-        "source": 261,
-        "target": 305,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e890",
-        "source": 305,
-        "target": 304,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e891",
-        "source": 304,
-        "target": 302,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e892",
-        "source": 306,
-        "target": 302,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e893",
-        "source": 302,
-        "target": 263,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e894",
-        "source": 263,
-        "target": 307,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e895",
-        "source": 307,
-        "target": 306,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e896",
-        "source": 308,
-        "target": 304,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e897",
-        "source": 304,
-        "target": 306,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e898",
-        "source": 306,
-        "target": 309,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e899",
-        "source": 309,
-        "target": 308,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e900",
-        "source": 265,
-        "target": 305,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e901",
-        "source": 305,
-        "target": 308,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e902",
-        "source": 308,
-        "target": 310,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e903",
-        "source": 310,
-        "target": 265,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e904",
-        "source": 307,
-        "target": 266,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e905",
-        "source": 266,
-        "target": 310,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e906",
-        "source": 310,
-        "target": 309,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e907",
-        "source": 309,
-        "target": 307,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e908",
-        "source": 311,
-        "target": 307,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e909",
-        "source": 307,
-        "target": 268,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e910",
-        "source": 268,
-        "target": 312,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e911",
-        "source": 312,
-        "target": 311,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e912",
-        "source": 313,
-        "target": 309,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e913",
-        "source": 309,
-        "target": 311,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e914",
-        "source": 311,
-        "target": 314,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e915",
-        "source": 314,
-        "target": 313,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e916",
-        "source": 270,
-        "target": 310,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e917",
-        "source": 310,
-        "target": 313,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e918",
-        "source": 313,
-        "target": 315,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e919",
-        "source": 315,
-        "target": 270,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e920",
-        "source": 312,
-        "target": 271,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e921",
-        "source": 271,
-        "target": 315,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e922",
-        "source": 315,
-        "target": 314,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e923",
-        "source": 314,
-        "target": 312,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e924",
-        "source": 316,
-        "target": 312,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e925",
-        "source": 312,
-        "target": 273,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e926",
-        "source": 273,
-        "target": 317,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e927",
-        "source": 317,
-        "target": 316,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e928",
-        "source": 318,
-        "target": 314,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e929",
-        "source": 314,
-        "target": 316,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e930",
-        "source": 316,
-        "target": 319,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e931",
-        "source": 319,
-        "target": 318,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e932",
-        "source": 275,
-        "target": 315,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e933",
-        "source": 315,
-        "target": 318,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e934",
-        "source": 318,
-        "target": 320,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e935",
-        "source": 320,
-        "target": 275,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e936",
-        "source": 317,
-        "target": 276,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e937",
-        "source": 276,
-        "target": 320,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e938",
-        "source": 320,
-        "target": 319,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e939",
-        "source": 319,
-        "target": 317,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e940",
-        "source": 321,
-        "target": 317,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e941",
-        "source": 317,
-        "target": 278,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e942",
-        "source": 278,
-        "target": 322,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e943",
-        "source": 322,
-        "target": 321,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e944",
-        "source": 323,
-        "target": 319,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e945",
-        "source": 319,
-        "target": 321,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e946",
-        "source": 321,
-        "target": 324,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e947",
-        "source": 324,
-        "target": 323,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e948",
-        "source": 280,
-        "target": 320,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e949",
-        "source": 320,
-        "target": 323,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e950",
-        "source": 323,
-        "target": 325,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e951",
-        "source": 325,
-        "target": 280,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e952",
-        "source": 322,
-        "target": 281,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e953",
-        "source": 281,
-        "target": 325,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e954",
-        "source": 325,
-        "target": 324,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e955",
-        "source": 324,
-        "target": 322,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e956",
-        "source": 326,
-        "target": 327,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e957",
-        "source": 327,
-        "target": 283,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e958",
-        "source": 283,
-        "target": 328,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e959",
-        "source": 328,
-        "target": 326,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e960",
-        "source": 329,
-        "target": 330,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e961",
-        "source": 330,
-        "target": 326,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e962",
-        "source": 326,
-        "target": 331,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e963",
-        "source": 331,
-        "target": 329,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e964",
-        "source": 286,
-        "target": 332,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e965",
-        "source": 332,
-        "target": 329,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e966",
-        "source": 329,
-        "target": 333,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e967",
-        "source": 333,
-        "target": 286,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e968",
-        "source": 330,
-        "target": 332,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e969",
-        "source": 332,
-        "target": 287,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e970",
-        "source": 287,
-        "target": 327,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e971",
-        "source": 327,
-        "target": 330,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e972",
-        "source": 328,
-        "target": 288,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e973",
-        "source": 288,
-        "target": 333,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e974",
-        "source": 333,
-        "target": 331,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e975",
-        "source": 331,
-        "target": 328,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e976",
-        "source": 334,
-        "target": 328,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e977",
-        "source": 328,
-        "target": 291,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e978",
-        "source": 291,
-        "target": 335,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e979",
-        "source": 335,
-        "target": 334,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e980",
-        "source": 336,
-        "target": 331,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e981",
-        "source": 331,
-        "target": 334,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e982",
-        "source": 334,
-        "target": 337,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e983",
-        "source": 337,
-        "target": 336,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e984",
-        "source": 293,
-        "target": 333,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e985",
-        "source": 333,
-        "target": 336,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e986",
-        "source": 336,
-        "target": 338,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e987",
-        "source": 338,
-        "target": 293,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e988",
-        "source": 335,
-        "target": 294,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e989",
-        "source": 294,
-        "target": 338,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e990",
-        "source": 338,
-        "target": 337,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e991",
-        "source": 337,
-        "target": 335,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e992",
-        "source": 339,
-        "target": 335,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e993",
-        "source": 335,
-        "target": 296,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e994",
-        "source": 296,
-        "target": 340,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e995",
-        "source": 340,
-        "target": 339,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e996",
-        "source": 341,
-        "target": 337,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e997",
-        "source": 337,
-        "target": 339,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e998",
-        "source": 339,
-        "target": 342,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e999",
-        "source": 342,
-        "target": 341,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1000",
-        "source": 298,
-        "target": 338,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1001",
-        "source": 338,
-        "target": 341,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1002",
-        "source": 341,
-        "target": 343,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1003",
-        "source": 343,
-        "target": 298,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1004",
-        "source": 340,
-        "target": 299,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1005",
-        "source": 299,
-        "target": 343,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1006",
-        "source": 343,
-        "target": 342,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1007",
-        "source": 342,
-        "target": 340,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1008",
-        "source": 344,
-        "target": 340,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1009",
-        "source": 340,
-        "target": 301,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1010",
-        "source": 301,
-        "target": 345,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1011",
-        "source": 345,
-        "target": 344,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1012",
-        "source": 346,
-        "target": 342,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1013",
-        "source": 342,
-        "target": 344,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1014",
-        "source": 344,
-        "target": 347,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1015",
-        "source": 347,
-        "target": 346,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1016",
-        "source": 303,
-        "target": 343,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1017",
-        "source": 343,
-        "target": 346,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1018",
-        "source": 346,
-        "target": 348,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1019",
-        "source": 348,
-        "target": 303,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1020",
-        "source": 345,
-        "target": 304,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1021",
-        "source": 304,
-        "target": 348,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1022",
-        "source": 348,
-        "target": 347,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1023",
-        "source": 347,
-        "target": 345,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1024",
-        "source": 349,
-        "target": 345,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1025",
-        "source": 345,
-        "target": 306,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1026",
-        "source": 306,
-        "target": 350,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1027",
-        "source": 350,
-        "target": 349,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1028",
-        "source": 351,
-        "target": 347,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1029",
-        "source": 347,
-        "target": 349,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1030",
-        "source": 349,
-        "target": 352,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1031",
-        "source": 352,
-        "target": 351,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1032",
-        "source": 308,
-        "target": 348,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1033",
-        "source": 348,
-        "target": 351,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1034",
-        "source": 351,
-        "target": 353,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1035",
-        "source": 353,
-        "target": 308,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1036",
-        "source": 350,
-        "target": 309,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1037",
-        "source": 309,
-        "target": 353,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1038",
-        "source": 353,
-        "target": 352,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1039",
-        "source": 352,
-        "target": 350,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1040",
-        "source": 354,
-        "target": 350,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1041",
-        "source": 350,
-        "target": 311,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1042",
-        "source": 311,
-        "target": 355,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1043",
-        "source": 355,
-        "target": 354,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1044",
-        "source": 356,
-        "target": 352,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1045",
-        "source": 352,
-        "target": 354,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1046",
-        "source": 354,
-        "target": 357,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1047",
-        "source": 357,
-        "target": 356,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1048",
-        "source": 313,
-        "target": 353,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1049",
-        "source": 353,
-        "target": 356,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1050",
-        "source": 356,
-        "target": 358,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1051",
-        "source": 358,
-        "target": 313,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1052",
-        "source": 355,
-        "target": 314,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1053",
-        "source": 314,
-        "target": 358,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1054",
-        "source": 358,
-        "target": 357,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1055",
-        "source": 357,
-        "target": 355,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1056",
-        "source": 359,
-        "target": 355,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1057",
-        "source": 355,
-        "target": 316,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1058",
-        "source": 316,
-        "target": 360,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1059",
-        "source": 360,
-        "target": 359,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1060",
-        "source": 361,
-        "target": 357,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1061",
-        "source": 357,
-        "target": 359,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1062",
-        "source": 359,
-        "target": 362,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1063",
-        "source": 362,
-        "target": 361,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1064",
-        "source": 318,
-        "target": 358,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1065",
-        "source": 358,
-        "target": 361,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1066",
-        "source": 361,
-        "target": 363,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1067",
-        "source": 363,
-        "target": 318,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1068",
-        "source": 360,
-        "target": 319,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1069",
-        "source": 319,
-        "target": 363,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1070",
-        "source": 363,
-        "target": 362,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1071",
-        "source": 362,
-        "target": 360,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1072",
-        "source": 364,
-        "target": 360,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1073",
-        "source": 360,
-        "target": 321,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1074",
-        "source": 321,
-        "target": 365,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1075",
-        "source": 365,
-        "target": 364,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1076",
-        "source": 366,
-        "target": 362,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1077",
-        "source": 362,
-        "target": 364,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1078",
-        "source": 364,
-        "target": 367,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1079",
-        "source": 367,
-        "target": 366,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1080",
-        "source": 323,
-        "target": 363,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1081",
-        "source": 363,
-        "target": 366,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1082",
-        "source": 366,
-        "target": 368,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1083",
-        "source": 368,
-        "target": 323,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1084",
-        "source": 365,
-        "target": 324,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1085",
-        "source": 324,
-        "target": 368,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1086",
-        "source": 368,
-        "target": 367,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1087",
-        "source": 367,
-        "target": 365,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1088",
-        "source": 369,
-        "target": 370,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1089",
-        "source": 370,
-        "target": 0,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1090",
-        "source": 0,
-        "target": 371,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1091",
-        "source": 371,
-        "target": 369,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1092",
-        "source": 372,
-        "target": 373,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1093",
-        "source": 373,
-        "target": 369,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1094",
-        "source": 369,
-        "target": 374,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1095",
-        "source": 374,
-        "target": 372,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1096",
-        "source": 4,
-        "target": 375,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1097",
-        "source": 375,
-        "target": 372,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1098",
-        "source": 372,
-        "target": 376,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1099",
-        "source": 376,
-        "target": 4,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1100",
-        "source": 375,
-        "target": 5,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1101",
-        "source": 5,
-        "target": 370,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1102",
-        "source": 370,
-        "target": 373,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1103",
-        "source": 373,
-        "target": 375,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1104",
-        "source": 374,
-        "target": 371,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1105",
-        "source": 371,
-        "target": 6,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1106",
-        "source": 6,
-        "target": 376,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1107",
-        "source": 376,
-        "target": 374,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1108",
-        "source": 377,
-        "target": 371,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1109",
-        "source": 371,
-        "target": 12,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1110",
-        "source": 12,
-        "target": 378,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1111",
-        "source": 378,
-        "target": 377,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1112",
-        "source": 379,
-        "target": 374,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1113",
-        "source": 374,
-        "target": 377,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1114",
-        "source": 377,
-        "target": 380,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1115",
-        "source": 380,
-        "target": 379,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1116",
-        "source": 15,
-        "target": 376,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1117",
-        "source": 376,
-        "target": 379,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1118",
-        "source": 379,
-        "target": 381,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1119",
-        "source": 381,
-        "target": 15,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1120",
-        "source": 380,
-        "target": 378,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1121",
-        "source": 378,
-        "target": 16,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1122",
-        "source": 16,
-        "target": 381,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1123",
-        "source": 381,
-        "target": 380,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1124",
-        "source": 382,
-        "target": 378,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1125",
-        "source": 378,
-        "target": 20,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1126",
-        "source": 20,
-        "target": 383,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1127",
-        "source": 383,
-        "target": 382,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1128",
-        "source": 384,
-        "target": 380,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1129",
-        "source": 380,
-        "target": 382,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1130",
-        "source": 382,
-        "target": 385,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1131",
-        "source": 385,
-        "target": 384,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1132",
-        "source": 23,
-        "target": 381,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1133",
-        "source": 381,
-        "target": 384,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1134",
-        "source": 384,
-        "target": 386,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1135",
-        "source": 386,
-        "target": 23,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1136",
-        "source": 385,
-        "target": 383,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1137",
-        "source": 383,
-        "target": 24,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1138",
-        "source": 24,
-        "target": 386,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1139",
-        "source": 386,
-        "target": 385,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1140",
-        "source": 387,
-        "target": 383,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1141",
-        "source": 383,
-        "target": 28,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1142",
-        "source": 28,
-        "target": 388,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1143",
-        "source": 388,
-        "target": 387,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1144",
-        "source": 389,
-        "target": 385,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1145",
-        "source": 385,
-        "target": 387,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1146",
-        "source": 387,
-        "target": 390,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1147",
-        "source": 390,
-        "target": 389,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1148",
-        "source": 31,
-        "target": 386,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1149",
-        "source": 386,
-        "target": 389,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1150",
-        "source": 389,
-        "target": 391,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1151",
-        "source": 391,
-        "target": 31,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1152",
-        "source": 390,
-        "target": 388,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1153",
-        "source": 388,
-        "target": 32,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1154",
-        "source": 32,
-        "target": 391,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1155",
-        "source": 391,
-        "target": 390,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1156",
-        "source": 392,
-        "target": 388,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1157",
-        "source": 388,
-        "target": 36,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1158",
-        "source": 36,
-        "target": 393,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1159",
-        "source": 393,
-        "target": 392,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1160",
-        "source": 394,
-        "target": 390,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1161",
-        "source": 390,
-        "target": 392,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1162",
-        "source": 392,
-        "target": 395,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1163",
-        "source": 395,
-        "target": 394,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1164",
-        "source": 39,
-        "target": 391,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1165",
-        "source": 391,
-        "target": 394,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1166",
-        "source": 394,
-        "target": 396,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1167",
-        "source": 396,
-        "target": 39,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1168",
-        "source": 395,
-        "target": 393,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1169",
-        "source": 393,
-        "target": 40,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1170",
-        "source": 40,
-        "target": 396,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1171",
-        "source": 396,
-        "target": 395,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1172",
-        "source": 397,
-        "target": 393,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1173",
-        "source": 393,
-        "target": 44,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1174",
-        "source": 44,
-        "target": 398,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1175",
-        "source": 398,
-        "target": 397,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1176",
-        "source": 399,
-        "target": 395,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1177",
-        "source": 395,
-        "target": 397,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1178",
-        "source": 397,
-        "target": 400,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1179",
-        "source": 400,
-        "target": 399,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1180",
-        "source": 47,
-        "target": 396,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1181",
-        "source": 396,
-        "target": 399,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1182",
-        "source": 399,
-        "target": 401,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1183",
-        "source": 401,
-        "target": 47,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1184",
-        "source": 400,
-        "target": 398,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1185",
-        "source": 398,
-        "target": 48,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1186",
-        "source": 48,
-        "target": 401,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1187",
-        "source": 401,
-        "target": 400,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1188",
-        "source": 402,
-        "target": 398,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1189",
-        "source": 398,
-        "target": 52,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1190",
-        "source": 52,
-        "target": 403,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1191",
-        "source": 403,
-        "target": 402,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1192",
-        "source": 404,
-        "target": 400,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1193",
-        "source": 400,
-        "target": 402,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1194",
-        "source": 402,
-        "target": 405,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1195",
-        "source": 405,
-        "target": 404,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1196",
-        "source": 55,
-        "target": 401,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1197",
-        "source": 401,
-        "target": 404,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1198",
-        "source": 404,
-        "target": 406,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1199",
-        "source": 406,
-        "target": 55,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1200",
-        "source": 405,
-        "target": 403,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1201",
-        "source": 403,
-        "target": 56,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1202",
-        "source": 56,
-        "target": 406,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1203",
-        "source": 406,
-        "target": 405,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1204",
-        "source": 407,
-        "target": 403,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1205",
-        "source": 403,
-        "target": 60,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1206",
-        "source": 60,
-        "target": 408,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1207",
-        "source": 408,
-        "target": 407,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1208",
-        "source": 409,
-        "target": 405,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1209",
-        "source": 405,
-        "target": 407,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1210",
-        "source": 407,
-        "target": 410,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1211",
-        "source": 410,
-        "target": 409,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1212",
-        "source": 63,
-        "target": 406,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1213",
-        "source": 406,
-        "target": 409,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1214",
-        "source": 409,
-        "target": 411,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1215",
-        "source": 411,
-        "target": 63,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1216",
-        "source": 410,
-        "target": 408,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1217",
-        "source": 408,
-        "target": 64,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1218",
-        "source": 64,
-        "target": 411,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1219",
-        "source": 411,
-        "target": 410,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1220",
-        "source": 412,
-        "target": 413,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1221",
-        "source": 413,
-        "target": 372,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1222",
-        "source": 372,
-        "target": 414,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1223",
-        "source": 414,
-        "target": 412,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1224",
-        "source": 68,
-        "target": 415,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1225",
-        "source": 415,
-        "target": 412,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1226",
-        "source": 412,
-        "target": 416,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1227",
-        "source": 416,
-        "target": 68,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1228",
-        "source": 415,
-        "target": 69,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1229",
-        "source": 69,
-        "target": 375,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1230",
-        "source": 375,
-        "target": 413,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1231",
-        "source": 413,
-        "target": 415,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1232",
-        "source": 414,
-        "target": 376,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1233",
-        "source": 376,
-        "target": 70,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1234",
-        "source": 70,
-        "target": 416,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1235",
-        "source": 416,
-        "target": 414,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1236",
-        "source": 417,
-        "target": 414,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1237",
-        "source": 414,
-        "target": 379,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1238",
-        "source": 379,
-        "target": 418,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1239",
-        "source": 418,
-        "target": 417,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1240",
-        "source": 76,
-        "target": 416,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1241",
-        "source": 416,
-        "target": 417,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1242",
-        "source": 417,
-        "target": 419,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1243",
-        "source": 419,
-        "target": 76,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1244",
-        "source": 418,
-        "target": 381,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1245",
-        "source": 381,
-        "target": 77,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1246",
-        "source": 77,
-        "target": 419,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1247",
-        "source": 419,
-        "target": 418,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1248",
-        "source": 420,
-        "target": 418,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1249",
-        "source": 418,
-        "target": 384,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1250",
-        "source": 384,
-        "target": 421,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1251",
-        "source": 421,
-        "target": 420,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1252",
-        "source": 81,
-        "target": 419,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1253",
-        "source": 419,
-        "target": 420,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1254",
-        "source": 420,
-        "target": 422,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1255",
-        "source": 422,
-        "target": 81,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1256",
-        "source": 421,
-        "target": 386,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1257",
-        "source": 386,
-        "target": 82,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1258",
-        "source": 82,
-        "target": 422,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1259",
-        "source": 422,
-        "target": 421,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1260",
-        "source": 423,
-        "target": 421,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1261",
-        "source": 421,
-        "target": 389,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1262",
-        "source": 389,
-        "target": 424,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1263",
-        "source": 424,
-        "target": 423,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1264",
-        "source": 86,
-        "target": 422,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1265",
-        "source": 422,
-        "target": 423,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1266",
-        "source": 423,
-        "target": 425,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1267",
-        "source": 425,
-        "target": 86,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1268",
-        "source": 424,
-        "target": 391,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1269",
-        "source": 391,
-        "target": 87,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1270",
-        "source": 87,
-        "target": 425,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1271",
-        "source": 425,
-        "target": 424,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1272",
-        "source": 426,
-        "target": 424,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1273",
-        "source": 424,
-        "target": 394,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1274",
-        "source": 394,
-        "target": 427,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1275",
-        "source": 427,
-        "target": 426,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1276",
-        "source": 91,
-        "target": 425,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1277",
-        "source": 425,
-        "target": 426,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1278",
-        "source": 426,
-        "target": 428,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1279",
-        "source": 428,
-        "target": 91,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1280",
-        "source": 427,
-        "target": 396,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1281",
-        "source": 396,
-        "target": 92,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1282",
-        "source": 92,
-        "target": 428,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1283",
-        "source": 428,
-        "target": 427,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1284",
-        "source": 429,
-        "target": 427,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1285",
-        "source": 427,
-        "target": 399,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1286",
-        "source": 399,
-        "target": 430,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1287",
-        "source": 430,
-        "target": 429,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1288",
-        "source": 96,
-        "target": 428,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1289",
-        "source": 428,
-        "target": 429,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1290",
-        "source": 429,
-        "target": 431,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1291",
-        "source": 431,
-        "target": 96,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1292",
-        "source": 430,
-        "target": 401,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1293",
-        "source": 401,
-        "target": 97,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1294",
-        "source": 97,
-        "target": 431,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1295",
-        "source": 431,
-        "target": 430,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1296",
-        "source": 432,
-        "target": 430,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1297",
-        "source": 430,
-        "target": 404,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1298",
-        "source": 404,
-        "target": 433,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1299",
-        "source": 433,
-        "target": 432,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1300",
-        "source": 101,
-        "target": 431,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1301",
-        "source": 431,
-        "target": 432,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1302",
-        "source": 432,
-        "target": 434,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1303",
-        "source": 434,
-        "target": 101,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1304",
-        "source": 433,
-        "target": 406,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1305",
-        "source": 406,
-        "target": 102,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1306",
-        "source": 102,
-        "target": 434,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1307",
-        "source": 434,
-        "target": 433,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1308",
-        "source": 435,
-        "target": 433,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1309",
-        "source": 433,
-        "target": 409,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1310",
-        "source": 409,
-        "target": 436,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1311",
-        "source": 436,
-        "target": 435,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1312",
-        "source": 106,
-        "target": 434,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1313",
-        "source": 434,
-        "target": 435,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1314",
-        "source": 435,
-        "target": 437,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1315",
-        "source": 437,
-        "target": 106,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1316",
-        "source": 436,
-        "target": 411,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1317",
-        "source": 411,
-        "target": 107,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1318",
-        "source": 107,
-        "target": 437,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1319",
-        "source": 437,
-        "target": 436,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1320",
-        "source": 438,
-        "target": 439,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1321",
-        "source": 439,
-        "target": 412,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1322",
-        "source": 412,
-        "target": 440,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1323",
-        "source": 440,
-        "target": 438,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1324",
-        "source": 111,
-        "target": 441,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1325",
-        "source": 441,
-        "target": 438,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1326",
-        "source": 438,
-        "target": 442,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1327",
-        "source": 442,
-        "target": 111,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1328",
-        "source": 441,
-        "target": 112,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1329",
-        "source": 112,
-        "target": 415,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1330",
-        "source": 415,
-        "target": 439,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1331",
-        "source": 439,
-        "target": 441,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1332",
-        "source": 440,
-        "target": 416,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1333",
-        "source": 416,
-        "target": 113,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1334",
-        "source": 113,
-        "target": 442,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1335",
-        "source": 442,
-        "target": 440,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1336",
-        "source": 443,
-        "target": 440,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1337",
-        "source": 440,
-        "target": 417,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1338",
-        "source": 417,
-        "target": 444,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1339",
-        "source": 444,
-        "target": 443,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1340",
-        "source": 119,
-        "target": 442,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1341",
-        "source": 442,
-        "target": 443,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1342",
-        "source": 443,
-        "target": 445,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1343",
-        "source": 445,
-        "target": 119,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1344",
-        "source": 444,
-        "target": 419,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1345",
-        "source": 419,
-        "target": 120,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1346",
-        "source": 120,
-        "target": 445,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1347",
-        "source": 445,
-        "target": 444,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1348",
-        "source": 446,
-        "target": 444,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1349",
-        "source": 444,
-        "target": 420,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1350",
-        "source": 420,
-        "target": 447,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1351",
-        "source": 447,
-        "target": 446,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1352",
-        "source": 124,
-        "target": 445,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1353",
-        "source": 445,
-        "target": 446,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1354",
-        "source": 446,
-        "target": 448,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1355",
-        "source": 448,
-        "target": 124,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1356",
-        "source": 447,
-        "target": 422,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1357",
-        "source": 422,
-        "target": 125,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1358",
-        "source": 125,
-        "target": 448,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1359",
-        "source": 448,
-        "target": 447,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1360",
-        "source": 449,
-        "target": 447,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1361",
-        "source": 447,
-        "target": 423,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1362",
-        "source": 423,
-        "target": 450,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1363",
-        "source": 450,
-        "target": 449,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1364",
-        "source": 129,
-        "target": 448,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1365",
-        "source": 448,
-        "target": 449,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1366",
-        "source": 449,
-        "target": 451,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1367",
-        "source": 451,
-        "target": 129,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1368",
-        "source": 450,
-        "target": 425,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1369",
-        "source": 425,
-        "target": 130,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1370",
-        "source": 130,
-        "target": 451,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1371",
-        "source": 451,
-        "target": 450,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1372",
-        "source": 452,
-        "target": 450,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1373",
-        "source": 450,
-        "target": 426,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1374",
-        "source": 426,
-        "target": 453,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1375",
-        "source": 453,
-        "target": 452,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1376",
-        "source": 134,
-        "target": 451,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1377",
-        "source": 451,
-        "target": 452,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1378",
-        "source": 452,
-        "target": 454,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1379",
-        "source": 454,
-        "target": 134,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1380",
-        "source": 453,
-        "target": 428,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1381",
-        "source": 428,
-        "target": 135,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1382",
-        "source": 135,
-        "target": 454,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1383",
-        "source": 454,
-        "target": 453,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1384",
-        "source": 455,
-        "target": 453,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1385",
-        "source": 453,
-        "target": 429,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1386",
-        "source": 429,
-        "target": 456,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1387",
-        "source": 456,
-        "target": 455,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1388",
-        "source": 139,
-        "target": 454,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1389",
-        "source": 454,
-        "target": 455,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1390",
-        "source": 455,
-        "target": 457,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1391",
-        "source": 457,
-        "target": 139,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1392",
-        "source": 456,
-        "target": 431,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1393",
-        "source": 431,
-        "target": 140,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1394",
-        "source": 140,
-        "target": 457,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1395",
-        "source": 457,
-        "target": 456,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1396",
-        "source": 458,
-        "target": 456,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1397",
-        "source": 456,
-        "target": 432,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1398",
-        "source": 432,
-        "target": 459,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1399",
-        "source": 459,
-        "target": 458,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1400",
-        "source": 144,
-        "target": 457,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1401",
-        "source": 457,
-        "target": 458,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1402",
-        "source": 458,
-        "target": 460,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1403",
-        "source": 460,
-        "target": 144,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1404",
-        "source": 459,
-        "target": 434,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1405",
-        "source": 434,
-        "target": 145,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1406",
-        "source": 145,
-        "target": 460,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1407",
-        "source": 460,
-        "target": 459,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1408",
-        "source": 461,
-        "target": 459,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1409",
-        "source": 459,
-        "target": 435,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1410",
-        "source": 435,
-        "target": 462,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1411",
-        "source": 462,
-        "target": 461,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1412",
-        "source": 149,
-        "target": 460,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1413",
-        "source": 460,
-        "target": 461,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1414",
-        "source": 461,
-        "target": 463,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1415",
-        "source": 463,
-        "target": 149,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1416",
-        "source": 462,
-        "target": 437,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1417",
-        "source": 437,
-        "target": 150,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1418",
-        "source": 150,
-        "target": 463,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1419",
-        "source": 463,
-        "target": 462,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1420",
-        "source": 464,
-        "target": 465,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1421",
-        "source": 465,
-        "target": 438,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1422",
-        "source": 438,
-        "target": 466,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1423",
-        "source": 466,
-        "target": 464,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1424",
-        "source": 154,
-        "target": 467,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1425",
-        "source": 467,
-        "target": 464,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1426",
-        "source": 464,
-        "target": 468,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1427",
-        "source": 468,
-        "target": 154,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1428",
-        "source": 467,
-        "target": 155,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1429",
-        "source": 155,
-        "target": 441,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1430",
-        "source": 441,
-        "target": 465,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1431",
-        "source": 465,
-        "target": 467,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1432",
-        "source": 466,
-        "target": 442,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1433",
-        "source": 442,
-        "target": 156,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1434",
-        "source": 156,
-        "target": 468,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1435",
-        "source": 468,
-        "target": 466,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1436",
-        "source": 469,
-        "target": 466,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1437",
-        "source": 466,
-        "target": 443,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1438",
-        "source": 443,
-        "target": 470,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1439",
-        "source": 470,
-        "target": 469,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1440",
-        "source": 162,
-        "target": 468,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1441",
-        "source": 468,
-        "target": 469,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1442",
-        "source": 469,
-        "target": 471,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1443",
-        "source": 471,
-        "target": 162,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1444",
-        "source": 470,
-        "target": 445,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1445",
-        "source": 445,
-        "target": 163,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1446",
-        "source": 163,
-        "target": 471,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1447",
-        "source": 471,
-        "target": 470,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1448",
-        "source": 472,
-        "target": 470,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1449",
-        "source": 470,
-        "target": 446,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1450",
-        "source": 446,
-        "target": 473,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1451",
-        "source": 473,
-        "target": 472,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1452",
-        "source": 167,
-        "target": 471,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1453",
-        "source": 471,
-        "target": 472,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1454",
-        "source": 472,
-        "target": 474,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1455",
-        "source": 474,
-        "target": 167,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1456",
-        "source": 473,
-        "target": 448,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1457",
-        "source": 448,
-        "target": 168,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1458",
-        "source": 168,
-        "target": 474,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1459",
-        "source": 474,
-        "target": 473,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1460",
-        "source": 475,
-        "target": 473,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1461",
-        "source": 473,
-        "target": 449,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1462",
-        "source": 449,
-        "target": 476,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1463",
-        "source": 476,
-        "target": 475,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1464",
-        "source": 172,
-        "target": 474,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1465",
-        "source": 474,
-        "target": 475,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1466",
-        "source": 475,
-        "target": 477,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1467",
-        "source": 477,
-        "target": 172,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1468",
-        "source": 476,
-        "target": 451,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1469",
-        "source": 451,
-        "target": 173,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1470",
-        "source": 173,
-        "target": 477,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1471",
-        "source": 477,
-        "target": 476,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1472",
-        "source": 478,
-        "target": 476,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1473",
-        "source": 476,
-        "target": 452,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1474",
-        "source": 452,
-        "target": 479,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1475",
-        "source": 479,
-        "target": 478,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1476",
-        "source": 177,
-        "target": 477,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1477",
-        "source": 477,
-        "target": 478,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1478",
-        "source": 478,
-        "target": 480,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1479",
-        "source": 480,
-        "target": 177,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1480",
-        "source": 479,
-        "target": 454,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1481",
-        "source": 454,
-        "target": 178,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1482",
-        "source": 178,
-        "target": 480,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1483",
-        "source": 480,
-        "target": 479,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1484",
-        "source": 481,
-        "target": 479,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1485",
-        "source": 479,
-        "target": 455,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1486",
-        "source": 455,
-        "target": 482,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1487",
-        "source": 482,
-        "target": 481,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1488",
-        "source": 182,
-        "target": 480,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1489",
-        "source": 480,
-        "target": 481,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1490",
-        "source": 481,
-        "target": 483,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1491",
-        "source": 483,
-        "target": 182,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1492",
-        "source": 482,
-        "target": 457,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1493",
-        "source": 457,
-        "target": 183,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1494",
-        "source": 183,
-        "target": 483,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1495",
-        "source": 483,
-        "target": 482,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1496",
-        "source": 484,
-        "target": 482,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1497",
-        "source": 482,
-        "target": 458,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1498",
-        "source": 458,
-        "target": 485,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1499",
-        "source": 485,
-        "target": 484,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1500",
-        "source": 187,
-        "target": 483,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1501",
-        "source": 483,
-        "target": 484,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1502",
-        "source": 484,
-        "target": 486,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1503",
-        "source": 486,
-        "target": 187,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1504",
-        "source": 485,
-        "target": 460,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1505",
-        "source": 460,
-        "target": 188,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1506",
-        "source": 188,
-        "target": 486,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1507",
-        "source": 486,
-        "target": 485,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1508",
-        "source": 487,
-        "target": 485,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1509",
-        "source": 485,
-        "target": 461,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1510",
-        "source": 461,
-        "target": 488,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1511",
-        "source": 488,
-        "target": 487,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1512",
-        "source": 192,
-        "target": 486,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1513",
-        "source": 486,
-        "target": 487,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1514",
-        "source": 487,
-        "target": 489,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1515",
-        "source": 489,
-        "target": 192,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1516",
-        "source": 488,
-        "target": 463,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1517",
-        "source": 463,
-        "target": 193,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1518",
-        "source": 193,
-        "target": 489,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1519",
-        "source": 489,
-        "target": 488,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1520",
-        "source": 490,
-        "target": 491,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1521",
-        "source": 491,
-        "target": 464,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1522",
-        "source": 464,
-        "target": 492,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1523",
-        "source": 492,
-        "target": 490,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1524",
-        "source": 197,
-        "target": 493,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1525",
-        "source": 493,
-        "target": 490,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1526",
-        "source": 490,
-        "target": 494,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1527",
-        "source": 494,
-        "target": 197,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1528",
-        "source": 493,
-        "target": 198,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1529",
-        "source": 198,
-        "target": 467,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1530",
-        "source": 467,
-        "target": 491,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1531",
-        "source": 491,
-        "target": 493,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1532",
-        "source": 492,
-        "target": 468,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1533",
-        "source": 468,
-        "target": 199,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1534",
-        "source": 199,
-        "target": 494,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1535",
-        "source": 494,
-        "target": 492,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1536",
-        "source": 495,
-        "target": 492,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1537",
-        "source": 492,
-        "target": 469,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1538",
-        "source": 469,
-        "target": 496,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1539",
-        "source": 496,
-        "target": 495,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1540",
-        "source": 205,
-        "target": 494,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1541",
-        "source": 494,
-        "target": 495,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1542",
-        "source": 495,
-        "target": 497,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1543",
-        "source": 497,
-        "target": 205,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1544",
-        "source": 496,
-        "target": 471,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1545",
-        "source": 471,
-        "target": 206,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1546",
-        "source": 206,
-        "target": 497,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1547",
-        "source": 497,
-        "target": 496,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1548",
-        "source": 498,
-        "target": 496,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1549",
-        "source": 496,
-        "target": 472,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1550",
-        "source": 472,
-        "target": 499,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1551",
-        "source": 499,
-        "target": 498,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1552",
-        "source": 210,
-        "target": 497,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1553",
-        "source": 497,
-        "target": 498,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1554",
-        "source": 498,
-        "target": 500,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1555",
-        "source": 500,
-        "target": 210,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1556",
-        "source": 499,
-        "target": 474,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1557",
-        "source": 474,
-        "target": 211,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1558",
-        "source": 211,
-        "target": 500,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1559",
-        "source": 500,
-        "target": 499,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1560",
-        "source": 501,
-        "target": 499,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1561",
-        "source": 499,
-        "target": 475,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1562",
-        "source": 475,
-        "target": 502,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1563",
-        "source": 502,
-        "target": 501,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1564",
-        "source": 215,
-        "target": 500,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1565",
-        "source": 500,
-        "target": 501,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1566",
-        "source": 501,
-        "target": 503,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1567",
-        "source": 503,
-        "target": 215,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1568",
-        "source": 502,
-        "target": 477,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1569",
-        "source": 477,
-        "target": 216,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1570",
-        "source": 216,
-        "target": 503,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1571",
-        "source": 503,
-        "target": 502,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1572",
-        "source": 504,
-        "target": 502,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1573",
-        "source": 502,
-        "target": 478,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1574",
-        "source": 478,
-        "target": 505,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1575",
-        "source": 505,
-        "target": 504,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1576",
-        "source": 220,
-        "target": 503,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1577",
-        "source": 503,
-        "target": 504,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1578",
-        "source": 504,
-        "target": 506,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1579",
-        "source": 506,
-        "target": 220,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1580",
-        "source": 505,
-        "target": 480,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1581",
-        "source": 480,
-        "target": 221,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1582",
-        "source": 221,
-        "target": 506,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1583",
-        "source": 506,
-        "target": 505,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1584",
-        "source": 507,
-        "target": 505,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1585",
-        "source": 505,
-        "target": 481,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1586",
-        "source": 481,
-        "target": 508,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1587",
-        "source": 508,
-        "target": 507,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1588",
-        "source": 225,
-        "target": 506,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1589",
-        "source": 506,
-        "target": 507,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1590",
-        "source": 507,
-        "target": 509,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1591",
-        "source": 509,
-        "target": 225,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1592",
-        "source": 508,
-        "target": 483,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1593",
-        "source": 483,
-        "target": 226,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1594",
-        "source": 226,
-        "target": 509,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1595",
-        "source": 509,
-        "target": 508,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1596",
-        "source": 510,
-        "target": 508,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1597",
-        "source": 508,
-        "target": 484,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1598",
-        "source": 484,
-        "target": 511,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1599",
-        "source": 511,
-        "target": 510,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1600",
-        "source": 230,
-        "target": 509,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1601",
-        "source": 509,
-        "target": 510,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1602",
-        "source": 510,
-        "target": 512,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1603",
-        "source": 512,
-        "target": 230,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1604",
-        "source": 511,
-        "target": 486,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1605",
-        "source": 486,
-        "target": 231,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1606",
-        "source": 231,
-        "target": 512,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1607",
-        "source": 512,
-        "target": 511,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1608",
-        "source": 513,
-        "target": 511,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1609",
-        "source": 511,
-        "target": 487,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1610",
-        "source": 487,
-        "target": 514,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1611",
-        "source": 514,
-        "target": 513,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1612",
-        "source": 235,
-        "target": 512,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1613",
-        "source": 512,
-        "target": 513,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1614",
-        "source": 513,
-        "target": 515,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1615",
-        "source": 515,
-        "target": 235,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1616",
-        "source": 514,
-        "target": 489,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1617",
-        "source": 489,
-        "target": 236,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1618",
-        "source": 236,
-        "target": 515,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1619",
-        "source": 515,
-        "target": 514,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1620",
-        "source": 516,
-        "target": 517,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1621",
-        "source": 517,
-        "target": 490,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1622",
-        "source": 490,
-        "target": 518,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1623",
-        "source": 518,
-        "target": 516,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1624",
-        "source": 240,
-        "target": 519,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1625",
-        "source": 519,
-        "target": 516,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1626",
-        "source": 516,
-        "target": 520,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1627",
-        "source": 520,
-        "target": 240,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1628",
-        "source": 519,
-        "target": 241,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1629",
-        "source": 241,
-        "target": 493,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1630",
-        "source": 493,
-        "target": 517,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1631",
-        "source": 517,
-        "target": 519,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1632",
-        "source": 518,
-        "target": 494,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1633",
-        "source": 494,
-        "target": 242,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1634",
-        "source": 242,
-        "target": 520,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1635",
-        "source": 520,
-        "target": 518,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1636",
-        "source": 521,
-        "target": 518,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1637",
-        "source": 518,
-        "target": 495,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1638",
-        "source": 495,
-        "target": 522,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1639",
-        "source": 522,
-        "target": 521,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1640",
-        "source": 248,
-        "target": 520,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1641",
-        "source": 520,
-        "target": 521,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1642",
-        "source": 521,
-        "target": 523,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1643",
-        "source": 523,
-        "target": 248,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1644",
-        "source": 522,
-        "target": 497,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1645",
-        "source": 497,
-        "target": 249,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1646",
-        "source": 249,
-        "target": 523,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1647",
-        "source": 523,
-        "target": 522,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1648",
-        "source": 524,
-        "target": 522,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1649",
-        "source": 522,
-        "target": 498,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1650",
-        "source": 498,
-        "target": 525,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1651",
-        "source": 525,
-        "target": 524,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1652",
-        "source": 253,
-        "target": 523,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1653",
-        "source": 523,
-        "target": 524,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1654",
-        "source": 524,
-        "target": 526,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1655",
-        "source": 526,
-        "target": 253,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1656",
-        "source": 525,
-        "target": 500,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1657",
-        "source": 500,
-        "target": 254,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1658",
-        "source": 254,
-        "target": 526,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1659",
-        "source": 526,
-        "target": 525,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1660",
-        "source": 527,
-        "target": 525,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1661",
-        "source": 525,
-        "target": 501,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1662",
-        "source": 501,
-        "target": 528,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1663",
-        "source": 528,
-        "target": 527,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1664",
-        "source": 258,
-        "target": 526,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1665",
-        "source": 526,
-        "target": 527,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1666",
-        "source": 527,
-        "target": 529,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1667",
-        "source": 529,
-        "target": 258,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1668",
-        "source": 528,
-        "target": 503,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1669",
-        "source": 503,
-        "target": 259,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1670",
-        "source": 259,
-        "target": 529,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1671",
-        "source": 529,
-        "target": 528,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1672",
-        "source": 530,
-        "target": 528,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1673",
-        "source": 528,
-        "target": 504,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1674",
-        "source": 504,
-        "target": 531,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1675",
-        "source": 531,
-        "target": 530,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1676",
-        "source": 263,
-        "target": 529,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1677",
-        "source": 529,
-        "target": 530,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1678",
-        "source": 530,
-        "target": 532,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1679",
-        "source": 532,
-        "target": 263,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1680",
-        "source": 531,
-        "target": 506,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1681",
-        "source": 506,
-        "target": 264,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1682",
-        "source": 264,
-        "target": 532,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1683",
-        "source": 532,
-        "target": 531,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1684",
-        "source": 533,
-        "target": 531,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1685",
-        "source": 531,
-        "target": 507,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1686",
-        "source": 507,
-        "target": 534,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1687",
-        "source": 534,
-        "target": 533,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1688",
-        "source": 268,
-        "target": 532,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1689",
-        "source": 532,
-        "target": 533,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1690",
-        "source": 533,
-        "target": 535,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1691",
-        "source": 535,
-        "target": 268,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1692",
-        "source": 534,
-        "target": 509,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1693",
-        "source": 509,
-        "target": 269,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1694",
-        "source": 269,
-        "target": 535,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1695",
-        "source": 535,
-        "target": 534,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1696",
-        "source": 536,
-        "target": 534,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1697",
-        "source": 534,
-        "target": 510,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1698",
-        "source": 510,
-        "target": 537,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1699",
-        "source": 537,
-        "target": 536,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1700",
-        "source": 273,
-        "target": 535,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1701",
-        "source": 535,
-        "target": 536,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1702",
-        "source": 536,
-        "target": 538,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1703",
-        "source": 538,
-        "target": 273,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1704",
-        "source": 537,
-        "target": 512,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1705",
-        "source": 512,
-        "target": 274,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1706",
-        "source": 274,
-        "target": 538,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1707",
-        "source": 538,
-        "target": 537,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1708",
-        "source": 539,
-        "target": 537,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1709",
-        "source": 537,
-        "target": 513,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1710",
-        "source": 513,
-        "target": 540,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1711",
-        "source": 540,
-        "target": 539,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1712",
-        "source": 278,
-        "target": 538,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1713",
-        "source": 538,
-        "target": 539,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1714",
-        "source": 539,
-        "target": 541,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1715",
-        "source": 541,
-        "target": 278,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1716",
-        "source": 540,
-        "target": 515,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1717",
-        "source": 515,
-        "target": 279,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1718",
-        "source": 279,
-        "target": 541,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1719",
-        "source": 541,
-        "target": 540,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1720",
-        "source": 542,
-        "target": 543,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1721",
-        "source": 543,
-        "target": 516,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1722",
-        "source": 516,
-        "target": 544,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1723",
-        "source": 544,
-        "target": 542,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1724",
-        "source": 283,
-        "target": 545,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1725",
-        "source": 545,
-        "target": 542,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1726",
-        "source": 542,
-        "target": 546,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1727",
-        "source": 546,
-        "target": 283,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1728",
-        "source": 545,
-        "target": 284,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1729",
-        "source": 284,
-        "target": 519,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1730",
-        "source": 519,
-        "target": 543,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1731",
-        "source": 543,
-        "target": 545,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1732",
-        "source": 544,
-        "target": 520,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1733",
-        "source": 520,
-        "target": 285,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1734",
-        "source": 285,
-        "target": 546,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1735",
-        "source": 546,
-        "target": 544,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1736",
-        "source": 547,
-        "target": 544,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1737",
-        "source": 544,
-        "target": 521,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1738",
-        "source": 521,
-        "target": 548,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1739",
-        "source": 548,
-        "target": 547,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1740",
-        "source": 291,
-        "target": 546,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1741",
-        "source": 546,
-        "target": 547,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1742",
-        "source": 547,
-        "target": 549,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1743",
-        "source": 549,
-        "target": 291,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1744",
-        "source": 548,
-        "target": 523,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1745",
-        "source": 523,
-        "target": 292,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1746",
-        "source": 292,
-        "target": 549,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1747",
-        "source": 549,
-        "target": 548,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1748",
-        "source": 550,
-        "target": 548,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1749",
-        "source": 548,
-        "target": 524,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1750",
-        "source": 524,
-        "target": 551,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1751",
-        "source": 551,
-        "target": 550,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1752",
-        "source": 296,
-        "target": 549,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1753",
-        "source": 549,
-        "target": 550,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1754",
-        "source": 550,
-        "target": 552,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1755",
-        "source": 552,
-        "target": 296,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1756",
-        "source": 551,
-        "target": 526,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1757",
-        "source": 526,
-        "target": 297,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1758",
-        "source": 297,
-        "target": 552,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1759",
-        "source": 552,
-        "target": 551,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1760",
-        "source": 553,
-        "target": 551,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1761",
-        "source": 551,
-        "target": 527,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1762",
-        "source": 527,
-        "target": 554,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1763",
-        "source": 554,
-        "target": 553,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1764",
-        "source": 301,
-        "target": 552,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1765",
-        "source": 552,
-        "target": 553,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1766",
-        "source": 553,
-        "target": 555,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1767",
-        "source": 555,
-        "target": 301,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1768",
-        "source": 554,
-        "target": 529,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1769",
-        "source": 529,
-        "target": 302,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1770",
-        "source": 302,
-        "target": 555,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1771",
-        "source": 555,
-        "target": 554,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1772",
-        "source": 556,
-        "target": 554,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1773",
-        "source": 554,
-        "target": 530,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1774",
-        "source": 530,
-        "target": 557,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1775",
-        "source": 557,
-        "target": 556,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1776",
-        "source": 306,
-        "target": 555,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1777",
-        "source": 555,
-        "target": 556,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1778",
-        "source": 556,
-        "target": 558,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1779",
-        "source": 558,
-        "target": 306,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1780",
-        "source": 557,
-        "target": 532,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1781",
-        "source": 532,
-        "target": 307,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1782",
-        "source": 307,
-        "target": 558,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1783",
-        "source": 558,
-        "target": 557,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1784",
-        "source": 559,
-        "target": 557,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1785",
-        "source": 557,
-        "target": 533,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1786",
-        "source": 533,
-        "target": 560,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1787",
-        "source": 560,
-        "target": 559,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1788",
-        "source": 311,
-        "target": 558,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1789",
-        "source": 558,
-        "target": 559,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1790",
-        "source": 559,
-        "target": 561,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1791",
-        "source": 561,
-        "target": 311,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1792",
-        "source": 560,
-        "target": 535,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1793",
-        "source": 535,
-        "target": 312,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1794",
-        "source": 312,
-        "target": 561,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1795",
-        "source": 561,
-        "target": 560,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1796",
-        "source": 562,
-        "target": 560,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1797",
-        "source": 560,
-        "target": 536,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1798",
-        "source": 536,
-        "target": 563,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1799",
-        "source": 563,
-        "target": 562,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1800",
-        "source": 316,
-        "target": 561,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1801",
-        "source": 561,
-        "target": 562,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1802",
-        "source": 562,
-        "target": 564,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1803",
-        "source": 564,
-        "target": 316,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1804",
-        "source": 563,
-        "target": 538,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1805",
-        "source": 538,
-        "target": 317,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1806",
-        "source": 317,
-        "target": 564,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1807",
-        "source": 564,
-        "target": 563,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1808",
-        "source": 565,
-        "target": 563,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1809",
-        "source": 563,
-        "target": 539,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1810",
-        "source": 539,
-        "target": 566,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1811",
-        "source": 566,
-        "target": 565,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1812",
-        "source": 321,
-        "target": 564,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1813",
-        "source": 564,
-        "target": 565,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1814",
-        "source": 565,
-        "target": 567,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1815",
-        "source": 567,
-        "target": 321,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1816",
-        "source": 566,
-        "target": 541,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1817",
-        "source": 541,
-        "target": 322,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1818",
-        "source": 322,
-        "target": 567,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1819",
-        "source": 567,
-        "target": 566,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1820",
-        "source": 568,
-        "target": 569,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1821",
-        "source": 569,
-        "target": 542,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1822",
-        "source": 542,
-        "target": 570,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1823",
-        "source": 570,
-        "target": 568,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1824",
-        "source": 326,
-        "target": 571,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1825",
-        "source": 571,
-        "target": 568,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1826",
-        "source": 568,
-        "target": 572,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1827",
-        "source": 572,
-        "target": 326,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1828",
-        "source": 571,
-        "target": 327,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1829",
-        "source": 327,
-        "target": 545,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1830",
-        "source": 545,
-        "target": 569,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1831",
-        "source": 569,
-        "target": 571,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1832",
-        "source": 570,
-        "target": 546,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1833",
-        "source": 546,
-        "target": 328,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1834",
-        "source": 328,
-        "target": 572,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1835",
-        "source": 572,
-        "target": 570,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1836",
-        "source": 573,
-        "target": 570,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1837",
-        "source": 570,
-        "target": 547,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1838",
-        "source": 547,
-        "target": 574,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1839",
-        "source": 574,
-        "target": 573,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1840",
-        "source": 334,
-        "target": 572,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1841",
-        "source": 572,
-        "target": 573,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1842",
-        "source": 573,
-        "target": 575,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1843",
-        "source": 575,
-        "target": 334,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1844",
-        "source": 574,
-        "target": 549,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1845",
-        "source": 549,
-        "target": 335,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1846",
-        "source": 335,
-        "target": 575,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1847",
-        "source": 575,
-        "target": 574,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1848",
-        "source": 576,
-        "target": 574,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1849",
-        "source": 574,
-        "target": 550,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1850",
-        "source": 550,
-        "target": 577,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1851",
-        "source": 577,
-        "target": 576,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1852",
-        "source": 339,
-        "target": 575,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1853",
-        "source": 575,
-        "target": 576,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1854",
-        "source": 576,
-        "target": 578,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1855",
-        "source": 578,
-        "target": 339,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1856",
-        "source": 577,
-        "target": 552,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1857",
-        "source": 552,
-        "target": 340,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1858",
-        "source": 340,
-        "target": 578,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1859",
-        "source": 578,
-        "target": 577,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1860",
-        "source": 579,
-        "target": 577,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1861",
-        "source": 577,
-        "target": 553,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1862",
-        "source": 553,
-        "target": 580,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1863",
-        "source": 580,
-        "target": 579,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1864",
-        "source": 344,
-        "target": 578,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1865",
-        "source": 578,
-        "target": 579,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1866",
-        "source": 579,
-        "target": 581,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1867",
-        "source": 581,
-        "target": 344,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1868",
-        "source": 580,
-        "target": 555,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1869",
-        "source": 555,
-        "target": 345,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1870",
-        "source": 345,
-        "target": 581,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1871",
-        "source": 581,
-        "target": 580,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1872",
-        "source": 582,
-        "target": 580,
-        "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
-        },
-        "stress": 0,
-        "sourceNodalCoordinate": 0,
-        "targetNodalCoordinate": 0
-      },
-      {
-        "id": "e1873",
-        "source": 580,
-        "target": 556,
+        "id": "e5",
+        "source": 5,
+        "target": 4,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1874",
-        "source": 556,
-        "target": 583,
+        "id": "e6",
+        "source": 5,
+        "target": 1,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1875",
-        "source": 583,
-        "target": 582,
+        "id": "e7",
+        "source": 6,
+        "target": 2,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1876",
-        "source": 349,
-        "target": 581,
+        "id": "e8",
+        "source": 6,
+        "target": 4,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1877",
-        "source": 581,
-        "target": 582,
+        "id": "e9",
+        "source": 7,
+        "target": 6,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1878",
-        "source": 582,
-        "target": 584,
+        "id": "e10",
+        "source": 7,
+        "target": 3,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1879",
-        "source": 584,
-        "target": 349,
+        "id": "e11",
+        "source": 7,
+        "target": 5,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1880",
-        "source": 583,
-        "target": 558,
+        "id": "e12",
+        "source": 8,
+        "target": 4,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1881",
-        "source": 558,
-        "target": 350,
+        "id": "e13",
+        "source": 9,
+        "target": 8,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1882",
-        "source": 350,
-        "target": 584,
+        "id": "e14",
+        "source": 9,
+        "target": 5,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1883",
-        "source": 584,
-        "target": 583,
+        "id": "e15",
+        "source": 10,
+        "target": 6,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1884",
-        "source": 585,
-        "target": 583,
+        "id": "e16",
+        "source": 10,
+        "target": 8,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1885",
-        "source": 583,
-        "target": 559,
+        "id": "e17",
+        "source": 11,
+        "target": 10,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1886",
-        "source": 559,
-        "target": 586,
+        "id": "e18",
+        "source": 11,
+        "target": 7,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1887",
-        "source": 586,
-        "target": 585,
+        "id": "e19",
+        "source": 11,
+        "target": 9,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1888",
-        "source": 354,
-        "target": 584,
+        "id": "e20",
+        "source": 12,
+        "target": 8,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1889",
-        "source": 584,
-        "target": 585,
+        "id": "e21",
+        "source": 13,
+        "target": 12,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1890",
-        "source": 585,
-        "target": 587,
+        "id": "e22",
+        "source": 13,
+        "target": 9,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1891",
-        "source": 587,
-        "target": 354,
+        "id": "e23",
+        "source": 14,
+        "target": 10,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1892",
-        "source": 586,
-        "target": 561,
+        "id": "e24",
+        "source": 14,
+        "target": 12,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1893",
-        "source": 561,
-        "target": 355,
+        "id": "e25",
+        "source": 15,
+        "target": 14,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1894",
-        "source": 355,
-        "target": 587,
+        "id": "e26",
+        "source": 15,
+        "target": 11,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1895",
-        "source": 587,
-        "target": 586,
+        "id": "e27",
+        "source": 15,
+        "target": 13,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1896",
-        "source": 588,
-        "target": 586,
+        "id": "e28",
+        "source": 16,
+        "target": 12,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1897",
-        "source": 586,
-        "target": 562,
+        "id": "e29",
+        "source": 17,
+        "target": 16,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1898",
-        "source": 562,
-        "target": 589,
+        "id": "e30",
+        "source": 17,
+        "target": 13,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1899",
-        "source": 589,
-        "target": 588,
+        "id": "e31",
+        "source": 18,
+        "target": 14,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1900",
-        "source": 359,
-        "target": 587,
+        "id": "e32",
+        "source": 18,
+        "target": 16,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1901",
-        "source": 587,
-        "target": 588,
+        "id": "e33",
+        "source": 19,
+        "target": 18,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1902",
-        "source": 588,
-        "target": 590,
+        "id": "e34",
+        "source": 19,
+        "target": 15,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1903",
-        "source": 590,
-        "target": 359,
+        "id": "e35",
+        "source": 19,
+        "target": 17,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1904",
-        "source": 589,
-        "target": 564,
+        "id": "e36",
+        "source": 20,
+        "target": 16,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1905",
-        "source": 564,
-        "target": 360,
+        "id": "e37",
+        "source": 21,
+        "target": 20,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1906",
-        "source": 360,
-        "target": 590,
+        "id": "e38",
+        "source": 21,
+        "target": 17,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1907",
-        "source": 590,
-        "target": 589,
+        "id": "e39",
+        "source": 22,
+        "target": 18,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1908",
-        "source": 591,
-        "target": 589,
+        "id": "e40",
+        "source": 22,
+        "target": 20,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1909",
-        "source": 589,
-        "target": 565,
+        "id": "e41",
+        "source": 23,
+        "target": 22,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1910",
-        "source": 565,
-        "target": 592,
+        "id": "e42",
+        "source": 23,
+        "target": 19,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1911",
-        "source": 592,
-        "target": 591,
+        "id": "e43",
+        "source": 23,
+        "target": 21,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1912",
-        "source": 364,
-        "target": 590,
+        "id": "e44",
+        "source": 24,
+        "target": 20,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1913",
-        "source": 590,
-        "target": 591,
+        "id": "e45",
+        "source": 25,
+        "target": 24,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1914",
-        "source": 591,
-        "target": 593,
+        "id": "e46",
+        "source": 25,
+        "target": 21,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1915",
-        "source": 593,
-        "target": 364,
+        "id": "e47",
+        "source": 26,
+        "target": 22,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1916",
-        "source": 592,
-        "target": 567,
+        "id": "e48",
+        "source": 26,
+        "target": 24,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1917",
-        "source": 567,
-        "target": 365,
+        "id": "e49",
+        "source": 27,
+        "target": 26,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1918",
-        "source": 365,
-        "target": 593,
+        "id": "e50",
+        "source": 27,
+        "target": 23,
         "material": {
-          "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       },
       {
-        "id": "e1919",
-        "source": 593,
-        "target": 592,
+        "id": "e51",
+        "source": 27,
+        "target": 25,
         "material": {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         },
         "stress": 0,
         "sourceNodalCoordinate": 0,
         "targetNodalCoordinate": 0
       }
     ],
-    "ndofs": 3564,
+    "ndofs": 168,
     "animation": {
       "showDisplacement": true,
       "exaggeration": 1,
@@ -60299,28 +2281,49 @@
       "colorMap": 0,
       "exaggeration": 1
     },
-    "hierarchical": false,
-    "voxelSize": 75,
+    "hierarchical": true,
+    "voxelSize": 0.001,
     "materials": [
       [
         {
           "max": {
-            "x": 1125,
-            "z": 1125,
-            "y": 1125
+            "x": 0.01,
+            "z": 0.01,
+            "y": 0.01
           },
           "min": {
-            "x": -1125,
-            "z": -1125,
-            "y": -1125
+            "x": -0.01,
+            "z": -0.01,
+            "y": -0.01
           }
         },
         {
           "cTE": 0,
-          "poissonRatio": 0.35,
-          "density": 0.028,
-          "area": 5.6644,
-          "stiffness": 2000
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
+        }
+      ],
+      [
+        {
+          "max": {
+            "x": 0.007,
+            "z": 0.002,
+            "y": 0.002
+          },
+          "min": {
+            "x": 0,
+            "z": 0,
+            "y": 0.001
+          }
+        },
+        {
+          "cTE": 0.2,
+          "poissonRatio": 0,
+          "density": 1000,
+          "area": 0.000001,
+          "stiffness": 1000000
         }
       ]
     ],
@@ -60328,9 +2331,9 @@
       [
         {
           "max": {
-            "x": 150,
-            "z": 600,
-            "y": 18.75
+            "x": 0.001,
+            "z": 0.002,
+            "y": 0.002
           },
           "min": {
             "x": 0,
@@ -60352,30 +2355,30 @@
       [
         {
           "max": {
-            "x": 150,
-            "z": 600,
-            "y": 600
+            "x": 0.007,
+            "z": 0.002,
+            "y": 0.002
           },
           "min": {
-            "x": 0,
+            "x": 0.006,
             "z": 0,
-            "y": 581.25
+            "y": 0
           }
         },
         {
           "x": 0,
           "z": 0,
-          "y": -0.5
+          "y": 0
         }
       ]
     ],
     "fixedDisplacements": [],
-    "numTimeSteps": 50000,
-    "maxNumFiles": 300,
+    "numTimeSteps": 200,
+    "maxNumFiles": 200,
     "poisson": false,
-    "scale": 1,
+    "scale": 10000,
     "linear": true,
-    "globalDamping": 0.001,
-    "thermal": false
+    "globalDamping": 0.15,
+    "thermal": true
   }
 }
\ No newline at end of file
diff --git a/json/tutorialInit.json b/json/tutorialInit.json
index 23ac381..7688be6 100644
--- a/json/tutorialInit.json
+++ b/json/tutorialInit.json
@@ -1 +1 @@
-{"setup":{"materials":[[{"max":{"x":1125,"z":1125,"y":1125},"min":{"x":-1125,"z":-1125,"y":-1125}},{"cTE":0.0,"poissonRatio":0.35,"density":0.028,"area":5.6644,"stiffness":2000.0}]],"poisson":false,"rhino":false,"latticeSizeY":8,"scale":1.0,"supports":[[{"max":{"x":150,"z":600,"y":18.75},"min":{"x":0.0,"z":0.0,"y":0.0}},[true,true,true,true,true,true]]],"thermal":false,"loads":[[{"max":{"x":150,"z":600,"y":600},"min":{"x":0,"z":0,"y":581.25}},{"x":0.0,"z":0.0,"y":-0.5}]],"maxNumFiles":300,"voxelSize":75,"numTimeSteps":50000,"fixedDisplacements":[],"linear":true,"latticeSizeX":2,"gridSize":15,"latticeSizeZ":8,"useVoxelList":false,"hierarchical":false,"globalDamping":0.001}}
\ No newline at end of file
+{"setup":{"materials":[[{"max":{"x":0.01,"z":0.01,"y":0.01},"min":{"x":-0.01,"z":-0.01,"y":-0.01}},{"cTE":0.0,"poissonRatio":0.0,"density":1000.0,"area":1.0e-6,"stiffness":1.0e6}],[{"max":{"x":0.007,"z":0.002,"y":0.002},"min":{"x":0,"z":0,"y":0.001}},{"cTE":0.2,"poissonRatio":0.0,"density":1000.0,"area":1.0e-6,"stiffness":1.0e6}]],"poisson":false,"rhino":false,"latticeSizeY":2,"scale":10000.0,"supports":[[{"max":{"x":0.001,"z":0.002,"y":0.002},"min":{"x":0,"z":0,"y":0}},[true,true,true,true,true,true]]],"thermal":true,"loads":[[{"max":{"x":0.007,"z":0.002,"y":0.002},"min":{"x":0.006,"z":0,"y":0}},{"x":0.0,"z":0.0,"y":0.0}]],"maxNumFiles":200,"voxelSize":0.001,"numTimeSteps":200,"fixedDisplacements":[],"linear":true,"latticeSizeX":7,"gridSize":10,"latticeSizeZ":2,"useVoxelList":false,"hierarchical":true,"globalDamping":0.15}}
\ No newline at end of file
diff --git a/julia/include/export.jl b/julia/include/export.jl
index de346e0..41b54e1 100644
--- a/julia/include/export.jl
+++ b/julia/include/export.jl
@@ -13,12 +13,16 @@ function updateDataAndSave!(metavoxel,setup,fileName,sys="GPU")
         N_position=Array(metavoxel["N_positionGPU"])
         N_angle=Array(metavoxel["N_angleGPU"])
         E_stress=Array(metavoxel["E_stressGPU"])
+        N_vel=Array(metavoxel["N_velGPU"])
+        N_velAngl=Array(metavoxel["N_velAnglGPU"])
     else
         # CPU
         N_displacement=Array(metavoxel["N_displacement"])
         N_position=Array(metavoxel["N_position"])
         N_angle=Array(metavoxel["N_angle"])
         E_stress=Array(metavoxel["E_stress"])
+        N_vel=Array(metavoxel["N_vel"])
+        N_velAngl=Array(metavoxel["N_velAngl"])
     end
     
     setup["viz"]["maxStress"]=maximum(E_stress)
@@ -56,6 +60,7 @@ function updateDataAndSave!(metavoxel,setup,fileName,sys="GPU")
             support[1]["max"]["z"]=support[1]["max"]["z"]*scale1
         end
     end
+
     if haskey(setup,"loads")
         loads         = setup["loads"]
         for load in loads
@@ -96,6 +101,16 @@ function updateDataAndSave!(metavoxel,setup,fileName,sys="GPU")
 	for node in nodes
         node["posTimeSteps"]=[]
         node["angTimeSteps"]=[]
+
+        node["vel"]=Dict()
+        node["vel"]["x"]= (N_vel[i].x)
+        node["vel"]["y"]= (N_vel[i].y)
+        node["vel"]["z"]= (N_vel[i].z)
+
+        node["velAngl"]=Dict()
+        node["velAngl"]["x"]= (N_velAngl[i].x)
+        node["velAngl"]["y"]= (N_velAngl[i].y)
+        node["velAngl"]["z"]= (N_velAngl[i].z)
         # node["degrees_of_freedom"]=""
         
         if !haskey(setup,"multiscale") || node["parent"]==""
diff --git a/julia/include/forces.jl b/julia/include/forces.jl
index ec67842..b86a6a6 100644
--- a/julia/include/forces.jl
+++ b/julia/include/forces.jl
@@ -4,7 +4,7 @@
 
 # BASED ON https://github.com/jonhiller/Voxelyze
 
-function force(i,N_intForce,N_orient,N_force,N_position,N_currentPosition,currentTimeStep,material,linMom) 
+function force(i,N_intForce,N_orient,N_force,N_position,N_currentPosition,currentTimeStep,material,linMom,N_vel) 
     # forces from internal bonds
     totalForce=Vector3(0,0,0)
     # new THREE.Vector3(node.force.x,node.force.y,node.force.z);
@@ -44,7 +44,7 @@ function force(i,N_intForce,N_orient,N_force,N_position,N_currentPosition,curren
 
 
     vel=linMom*Vector3((massInverse*globalDampingTranslateC),(massInverse*globalDampingTranslateC),(massInverse*globalDampingTranslateC))
-    
+    N_vel[i]=vel
 
     # x=vel.x*1e0/globalDampingTranslateC
     # y=vel.y*1e0/globalDampingTranslateC
@@ -77,7 +77,7 @@ function force(i,N_intForce,N_orient,N_force,N_position,N_currentPosition,curren
     return totalForce
 end
 
-function moment(intMoment,orient,moment,material,angMom) 
+function moment(i,intMoment,orient,moment,material,angMom,N_velAngl) 
     #moments from internal bonds
     totalMoment=Vector3(0,0,0)
     # for (int i=0; i<6; i++){ 
@@ -100,7 +100,7 @@ function moment(intMoment,orient,moment,material,angMom)
     globalDampingRotateC=material.zetaGlobal*_2xSqIxExSxSxS
     angularVelocity=angMom*Vector3(material.momentInertiaInverse*globalDampingRotateC,material.momentInertiaInverse*globalDampingRotateC,material.momentInertiaInverse*globalDampingRotateC)
     totalMoment= totalMoment-angularVelocity; #global damping
-
+    N_velAngl[i]=angularVelocity
 
     # x=totalMoment.x
     # y=totalMoment.y
diff --git a/julia/include/run.jl b/julia/include/run.jl
index 3245bc8..b513383 100644
--- a/julia/include/run.jl
+++ b/julia/include/run.jl
@@ -1,818 +1,829 @@
-# Amira Abdel-Rahman
-# (c) Massachusetts Institute of Technology 2020
-#################################################################
-function runMetaVoxels!(setup,folderPath,sys="GPU")
-
-    maxNumTimeSteps=setup["numTimeSteps"]
-    maxNumFiles=setup["maxNumFiles"]
-
-    saveEvery=round(maxNumTimeSteps/maxNumFiles)
-    maxNumFiles=round(maxNumTimeSteps/saveEvery)-1
-    setup["maxNumFiles"]=maxNumFiles
-
-    function initialize!(setup)
-        nodes      = setup["nodes"]
-        edges      = setup["edges"]
-
-        i=1
-        for node in nodes
-            if node["parent"]=="11" || node["parent"]=="" #to ignore child nodes that are there for visualization
-                # element=parse(Int,node["id"][2:end])
-                node["position"]["y"]=node["position"]["y"]+0.0
-                node["position"]["z"]=node["position"]["z"]+0.0
-                N_position[i]=Vector3(node["position"]["x"],node["position"]["y"],node["position"]["z"])
-                N_restrained[i]=DOF(node["restrained_degrees_of_freedom"][1],node["restrained_degrees_of_freedom"][2],node["restrained_degrees_of_freedom"][3],node["restrained_degrees_of_freedom"][4],node["restrained_degrees_of_freedom"][5],node["restrained_degrees_of_freedom"][6])
-                N_displacement[i]=Vector3(node["displacement"]["x"],node["displacement"]["y"],node["displacement"]["z"])
-                N_angle[i]=Vector3(node["angle"]["x"],node["angle"]["y"],node["angle"]["z"])
-                N_force[i]=Vector3(node["force"]["x"],node["force"]["y"],node["force"]["z"])
-                N_fixedDisplacement[i]=Vector3(node["fixedDisplacement"]["x"],node["fixedDisplacement"]["y"],node["fixedDisplacement"]["z"])
-                N_currPosition[i]=Vector3(node["position"]["x"],node["position"]["y"],node["position"]["z"])
-
-                E=2000
-                E = node["material"]["stiffness"]  # MPa
-                nu=0.0
-                if haskey(node["material"], "poissonRatio") #todo change material data to nodes
-                    nu= node["material"]["poissonRatio"]
-                end
-                # println(nu)
-                
-                rho=1e3
-                rho = node["material"]["density"]  # MPa
-
-                momentInertiaInverse=1.92e-6
-                inertia=1/momentInertiaInverse
-
-
-                zetaInternal=1.0
-                zetaGlobal=0.2
-                if haskey(setup,"globalDamping")
-                    zetaGlobal=setup["globalDamping"]
-                end
-                zetaCollision=0.0
-                muStatic= 2.0
-                muKinetic= 0.1
-                nomSize=round(sqrt(node["material"]["area"] );digits=10)
-                # nomSize=nomSize*2.0 #why??
-                mass=round(nomSize*nomSize*nomSize *rho;digits=10)
-
-                
-                linear=true
-                poisson=false
-                if haskey(setup,"linear")
-                    linear=setup["linear"]
-                end
-                if haskey(setup,"poisson")
-                    poisson= setup["poisson"]
-                end
-                cTE=0.0 #Coefficient of thermal expansion
-                if haskey(setup,"thermal") # later change for node matrial data
-                    if setup["thermal"]
-                        cTE=node["material"]["cTE"]
-                    end
-                end
-                # print("poisson $poisson")
-                # epsilonFail=E*1000.0
-
-                scale =0
-                if  haskey(setup,"multiscale")
-                    if setup["multiscale"]
-                        scale=node["scale"]
-                    end
-                    nomSize=nomSize*scale
-                    mass=round(nomSize*nomSize*nomSize *rho;digits=10)
-                end
-                N_material[i]=     voxelMaterial(E, mass, nu, rho, zetaInternal, zetaGlobal, zetaCollision, muStatic, muKinetic, nomSize, linear, poisson, cTE, scale)
-                N_materialtmp[i] = voxelMaterial(E, mass, nu, rho, zetaInternal, zetaGlobal, zetaCollision, muStatic, muKinetic, nomSize, linear, poisson, cTE, scale)
-
-
-                i=i+1
-            else
-                # node["position"]["x"]= node["position"]["x"]*setup["scale"] #for export
-                # node["position"]["y"]= node["position"]["y"]*setup["scale"] #for export
-                # node["position"]["z"]= node["position"]["z"]*setup["scale"] #for export
-                node["position"]["x"]= node["position"]["x"] #for export
-                node["position"]["y"]= node["position"]["y"] #for export
-                node["position"]["z"]= node["position"]["z"] #for export
-            end
-        end 
-
-        i=1
-        for edge in edges
-            # element=parse(Int,edge["id"][2:end])
-
-            # find the nodes that the elements connects
-            fromNode = nodes[edge["source"]+1]
-            toNode = nodes[edge["target"]+1]
-
-            sourceRelPos=Vector3(0,0,0)
-            targetRelPos=Vector3(0,0,0)
-
-            if  haskey(setup,"multiscale")
-                E_sourceNodalCoordinate[i]=edge["sourceNodalCoordinate"]
-                E_targetNodalCoordinate[i]=edge["targetNodalCoordinate"]
-                sourceRelPos=getRelativePosition(E_sourceNodalCoordinate[i],setup["voxelSize"]/2.0)
-                targetRelPos=getRelativePosition(E_targetNodalCoordinate[i],setup["voxelSize"]/2.0)
-            end
-            
-            
-
-            node1 = [fromNode["position"]["x"]+sourceRelPos.x fromNode["position"]["y"]+sourceRelPos.y fromNode["position"]["z"]+sourceRelPos.z]
-            node2 = [toNode["position"]["x"]+targetRelPos.x toNode["position"]["y"]+targetRelPos.y toNode["position"]["z"]+targetRelPos.z]
-
-            length=norm(node2-node1)
-            axis=normalize(collect(Iterators.flatten(node2-node1))) # pre-calculate the axis
-
-            E_source[i]=edge["source"]+1
-            E_target[i]=edge["target"]+1
-            E_axis[i]=Vector3(axis[1],axis[2],axis[3])
-            E_currentRestLength[i]=length #?????? todo change    
-            
-            N_edgeID[E_source[i],N_currEdge[E_source[i]]]=i
-            N_edgeFirst[E_source[i],N_currEdge[E_source[i]]]=true
-            N_currEdge[E_source[i]]+=1
-
-            N_edgeID[E_target[i],N_currEdge[E_target[i]]]=i
-            N_edgeFirst[E_target[i],N_currEdge[E_target[i]]]=false
-            N_currEdge[E_target[i]]+=1
-            
-            E=edge["material"]["stiffness"]
-            E=(N_material[E_source[i]].E+N_material[E_target[i]].E)/2.0
-            mass=(N_material[E_source[i]].mass+N_material[E_target[i]].mass)/2.0 #not used anymore
-            nu=(N_material[E_source[i]].nu+N_material[E_target[i]].nu)/2.0
-            rho=edge["material"]["density"]
-            rho=(N_material[E_source[i]].rho+N_material[E_target[i]].rho)/2.0
-
-            E = (N_materialtmp[E_source[i]].E + N_materialtmp[E_target[i]].E) / 2.0
-            nu = (N_materialtmp[E_source[i]].nu + N_materialtmp[E_target[i]].nu) / 2.0
-            rho = edge["material"]["density"]
-            rho = (N_materialtmp[E_source[i]].rho + N_materialtmp[E_target[i]].rho) / 2.0
-            mass = length * rho * E_currentTransverseArea[i]
-
-
-            area=edge["material"]["area"]
-            # mass=1e-6
-            
-            loaded=0.0
-            if(haskey(edge, "loaded"))
-                loaded=edge["loaded"]
-            end
-
-            
-            
-
-
-            strainRatio=(N_material[E_source[i]].E / N_material[E_target[i]].E)
-            linear=(N_material[E_source[i]].linear && N_material[E_target[i]].linear)
-            poisson=(N_material[E_source[i]].poisson || N_material[E_target[i]].poisson)
-            # epsilonFail=(N_material[E_source[i]].epsilonFail+N_material[E_target[i]].epsilonFail)/2.0 #TODO CHANGE TO SMALLEST
-            b=sqrt(area)
-            h=sqrt(area)
-            E_currentTransverseArea[i]=b*h
-
-            linear=true
-            if haskey(setup,"linear")
-                linear=setup["linear"]
-            end
-            cTE=0.0 #Coefficient of thermal expansion
-            if haskey(edge,"cTE")
-                cTE=edge["cTE"]
-            end
-            cTE=N_material[E_source[i]].cTE+N_material[E_target[i]].cTE
-            if haskey(edge,"material")
-                if haskey(edge["material"],"cTE")
-                    if edge["material"]["cTE"]>0.0
-                        cTE=edge["material"]["cTE"]
-                    end
-                end
-            end
-            
-            E_material[i]=edgeMaterial(E,mass,nu,rho,b,h,length,loaded,strainRatio,linear,poisson,cTE)
-
-            #non linear from data
-            # todo cleanup
-            if !linear
-                plasticModulus=1e4
-                # yieldStress=1e5
-                # failureStress=-1
-
-                yieldStress=1e5
-                # failureStress=23e4
-                failureStress=1.1e5
-                # E_material[i]=setModelBilinear(E_material[i], plasticModulus, yieldStress,failureStress)
-                
-                
-                strainData=[0.0, 0.1,0.5, 1.1]
-                stressData=[0.0, 100000.0,500000.0, 110000.0]
-
-                strainData=[0.0, 0.1, 0.5, 0.9, -1]
-                stressData=[0.0, 100000.0,500000.0,450000.0, -1]
-
-
-                strainData=[0.0, 0.1, 0.3, 0.7, -1]
-                stressData=[0.0, 1e5,5e5,6e5, -1]
-
-                strainData=[0.0, 0.1, 0.5, 0.9, -1]
-                stressData=[0.0, 1e5,5e5,10e5, -1]
-
-                strainData=[0.0,0.1,0.25, 0.3, 0.95, -1]
-                stressData=[0.0,1e5,25e4, 5e5, 6e5, -1]
-
-                strainData=[0.0,0.1,0.25, 0.3, 0.5, -1]
-                stressData=[0.0,1e5,25e4, 25e4, 25e4, -1]
-
-
-                strainData=[0.0, 1.0*0.25, 1.0*0.5, 1.0*0.75, 1.0*0.9, -1]
-                stressData=[0.0, 1e5*0.25, 1e5*0.5, 1e5*0.75, 1e5*0.9, -1]
-
-                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.75, -1]
-                stressData=[0.0, 1e5*0.1, 1e5*0.2, 5e5*0.4, 5e5*0.75, -1]
-
-
-                dataPointCount=8
-
-                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.7, 1.0*0.9, -1]
-                stressData=[0.0, 1e5*0.1, 1e5*0.2, 2e5    , 3.6e5  , 5e5    , 7.2e5  , -1]
-
-
-                # strainData=[0.0, 1.0*0.1, 1.0*0.3, 1.0*0.5, 1.0*0.7, 1.0*0.9, 1.0*0.95, -1]
-                # youngsData=[0.0,     0.0,      1e5,    9e5,     8e5,   1.3e6,  1.15e6,4e5,1e6]
-
-                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95, 1.0]
-                youngsData=[0.0,     0.0,      1e6,    1e6,     1e6,     9e5,      8e5, 7e5]
-                stressData=[0.0, 1e5*0.1,  1e5*0.2, 1e5*2.2, 1e5*4.1, 1e5*6.0, 1e5*7.1, 1e5*7.5]
-
-                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95, 1.0]
-                youngsData=[0.0,     0.0,      1e6,    1e6,     1e6,     9e5,      8e5, 7e5]
-                
-
-
-                stressData=[0.0, 1e5*0.1, 1e5*0.2]
-                for i= 4:dataPointCount
-                    append!(stressData,[youngsData[i]*(strainData[i]-strainData[i-1])+stressData[i-1]])
-                end
-                # append!(stressData,[-1])
-                # append!(stressData,[-1])
-
-                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95, -1.0]
-                youngsData=[0.0,     0.0,      1e4,    5e4,     1e5,     5e5,      8e5, 1e5]
-                
-
-
-                stressData=[0.0, 1e5*0.1]
-                for i= 3:dataPointCount-1
-                    append!(stressData,[youngsData[i]*(strainData[i]-strainData[i-1])+stressData[i-1]])
-                end
-
-                append!(stressData,[-1])
-
-
-                
-                if i==1
-                    println(stressData)
-                end
-
-                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95,     -1.0]
-                stressData=[0.0,     0.05,    0.1,    0.4,    0.6,     0.9,       1.2, -1.0e-5].*1e5
-
-                strainData=[0.0, 1.0*0.05, 1.0*0.1, 1.0*0.2, 1.0*0.3, 1.0*0.4, 1.0*0.5, -1]
-                stressData=[0.0, 1e5*0.05, 1e5*0.1, 1e5*0.2, 1e5*0.3, 1e5*0.4, 1e5*0.5, -1]
-
-                strainData=[0.0, 0.1, 0.3, 0.7,0.75,0.8, 0.9, -1]
-                stressData=[0.0, 1e5, 5e5, 6e5,6.7e5,7e5,7.5e5, -1]
-
-                dataPointCount=6
-
-                # strainData=[0.0, 0.2, 0.4,  0.7, 1.2, 1.8]
-                # stressData=[0.0, 2e5 ,4e5,  7e5, 10e5, 18e5]
-
-            
-
-                # strainData=[0.0, 0.2, 0.3,  0.6, 0.9, 1.8]
-                # stressData=[0.0, 2e5 ,3e5,  8e5, 11e5, 18e5]
-
-                # strainData=[0.0, 0.2, 0.4,  0.6, 0.8, 1.8]
-                # stressData=[0.0, 2e5 ,4e5,  9e5, 8e5, 10e5]
-
-                strainData=[0.0, 0.2, 0.4,  0.7, 1.2, 1.8]
-                stressData=[0.0, 2e5 ,4e5,  4.5e5, 5e5, 6e5]
-
-                strainData=[0.0, 0.1, 0.2,  0.5, 0.6, 1.2]
-                stressData=[0.0, 1e5 ,2e5,  2.5e5, 1.0e5, 0.7e5]
-
-                strainData=[0.0, 0.1, 0.2,  0.5, 0.8, 1.2]
-                stressData=[0.0, 1e5 ,2e5,  3.0e5, 7.0e5, 12e5]
-
-
-
-                # if i==1
-                #     strainn=0.1
-                #     nu=0.3
-                #     DataCount =dataPointCount
-                #     poisson=true
-                #     transverseStrainSumm=0.001
-
-                #     for i = 3:DataCount #(i=2; i<DataCount; i++) #go through each segment in the material model (skipping the first segment because it has already been handled.
-                #         println(i)
-                #         if (strainn <= strainData[i] || i==DataCount) #if in the segment ending with this point (or if this is the last point extrapolate out) 
-                #             Perc = (strainn-strainData[i-1])/(strainData[i]-strainData[i-1]);
-                #             println("Perc: $Perc")
-                #             basicStress = stressData[i-1] + Perc*(stressData[i]-stressData[i-1]);
-                #             println("basicStress: $basicStress")
-                #             if (!poisson || nu == 0.0) 
-                #                 basicStress;
-                #             else  #accounting for volumetric effects
-                #                 modulus = (stressData[i]-stressData[i-1])/(strainData[i]-strainData[i-1]);
-                #                 println("modulus: $modulus")
-                #                 modulusHat = modulus/((1.0-2.0*nu)*(1.0+nu));
-                #                 effectiveStrain = basicStress/modulus; #this is the strain at which a simple linear stress strain line would hit this point at the definied modulus
-                #                 effectiveTransverseStrainSum = transverseStrainSumm*(effectiveStrain/strainn);
-                #                 m=modulusHat*((1.0-nu)*effectiveStrain + nu*effectiveTransverseStrainSum);
-                #                 println("m: $m")
-                #                 println()
-                                
-                #             end
-                #         end
-                #     end
-                # end
-
-                
-
-
-                
-                E_material[i]=setModel(E_material[i],dataPointCount, strainData, stressData)
-                # println(E_material[i].strainData)
-                # println(E_material[i].stressData)
-                # println(E_material[i].epsilonFail)
-                # println(length)
-
-                
-            end
-
-
-            E_source[i]=edge["source"]+1
-            E_target[i]=edge["target"]+1
-            
-            i=i+1
-        end
-
-        ##fixing mass calculation
-        for (i, nodes) in enumerate(nodes)
-            mass = 0
-            for id in N_edgeID[i,1:N_currEdge[i]]
-                if id != -1
-                    mass += E_material[id].rho * E_material[id].area * E_material[id].L / 2
-                end
-            end
-            N_material[i] = voxelMaterial(N_materialtmp[i].E, mass, N_materialtmp[i].nu, N_materialtmp[i].rho, N_materialtmp[i].zetaInternal, N_materialtmp[i].zetaGlobal, N_materialtmp[i].zetaCollision, N_materialtmp[i].muStatic, N_materialtmp[i].muKinetic, N_materialtmp[i].nomSize, N_materialtmp[i].linear, N_materialtmp[i].poisson, N_materialtmp[i].cTE, N_materialtmp[i].scale)
-        end
-
-        #tendons
-        if !haskey(setup,"tendonIds")
-            setup["tendonIds"]=[]
-        end
-        if !haskey(setup,"mu")
-            setup["mu"]=0.5
-        end
-        tendonIds=setup["tendonIds"]
-        mu=setup["mu"]
-
-
-    end
-
-    function simulateParallel!(metavoxel,maxNumTimeSteps,dt,sys="GPU")
-        val=(maxNumTimeSteps+1)/100000
-        for i in 1:maxNumTimeSteps
-            if (mod(i,(maxNumTimeSteps+1)/val)==0)
-                if (logging)
-                    display("$((i/val/100))%")
-                end
-            end
-            doTimeStep!(metavoxel,dt,i,sys)
-            if (mod(i,saveEvery)==0)
-                #append!(displacements,[Array(metavoxel["N_displacementGPU"])])
-                updateDataAndSave!(metavoxel,setup,"$(folderPath)$(numFile).json",sys)
-                numFile+=1
-                if numFile>maxNumFiles
-                    numFile=0
-                end
-            end
-        end
-    
-    end
-    
-    ########
-    voxCount=0
-    linkCount=0
-    nodes      = setup["nodes"]
-    edges      = setup["edges"]
-    voxCount=size(nodes)[1]
-    linkCount=size(edges)[1]
-    strain =0 #todooo moveeee
-    maxNumEdges=24
-
-    ############# nodes
-    N_position=fill(Vector3(),voxCount)
-    N_restrained=fill(DOF(), voxCount)
-    N_displacement=fill(Vector3(),voxCount)
-    N_angle=fill(Vector3(),voxCount)
-    N_currPosition=fill(Vector3(),voxCount)
-    N_linMom=fill(Vector3(),voxCount)
-    N_angMom=fill(Vector3(),voxCount)
-    N_intForce=fill(Vector3(),voxCount)
-    N_intMoment=fill(Vector3(),voxCount)
-    N_moment=fill(Vector3(),voxCount)
-    N_force=fill(Vector3(),voxCount)
-    N_fixedDisplacement=fill(Vector3(),voxCount)
-    N_orient=fill(Quaternion(),voxCount)
-    N_edgeID=fill(-1,(voxCount,maxNumEdges))
-    N_edgeFirst=fill(true,(voxCount,maxNumEdges))
-    N_currEdge=fill(1,voxCount)
-    N_material=fill(voxelMaterial(),voxCount)
-    N_materialtmp=fill(voxelMaterial(),voxCount)
-    N_poissonStrain=fill(Vector3(),voxCount)
-
-    ############# edges
-    E_source=fill(0,linkCount)
-    E_target=fill(0,linkCount)
-    E_sourceNodalCoordinate=fill(0,linkCount)
-    E_targetNodalCoordinate=fill(0,linkCount)
-    E_stress=fill(0.0,linkCount)
-    E_axis=fill(Vector3(1.0,0.0,0.0),linkCount)
-    E_currentRestLength=fill(0.0,linkCount)
-    E_pos2=fill(Vector3(),linkCount)
-    E_angle1v=fill(Vector3(),linkCount)
-    E_angle2v=fill(Vector3(),linkCount)
-    E_angle1=fill(Quaternion(),linkCount)
-    E_angle2=fill(Quaternion(),linkCount)
-
-    E_intForce1=fill(Vector3(),linkCount)
-    E_intMoment1=fill(Vector3(),linkCount) 
-
-    E_intForce2=fill(Vector3(),linkCount)
-    E_intMoment2=fill(Vector3(),linkCount)
-    E_damp=fill(false,linkCount)
-    E_smallAngle=fill(true,linkCount)
-    E_material=fill(edgeMaterial(),linkCount)
-    
-    E_strain=fill(0.0,linkCount)
-    E_maxStrain=fill(0.0,linkCount)
-    E_strainOffset=fill(0.0,linkCount)
-    E_currentTransverseArea=fill(0.0,linkCount)
-    E_currentTransverseStrainSum=fill(0.0,linkCount)# TODO remove ot incorporate
-
-    tendonIds=[]
-    mu=0.6;
-
-    #################################################################
-    initialize!(setup)
-    #################################################################
-    if (sys=="GPU")
-        ########################## turn to cuda arrays
-        ############# nodes
-        N_positionGPU=      CuArray(N_position)      
-        N_restrainedGPU=    CuArray(N_restrained)  
-        N_displacementGPU=  CuArray(N_displacement)   
-        N_angleGPU=         CuArray(N_angle)       
-        N_currPositionGPU=  CuArray(N_currPosition)    
-        N_linMomGPU=        CuArray(N_linMom)        
-        N_angMomGPU=        CuArray(N_angMom)        
-        N_intForceGPU=      CuArray(N_intForce)     
-        N_intMomentGPU=     CuArray(N_intMoment)        
-        N_momentGPU=        CuArray(N_moment)         
-        N_forceGPU=         CuArray(N_force)
-        N_fixedDisplacementGPU= CuArray(N_fixedDisplacement)           
-        N_orientGPU=        CuArray(N_orient)       
-        N_edgeIDGPU=        CuArray(N_edgeID)         
-        N_edgeFirstGPU=     CuArray(N_edgeFirst)
-        N_materialGPU=      CuArray(N_material)
-        N_poissonStrainGPU= CuArray(N_poissonStrain) 
-
-
-        ############# edges
-        E_sourceGPU=                    CuArray(E_source)   
-        E_targetGPU=                    CuArray(E_target)
-        E_sourceNodalCoordinateGPU=    CuArray(E_sourceNodalCoordinate)   
-        E_targetNodalCoordinateGPU=    CuArray(E_targetNodalCoordinate)
-        E_stressGPU=                    CuArray(E_stress)
-        E_axisGPU=                      CuArray(E_axis)          
-        E_currentRestLengthGPU=         CuArray(E_currentRestLength)
-        E_pos2GPU=                      CuArray(E_pos2)
-        E_angle1vGPU=                   CuArray(E_angle1v)
-        E_angle2vGPU=                   CuArray(E_angle2v)
-        E_angle1GPU=                    CuArray(E_angle1)
-        E_angle2GPU=                    CuArray(E_angle2)
-
-        E_strainGPU=                    CuArray(E_strain)
-        E_maxStrainGPU=                 CuArray(E_maxStrain)
-        E_strainOffsetGPU=              CuArray(E_strainOffset)
-        E_currentTransverseAreaGPU=     CuArray(E_currentTransverseArea)
-        E_currentTransverseStrainSumGPU=CuArray(E_currentTransverseStrainSum)# TODO remove ot incorporate
-
-        E_intForce1GPU=                 CuArray(E_intForce1) 
-        E_intMoment1GPU=                CuArray(E_intMoment1)  
-        E_intForce2GPU=                 CuArray(E_intForce2) 
-        E_intMoment2GPU=                CuArray(E_intMoment2)
-        E_dampGPU=                      CuArray(E_damp)
-        E_smallAngleGPU=                CuArray(E_smallAngle)
-        E_materialGPU=                  CuArray(E_material)
-        
-
-
-        #########################################
-        metavoxel = Dict(
-            "N_positionGPU" => N_positionGPU,    
-            "N_restrainedGPU" => N_restrainedGPU,  
-            "N_displacementGPU" => N_displacementGPU,
-            "N_angleGPU" => N_angleGPU,       
-            "N_currPositionGPU" => N_currPositionGPU,
-            "N_linMomGPU" => N_linMomGPU,      
-            "N_angMomGPU" => N_angMomGPU,      
-            "N_intForceGPU" => N_intForceGPU,    
-            "N_intMomentGPU" => N_intMomentGPU,   
-            "N_momentGPU" => N_momentGPU,      
-            "N_forceGPU" => N_forceGPU,
-            "N_fixedDisplacementGPU"=>N_fixedDisplacementGPU,       
-            "N_orientGPU" => N_orientGPU,      
-            "N_edgeIDGPU" => N_edgeIDGPU,      
-            "N_edgeFirstGPU" => N_edgeFirstGPU,
-            "N_materialGPU"=>    N_materialGPU,
-            "N_poissonStrainGPU"=> N_poissonStrainGPU,
-
-            "E_sourceGPU" =>E_sourceGPU,                    
-            "E_targetGPU" =>E_targetGPU, 
-            "E_sourceNodalCoordinateGPU" =>E_sourceNodalCoordinateGPU,                    
-            "E_targetNodalCoordinateGPU" =>E_targetNodalCoordinateGPU,
-            "E_stressGPU" =>E_stressGPU,                    
-            "E_axisGPU" =>E_axisGPU,                      
-            "E_currentRestLengthGPU" =>E_currentRestLengthGPU,         
-            "E_pos2GPU" =>E_pos2GPU,                      
-            "E_angle1vGPU" =>E_angle1vGPU,                   
-            "E_angle2vGPU" =>E_angle2vGPU,                   
-            "E_angle1GPU" =>E_angle1GPU,                    
-            "E_angle2GPU" =>E_angle2GPU,  
-
-            "E_strainGPU" =>E_strainGPU,
-            "E_maxStrainGPU" =>E_maxStrainGPU,
-            "E_strainOffsetGPU"=>E_strainOffsetGPU,
-            "E_currentTransverseAreaGPU" =>E_currentTransverseAreaGPU,
-            "E_currentTransverseStrainSumGPU" =>E_currentTransverseStrainSumGPU,
-
-            "E_intForce1GPU" =>E_intForce1GPU,                 
-            "E_intMoment1GPU" =>E_intMoment1GPU,                
-            "E_intForce2GPU" =>E_intForce2GPU,                 
-            "E_intMoment2GPU" =>E_intMoment2GPU,                
-            "E_dampGPU" =>E_dampGPU,
-            "E_smallAngleGPU" =>E_smallAngleGPU,
-            "E_materialGPU" =>E_materialGPU,
-            "tendonIds" =>tendonIds,
-            "mu"=>mu
-        )
-    else
-        # CPU
-        metavoxel = Dict(
-            "N_position" => N_position,    
-            "N_restrained" => N_restrained,  
-            "N_displacement" => N_displacement,
-            "N_angle" => N_angle,       
-            "N_currPosition" => N_currPosition,
-            "N_linMom" => N_linMom,      
-            "N_angMom" => N_angMom,      
-            "N_intForce" => N_intForce,    
-            "N_intMoment" => N_intMoment,   
-            "N_moment" => N_moment,      
-            "N_force" => N_force,
-            "N_fixedDisplacement"=>N_fixedDisplacement,       
-            "N_orient" => N_orient,      
-            "N_edgeID" => N_edgeID,      
-            "N_edgeFirst" => N_edgeFirst,
-            "N_material"=>    N_material,
-            "N_poissonStrain"=> N_poissonStrain,
-
-            "E_source" =>E_source,                    
-            "E_target" =>E_target, 
-            "E_sourceNodalCoordinate" =>E_sourceNodalCoordinate,                    
-            "E_targetNodalCoordinate" =>E_targetNodalCoordinate,
-            "E_stress" =>E_stress,                    
-            "E_axis" =>E_axis,                      
-            "E_currentRestLength" =>E_currentRestLength,         
-            "E_pos2" =>E_pos2,                      
-            "E_angle1v" =>E_angle1v,                   
-            "E_angle2v" =>E_angle2v,                   
-            "E_angle1" =>E_angle1,                    
-            "E_angle2" =>E_angle2,  
-
-            "E_strain" =>E_strain,
-            "E_maxStrain" =>E_maxStrain,
-            "E_strainOffset"=>E_strainOffset,
-            "E_currentTransverseArea" =>E_currentTransverseArea,
-            "E_currentTransverseStrainSum" =>E_currentTransverseStrainSum,
-
-            "E_intForce1" =>E_intForce1,                 
-            "E_intMoment1" =>E_intMoment1,                
-            "E_intForce2" =>E_intForce2,                 
-            "E_intMoment2" =>E_intMoment2,                
-            "E_damp" =>E_damp,
-            "E_smallAngle" =>E_smallAngle,
-            "E_material" =>E_material,
-
-            "tendonIds" =>tendonIds,
-            "mu"=>mu
-        )
-    end
-
-    #########################################
-    
-    #todo make recommended timestep a function
-    dt=0.0251646
-    E = setup["edges"][1]["material"]["stiffness"]  # MPa
-    s=round(sqrt(setup["edges"][1]["material"]["area"] );digits=10)
-    # s=E_material[1].L
-    
-    # s=setup["voxelSize"]
-    mass=N_material[1].mass
-
-    if(!setup["hierarchical"])
-        s=E_material[1].L
-        mass=round(setup["edges"][1]["material"]["area"]*E_material[1].L *setup["edges"][1]["material"]["density"];digits=10)
-    end
-    MaxFreq2=E*s/mass
-    if(setup["poisson"])
-        # mat->_eHat*currentTransverseArea/((strain+1.0)*currentRestLength)
-        eHat=E_material[1].eHat
-        temp=eHat*E_material[1].b*E_material[1].h/((0.0+1.0)*E_material[1].L)
-        MaxFreq2=temp/mass
-    end
-    
-    dt= 1.0/(6.283185*sqrt(MaxFreq2)) 
-    # dt=dt*4 #manual speedup
-    if (logging)
-        println("dt: $dt, s: $s, mass: $mass, momentInertiaInverse: $(N_material[1].momentInertiaInverse)")
-    end
-    setup["dt"]=dt
-
-    numFile=0
-    numSaves=0
-    t=@timed doTimeStep!(metavoxel,dt,0,sys)
-    time=t[2]
-
-    if (logging)
-        println("first timestep took $time seconds")
-    end
-    t=@timed simulateParallel!(metavoxel,maxNumTimeSteps-1,dt,sys)
-    time=t[2]
-    
-    setup["maxNumFiles"]=numSaves
-    if (logging)
-        println("ran $voxCount nodes and $linkCount edges for $maxNumTimeSteps time steps took $time seconds")
-    end
-    return
-end
-
-########################################
-
-function doTimeStep!(metavoxel,dt,currentTimeStep,sys="GPU")
-    if (sys=="GPU")
-        # update forces: go through edges, get currentposition from nodes, calc pos2 and update stresses and interior forces of nodes
-        run_updateEdgesGPU!(dt,currentTimeStep,
-            metavoxel["E_sourceGPU"], 
-            metavoxel["E_targetGPU"],
-            metavoxel["E_sourceNodalCoordinateGPU"], 
-            metavoxel["E_targetNodalCoordinateGPU"],
-            metavoxel["E_stressGPU"],
-            metavoxel["E_axisGPU"],
-            metavoxel["E_currentRestLengthGPU"],
-            metavoxel["E_pos2GPU"],
-            metavoxel["E_angle1vGPU"],
-            metavoxel["E_angle2vGPU"],
-            metavoxel["E_angle1GPU"],
-            metavoxel["E_angle2GPU"],
-            metavoxel["E_intForce1GPU"],
-            metavoxel["E_intMoment1GPU"],
-            metavoxel["E_intForce2GPU"],
-            metavoxel["E_intMoment2GPU"],
-            metavoxel["E_dampGPU"],
-            metavoxel["E_smallAngleGPU"],
-            metavoxel["E_materialGPU"],
-            metavoxel["E_strainGPU"],
-            metavoxel["E_maxStrainGPU"],
-            metavoxel["E_strainOffsetGPU"],
-            metavoxel["E_currentTransverseAreaGPU"],
-            metavoxel["E_currentTransverseStrainSumGPU"],
-            metavoxel["N_currPositionGPU"],
-            metavoxel["N_orientGPU"],
-            metavoxel["N_poissonStrainGPU"]
-        )
-
-        # update forces on tendons
-        run_updateTendonsGPU!(dt,currentTimeStep,
-            metavoxel["N_positionGPU"],
-            metavoxel["N_forceGPU"],
-            metavoxel["N_currPositionGPU"],
-            metavoxel["tendonIds"],
-            metavoxel["mu"]
-        )
-        
-        # update forces: go through nodes and update interior force (according to int forces from edges), integrate and update currpos
-        run_updateNodesGPU!(dt,currentTimeStep,
-            metavoxel["N_positionGPU"], 
-            metavoxel["N_restrainedGPU"],
-            metavoxel["N_displacementGPU"],
-            metavoxel["N_angleGPU"],
-            metavoxel["N_currPositionGPU"],
-            metavoxel["N_linMomGPU"],
-            metavoxel["N_angMomGPU"],
-            metavoxel["N_intForceGPU"],
-            metavoxel["N_intMomentGPU"],
-            metavoxel["N_forceGPU"],
-            metavoxel["N_fixedDisplacementGPU"],
-            metavoxel["N_momentGPU"],
-            metavoxel["N_orientGPU"],
-            metavoxel["N_edgeIDGPU"], 
-            metavoxel["N_edgeFirstGPU"],
-            metavoxel["N_materialGPU"],
-            metavoxel["N_poissonStrainGPU"],
-            metavoxel["E_intForce1GPU"],
-            metavoxel["E_intMoment1GPU"],
-            metavoxel["E_intForce2GPU"],
-            metavoxel["E_intMoment2GPU"],
-            metavoxel["E_axisGPU"],
-            metavoxel["E_strainGPU"],
-            metavoxel["E_materialGPU"],
-            metavoxel["E_maxStrainGPU"]
-        )
-        
-    else
-        # CPU
-        # update forces: go through edges, get currentposition from nodes, calc pos2 and update stresses and interior forces of nodes
-        updateEdgesCPU!(dt,currentTimeStep,
-            metavoxel["E_source"], 
-            metavoxel["E_target"],
-            metavoxel["E_sourceNodalCoordinate"], 
-            metavoxel["E_targetNodalCoordinate"],
-            metavoxel["E_stress"],
-            metavoxel["E_axis"],
-            metavoxel["E_currentRestLength"],
-            metavoxel["E_pos2"],
-            metavoxel["E_angle1v"],
-            metavoxel["E_angle2v"],
-            metavoxel["E_angle1"],
-            metavoxel["E_angle2"],
-            metavoxel["E_intForce1"],
-            metavoxel["E_intMoment1"],
-            metavoxel["E_intForce2"],
-            metavoxel["E_intMoment2"],
-            metavoxel["E_damp"],
-            metavoxel["E_smallAngle"],
-            metavoxel["E_material"],
-            metavoxel["E_strain"],
-            metavoxel["E_maxStrain"],
-            metavoxel["E_strainOffset"],
-            metavoxel["E_currentTransverseArea"],
-            metavoxel["E_currentTransverseStrainSum"],
-            metavoxel["N_currPosition"],
-            metavoxel["N_orient"],
-            metavoxel["N_poissonStrain"]
-        )
-
-        # update forces on tendons
-        updateTendonsCPU!(dt,currentTimeStep,
-            metavoxel["N_position"],
-            metavoxel["N_force"],
-            metavoxel["N_currPosition"],
-            metavoxel["tendonIds"],
-            metavoxel["mu"]
-        )
-        
-        # update forces: go through nodes and update interior force (according to int forces from edges), integrate and update currpos
-        updateNodesCPU!(dt,currentTimeStep,
-            metavoxel["N_position"], 
-            metavoxel["N_restrained"],
-            metavoxel["N_displacement"],
-            metavoxel["N_angle"],
-            metavoxel["N_currPosition"],
-            metavoxel["N_linMom"],
-            metavoxel["N_angMom"],
-            metavoxel["N_intForce"],
-            metavoxel["N_intMoment"],
-            metavoxel["N_force"],
-            metavoxel["N_fixedDisplacement"],
-            metavoxel["N_moment"],
-            metavoxel["N_orient"],
-            metavoxel["N_edgeID"], 
-            metavoxel["N_edgeFirst"],
-            metavoxel["N_material"],
-            metavoxel["N_poissonStrain"],
-            metavoxel["E_intForce1"],
-            metavoxel["E_intMoment1"],
-            metavoxel["E_intForce2"],
-            metavoxel["E_intMoment2"],
-            metavoxel["E_axis"],
-            metavoxel["E_strain"],
-            metavoxel["E_material"],
-            metavoxel["E_maxStrain"]
-        )
-
-        
-    end
-    
-end
+# Amira Abdel-Rahman
+# (c) Massachusetts Institute of Technology 2020
+#################################################################
+function runMetaVoxels!(setup,folderPath,sys="GPU")
+
+    maxNumTimeSteps=setup["numTimeSteps"]
+    maxNumFiles=setup["maxNumFiles"]
+
+    saveEvery=round(maxNumTimeSteps/maxNumFiles)
+    maxNumFiles=round(maxNumTimeSteps/saveEvery)-1
+    setup["maxNumFiles"]=maxNumFiles
+
+    function initialize!(setup)
+        nodes      = setup["nodes"]
+        edges      = setup["edges"]
+
+        i=1
+        for node in nodes
+            if node["parent"]=="11" || node["parent"]=="" #to ignore child nodes that are there for visualization
+                # element=parse(Int,node["id"][2:end])
+                node["position"]["y"]=node["position"]["y"]+0.0
+                node["position"]["z"]=node["position"]["z"]+0.0
+                N_position[i]=Vector3(node["position"]["x"],node["position"]["y"],node["position"]["z"])
+                N_restrained[i]=DOF(node["restrained_degrees_of_freedom"][1],node["restrained_degrees_of_freedom"][2],node["restrained_degrees_of_freedom"][3],node["restrained_degrees_of_freedom"][4],node["restrained_degrees_of_freedom"][5],node["restrained_degrees_of_freedom"][6])
+                N_displacement[i]=Vector3(node["displacement"]["x"],node["displacement"]["y"],node["displacement"]["z"])
+                N_angle[i]=Vector3(node["angle"]["x"],node["angle"]["y"],node["angle"]["z"])
+                N_force[i]=Vector3(node["force"]["x"],node["force"]["y"],node["force"]["z"])
+                N_fixedDisplacement[i]=Vector3(node["fixedDisplacement"]["x"],node["fixedDisplacement"]["y"],node["fixedDisplacement"]["z"])
+                N_currPosition[i]=Vector3(node["position"]["x"],node["position"]["y"],node["position"]["z"])
+
+                E=2000
+                E = node["material"]["stiffness"]  # MPa
+                nu=0.0
+                if haskey(node["material"], "poissonRatio") #todo change material data to nodes
+                    nu= node["material"]["poissonRatio"]
+                end
+                # println(nu)
+                
+                rho=1e3
+                rho = node["material"]["density"]  # MPa
+
+                momentInertiaInverse=1.92e-6
+                inertia=1/momentInertiaInverse
+
+
+                zetaInternal=1.0
+                zetaGlobal=0.2
+                if haskey(setup,"globalDamping")
+                    zetaGlobal=setup["globalDamping"]
+                end
+                zetaCollision=0.0
+                muStatic= 2.0
+                muKinetic= 0.1
+                nomSize=round(sqrt(node["material"]["area"] );digits=10)
+                # nomSize=nomSize*2.0 #why??
+                mass=round(nomSize*nomSize*nomSize *rho;digits=10)
+
+                
+                linear=true
+                poisson=false
+                if haskey(setup,"linear")
+                    linear=setup["linear"]
+                end
+                if haskey(setup,"poisson")
+                    poisson= setup["poisson"]
+                end
+                cTE=0.0 #Coefficient of thermal expansion
+                if haskey(setup,"thermal") # later change for node matrial data
+                    if setup["thermal"]
+                        cTE=node["material"]["cTE"]
+                    end
+                end
+                # print("poisson $poisson")
+                # epsilonFail=E*1000.0
+
+                scale =0
+                if  haskey(setup,"multiscale")
+                    if setup["multiscale"]
+                        scale=node["scale"]
+                    end
+                    nomSize=nomSize*scale
+                    mass=round(nomSize*nomSize*nomSize *rho;digits=10)
+                end
+                N_material[i]=     voxelMaterial(E, mass, nu, rho, zetaInternal, zetaGlobal, zetaCollision, muStatic, muKinetic, nomSize, linear, poisson, cTE, scale)
+                N_materialtmp[i] = voxelMaterial(E, mass, nu, rho, zetaInternal, zetaGlobal, zetaCollision, muStatic, muKinetic, nomSize, linear, poisson, cTE, scale)
+
+
+                i=i+1
+            else
+                # node["position"]["x"]= node["position"]["x"]*setup["scale"] #for export
+                # node["position"]["y"]= node["position"]["y"]*setup["scale"] #for export
+                # node["position"]["z"]= node["position"]["z"]*setup["scale"] #for export
+                node["position"]["x"]= node["position"]["x"] #for export
+                node["position"]["y"]= node["position"]["y"] #for export
+                node["position"]["z"]= node["position"]["z"] #for export
+            end
+        end 
+
+        i=1
+        for edge in edges
+            # element=parse(Int,edge["id"][2:end])
+
+            # find the nodes that the elements connects
+            fromNode = nodes[edge["source"]+1]
+            toNode = nodes[edge["target"]+1]
+
+            sourceRelPos=Vector3(0,0,0)
+            targetRelPos=Vector3(0,0,0)
+
+            if  haskey(setup,"multiscale")
+                E_sourceNodalCoordinate[i]=edge["sourceNodalCoordinate"]
+                E_targetNodalCoordinate[i]=edge["targetNodalCoordinate"]
+                sourceRelPos=getRelativePosition(E_sourceNodalCoordinate[i],setup["voxelSize"]/2.0)
+                targetRelPos=getRelativePosition(E_targetNodalCoordinate[i],setup["voxelSize"]/2.0)
+            end
+            
+            
+
+            node1 = [fromNode["position"]["x"]+sourceRelPos.x fromNode["position"]["y"]+sourceRelPos.y fromNode["position"]["z"]+sourceRelPos.z]
+            node2 = [toNode["position"]["x"]+targetRelPos.x toNode["position"]["y"]+targetRelPos.y toNode["position"]["z"]+targetRelPos.z]
+
+            length=norm(node2-node1)
+            axis=normalize(collect(Iterators.flatten(node2-node1))) # pre-calculate the axis
+
+            E_source[i]=edge["source"]+1
+            E_target[i]=edge["target"]+1
+            E_axis[i]=Vector3(axis[1],axis[2],axis[3])
+            E_currentRestLength[i]=length #?????? todo change    
+            
+            N_edgeID[E_source[i],N_currEdge[E_source[i]]]=i
+            N_edgeFirst[E_source[i],N_currEdge[E_source[i]]]=true
+            N_currEdge[E_source[i]]+=1
+
+            N_edgeID[E_target[i],N_currEdge[E_target[i]]]=i
+            N_edgeFirst[E_target[i],N_currEdge[E_target[i]]]=false
+            N_currEdge[E_target[i]]+=1
+            
+            E=edge["material"]["stiffness"]
+            E=(N_material[E_source[i]].E+N_material[E_target[i]].E)/2.0
+            mass=(N_material[E_source[i]].mass+N_material[E_target[i]].mass)/2.0 #not used anymore
+            nu=(N_material[E_source[i]].nu+N_material[E_target[i]].nu)/2.0
+            rho=edge["material"]["density"]
+            rho=(N_material[E_source[i]].rho+N_material[E_target[i]].rho)/2.0
+
+            E = (N_materialtmp[E_source[i]].E + N_materialtmp[E_target[i]].E) / 2.0
+            nu = (N_materialtmp[E_source[i]].nu + N_materialtmp[E_target[i]].nu) / 2.0
+            rho = edge["material"]["density"]
+            rho = (N_materialtmp[E_source[i]].rho + N_materialtmp[E_target[i]].rho) / 2.0
+            mass = length * rho * E_currentTransverseArea[i]
+
+
+            area=edge["material"]["area"]
+            # mass=1e-6
+            
+            loaded=0.0
+            if(haskey(edge, "loaded"))
+                loaded=edge["loaded"]
+            end
+
+            
+            
+
+
+            strainRatio=(N_material[E_source[i]].E / N_material[E_target[i]].E)
+            linear=(N_material[E_source[i]].linear && N_material[E_target[i]].linear)
+            poisson=(N_material[E_source[i]].poisson || N_material[E_target[i]].poisson)
+            # epsilonFail=(N_material[E_source[i]].epsilonFail+N_material[E_target[i]].epsilonFail)/2.0 #TODO CHANGE TO SMALLEST
+            b=sqrt(area)
+            h=sqrt(area)
+            E_currentTransverseArea[i]=b*h
+
+            linear=true
+            if haskey(setup,"linear")
+                linear=setup["linear"]
+            end
+            cTE=0.0 #Coefficient of thermal expansion
+            if haskey(edge,"cTE")
+                cTE=edge["cTE"]
+            end
+            cTE=N_material[E_source[i]].cTE+N_material[E_target[i]].cTE
+            if haskey(edge,"material")
+                if haskey(edge["material"],"cTE")
+                    if edge["material"]["cTE"]>0.0
+                        cTE=edge["material"]["cTE"]
+                    end
+                end
+            end
+            
+            E_material[i]=edgeMaterial(E,mass,nu,rho,b,h,length,loaded,strainRatio,linear,poisson,cTE)
+
+            #non linear from data
+            # todo cleanup
+            if !linear
+                plasticModulus=1e4
+                # yieldStress=1e5
+                # failureStress=-1
+
+                yieldStress=1e5
+                # failureStress=23e4
+                failureStress=1.1e5
+                # E_material[i]=setModelBilinear(E_material[i], plasticModulus, yieldStress,failureStress)
+                
+                
+                strainData=[0.0, 0.1,0.5, 1.1]
+                stressData=[0.0, 100000.0,500000.0, 110000.0]
+
+                strainData=[0.0, 0.1, 0.5, 0.9, -1]
+                stressData=[0.0, 100000.0,500000.0,450000.0, -1]
+
+
+                strainData=[0.0, 0.1, 0.3, 0.7, -1]
+                stressData=[0.0, 1e5,5e5,6e5, -1]
+
+                strainData=[0.0, 0.1, 0.5, 0.9, -1]
+                stressData=[0.0, 1e5,5e5,10e5, -1]
+
+                strainData=[0.0,0.1,0.25, 0.3, 0.95, -1]
+                stressData=[0.0,1e5,25e4, 5e5, 6e5, -1]
+
+                strainData=[0.0,0.1,0.25, 0.3, 0.5, -1]
+                stressData=[0.0,1e5,25e4, 25e4, 25e4, -1]
+
+
+                strainData=[0.0, 1.0*0.25, 1.0*0.5, 1.0*0.75, 1.0*0.9, -1]
+                stressData=[0.0, 1e5*0.25, 1e5*0.5, 1e5*0.75, 1e5*0.9, -1]
+
+                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.75, -1]
+                stressData=[0.0, 1e5*0.1, 1e5*0.2, 5e5*0.4, 5e5*0.75, -1]
+
+
+                dataPointCount=8
+
+                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.7, 1.0*0.9, -1]
+                stressData=[0.0, 1e5*0.1, 1e5*0.2, 2e5    , 3.6e5  , 5e5    , 7.2e5  , -1]
+
+
+                # strainData=[0.0, 1.0*0.1, 1.0*0.3, 1.0*0.5, 1.0*0.7, 1.0*0.9, 1.0*0.95, -1]
+                # youngsData=[0.0,     0.0,      1e5,    9e5,     8e5,   1.3e6,  1.15e6,4e5,1e6]
+
+                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95, 1.0]
+                youngsData=[0.0,     0.0,      1e6,    1e6,     1e6,     9e5,      8e5, 7e5]
+                stressData=[0.0, 1e5*0.1,  1e5*0.2, 1e5*2.2, 1e5*4.1, 1e5*6.0, 1e5*7.1, 1e5*7.5]
+
+                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95, 1.0]
+                youngsData=[0.0,     0.0,      1e6,    1e6,     1e6,     9e5,      8e5, 7e5]
+                
+
+
+                stressData=[0.0, 1e5*0.1, 1e5*0.2]
+                for i= 4:dataPointCount
+                    append!(stressData,[youngsData[i]*(strainData[i]-strainData[i-1])+stressData[i-1]])
+                end
+                # append!(stressData,[-1])
+                # append!(stressData,[-1])
+
+                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95, -1.0]
+                youngsData=[0.0,     0.0,      1e4,    5e4,     1e5,     5e5,      8e5, 1e5]
+                
+
+
+                stressData=[0.0, 1e5*0.1]
+                for i= 3:dataPointCount-1
+                    append!(stressData,[youngsData[i]*(strainData[i]-strainData[i-1])+stressData[i-1]])
+                end
+
+                append!(stressData,[-1])
+
+
+                
+                if i==1
+                    println(stressData)
+                end
+
+                strainData=[0.0, 1.0*0.1, 1.0*0.2, 1.0*0.4, 1.0*0.6, 1.0*0.8, 1.0*0.95,     -1.0]
+                stressData=[0.0,     0.05,    0.1,    0.4,    0.6,     0.9,       1.2, -1.0e-5].*1e5
+
+                strainData=[0.0, 1.0*0.05, 1.0*0.1, 1.0*0.2, 1.0*0.3, 1.0*0.4, 1.0*0.5, -1]
+                stressData=[0.0, 1e5*0.05, 1e5*0.1, 1e5*0.2, 1e5*0.3, 1e5*0.4, 1e5*0.5, -1]
+
+                strainData=[0.0, 0.1, 0.3, 0.7,0.75,0.8, 0.9, -1]
+                stressData=[0.0, 1e5, 5e5, 6e5,6.7e5,7e5,7.5e5, -1]
+
+                dataPointCount=6
+
+                # strainData=[0.0, 0.2, 0.4,  0.7, 1.2, 1.8]
+                # stressData=[0.0, 2e5 ,4e5,  7e5, 10e5, 18e5]
+
+            
+
+                # strainData=[0.0, 0.2, 0.3,  0.6, 0.9, 1.8]
+                # stressData=[0.0, 2e5 ,3e5,  8e5, 11e5, 18e5]
+
+                # strainData=[0.0, 0.2, 0.4,  0.6, 0.8, 1.8]
+                # stressData=[0.0, 2e5 ,4e5,  9e5, 8e5, 10e5]
+
+                strainData=[0.0, 0.2, 0.4,  0.7, 1.2, 1.8]
+                stressData=[0.0, 2e5 ,4e5,  4.5e5, 5e5, 6e5]
+
+                strainData=[0.0, 0.1, 0.2,  0.5, 0.6, 1.2]
+                stressData=[0.0, 1e5 ,2e5,  2.5e5, 1.0e5, 0.7e5]
+
+                strainData=[0.0, 0.1, 0.2,  0.5, 0.8, 1.2]
+                stressData=[0.0, 1e5 ,2e5,  3.0e5, 7.0e5, 12e5]
+
+
+
+                # if i==1
+                #     strainn=0.1
+                #     nu=0.3
+                #     DataCount =dataPointCount
+                #     poisson=true
+                #     transverseStrainSumm=0.001
+
+                #     for i = 3:DataCount #(i=2; i<DataCount; i++) #go through each segment in the material model (skipping the first segment because it has already been handled.
+                #         println(i)
+                #         if (strainn <= strainData[i] || i==DataCount) #if in the segment ending with this point (or if this is the last point extrapolate out) 
+                #             Perc = (strainn-strainData[i-1])/(strainData[i]-strainData[i-1]);
+                #             println("Perc: $Perc")
+                #             basicStress = stressData[i-1] + Perc*(stressData[i]-stressData[i-1]);
+                #             println("basicStress: $basicStress")
+                #             if (!poisson || nu == 0.0) 
+                #                 basicStress;
+                #             else  #accounting for volumetric effects
+                #                 modulus = (stressData[i]-stressData[i-1])/(strainData[i]-strainData[i-1]);
+                #                 println("modulus: $modulus")
+                #                 modulusHat = modulus/((1.0-2.0*nu)*(1.0+nu));
+                #                 effectiveStrain = basicStress/modulus; #this is the strain at which a simple linear stress strain line would hit this point at the definied modulus
+                #                 effectiveTransverseStrainSum = transverseStrainSumm*(effectiveStrain/strainn);
+                #                 m=modulusHat*((1.0-nu)*effectiveStrain + nu*effectiveTransverseStrainSum);
+                #                 println("m: $m")
+                #                 println()
+                                
+                #             end
+                #         end
+                #     end
+                # end
+
+                
+
+
+                
+                E_material[i]=setModel(E_material[i],dataPointCount, strainData, stressData)
+                # println(E_material[i].strainData)
+                # println(E_material[i].stressData)
+                # println(E_material[i].epsilonFail)
+                # println(length)
+
+                
+            end
+
+
+            E_source[i]=edge["source"]+1
+            E_target[i]=edge["target"]+1
+            
+            i=i+1
+        end
+
+        ##fixing mass calculation
+        for (i, nodes) in enumerate(nodes)
+            mass = 0
+            for id in N_edgeID[i,1:N_currEdge[i]]
+                if id != -1
+                    mass += E_material[id].rho * E_material[id].area * E_material[id].L / 2
+                end
+            end
+            N_material[i] = voxelMaterial(N_materialtmp[i].E, mass, N_materialtmp[i].nu, N_materialtmp[i].rho, N_materialtmp[i].zetaInternal, N_materialtmp[i].zetaGlobal, N_materialtmp[i].zetaCollision, N_materialtmp[i].muStatic, N_materialtmp[i].muKinetic, N_materialtmp[i].nomSize, N_materialtmp[i].linear, N_materialtmp[i].poisson, N_materialtmp[i].cTE, N_materialtmp[i].scale)
+        end
+
+        #tendons
+        if !haskey(setup,"tendonIds")
+            setup["tendonIds"]=[]
+        end
+        if !haskey(setup,"mu")
+            setup["mu"]=0.5
+        end
+        tendonIds=setup["tendonIds"]
+        mu=setup["mu"]
+
+
+    end
+
+    function simulateParallel!(metavoxel,maxNumTimeSteps,dt,sys="GPU")
+        val=(maxNumTimeSteps+1)/100000
+        for i in 1:maxNumTimeSteps
+            if (mod(i,(maxNumTimeSteps+1)/val)==0)
+                if (logging)
+                    display("$((i/val/100))%")
+                end
+            end
+            doTimeStep!(metavoxel,dt,i,sys)
+            if (mod(i,saveEvery)==0)
+                #append!(displacements,[Array(metavoxel["N_displacementGPU"])])
+                updateDataAndSave!(metavoxel,setup,"$(folderPath)$(numFile).json",sys)
+                numFile+=1
+                if numFile>maxNumFiles
+                    numFile=0
+                end
+            end
+        end
+    
+    end
+    
+    ########
+    voxCount=0
+    linkCount=0
+    nodes      = setup["nodes"]
+    edges      = setup["edges"]
+    voxCount=size(nodes)[1]
+    linkCount=size(edges)[1]
+    strain =0 #todooo moveeee
+    maxNumEdges=24
+
+    ############# nodes
+    N_position=fill(Vector3(),voxCount)
+    N_restrained=fill(DOF(), voxCount)
+    N_displacement=fill(Vector3(),voxCount)
+    N_angle=fill(Vector3(),voxCount)
+    N_currPosition=fill(Vector3(),voxCount)
+    N_linMom=fill(Vector3(),voxCount)
+    N_angMom=fill(Vector3(),voxCount)
+    N_intForce=fill(Vector3(),voxCount)
+    N_intMoment=fill(Vector3(),voxCount)
+    N_moment=fill(Vector3(),voxCount)
+    N_force=fill(Vector3(),voxCount)
+    N_fixedDisplacement=fill(Vector3(),voxCount)
+    N_orient=fill(Quaternion(),voxCount)
+    N_edgeID=fill(-1,(voxCount,maxNumEdges))
+    N_edgeFirst=fill(true,(voxCount,maxNumEdges))
+    N_currEdge=fill(1,voxCount)
+    N_material=fill(voxelMaterial(),voxCount)
+    N_materialtmp=fill(voxelMaterial(),voxCount)
+    N_poissonStrain=fill(Vector3(),voxCount)
+    N_vel=fill(Vector3(),voxCount)
+    N_velAngl=fill(Vector3(),voxCount)
+
+    ############# edges
+    E_source=fill(0,linkCount)
+    E_target=fill(0,linkCount)
+    E_sourceNodalCoordinate=fill(0,linkCount)
+    E_targetNodalCoordinate=fill(0,linkCount)
+    E_stress=fill(0.0,linkCount)
+    E_axis=fill(Vector3(1.0,0.0,0.0),linkCount)
+    E_currentRestLength=fill(0.0,linkCount)
+    E_pos2=fill(Vector3(),linkCount)
+    E_angle1v=fill(Vector3(),linkCount)
+    E_angle2v=fill(Vector3(),linkCount)
+    E_angle1=fill(Quaternion(),linkCount)
+    E_angle2=fill(Quaternion(),linkCount)
+
+    E_intForce1=fill(Vector3(),linkCount)
+    E_intMoment1=fill(Vector3(),linkCount) 
+
+    E_intForce2=fill(Vector3(),linkCount)
+    E_intMoment2=fill(Vector3(),linkCount)
+    E_damp=fill(false,linkCount)
+    E_smallAngle=fill(true,linkCount)
+    E_material=fill(edgeMaterial(),linkCount)
+    
+    E_strain=fill(0.0,linkCount)
+    E_maxStrain=fill(0.0,linkCount)
+    E_strainOffset=fill(0.0,linkCount)
+    E_currentTransverseArea=fill(0.0,linkCount)
+    E_currentTransverseStrainSum=fill(0.0,linkCount)# TODO remove ot incorporate
+
+    tendonIds=[]
+    mu=0.6;
+
+    #################################################################
+    initialize!(setup)
+    #################################################################
+    if (sys=="GPU")
+        ########################## turn to cuda arrays
+        ############# nodes
+        N_positionGPU=      CuArray(N_position)      
+        N_restrainedGPU=    CuArray(N_restrained)  
+        N_displacementGPU=  CuArray(N_displacement)   
+        N_angleGPU=         CuArray(N_angle)       
+        N_currPositionGPU=  CuArray(N_currPosition)    
+        N_linMomGPU=        CuArray(N_linMom)        
+        N_angMomGPU=        CuArray(N_angMom)        
+        N_intForceGPU=      CuArray(N_intForce)     
+        N_intMomentGPU=     CuArray(N_intMoment)        
+        N_momentGPU=        CuArray(N_moment)         
+        N_forceGPU=         CuArray(N_force)
+        N_fixedDisplacementGPU= CuArray(N_fixedDisplacement)           
+        N_orientGPU=        CuArray(N_orient)       
+        N_edgeIDGPU=        CuArray(N_edgeID)         
+        N_edgeFirstGPU=     CuArray(N_edgeFirst)
+        N_materialGPU=      CuArray(N_material)
+        N_poissonStrainGPU= CuArray(N_poissonStrain)
+        N_velGPU=           CuArray(N_vel) 
+        N_velAnglGPU=       CuArray(N_velAngl) 
+
+
+        ############# edges
+        E_sourceGPU=                    CuArray(E_source)   
+        E_targetGPU=                    CuArray(E_target)
+        E_sourceNodalCoordinateGPU=    CuArray(E_sourceNodalCoordinate)   
+        E_targetNodalCoordinateGPU=    CuArray(E_targetNodalCoordinate)
+        E_stressGPU=                    CuArray(E_stress)
+        E_axisGPU=                      CuArray(E_axis)          
+        E_currentRestLengthGPU=         CuArray(E_currentRestLength)
+        E_pos2GPU=                      CuArray(E_pos2)
+        E_angle1vGPU=                   CuArray(E_angle1v)
+        E_angle2vGPU=                   CuArray(E_angle2v)
+        E_angle1GPU=                    CuArray(E_angle1)
+        E_angle2GPU=                    CuArray(E_angle2)
+
+        E_strainGPU=                    CuArray(E_strain)
+        E_maxStrainGPU=                 CuArray(E_maxStrain)
+        E_strainOffsetGPU=              CuArray(E_strainOffset)
+        E_currentTransverseAreaGPU=     CuArray(E_currentTransverseArea)
+        E_currentTransverseStrainSumGPU=CuArray(E_currentTransverseStrainSum)# TODO remove ot incorporate
+
+        E_intForce1GPU=                 CuArray(E_intForce1) 
+        E_intMoment1GPU=                CuArray(E_intMoment1)  
+        E_intForce2GPU=                 CuArray(E_intForce2) 
+        E_intMoment2GPU=                CuArray(E_intMoment2)
+        E_dampGPU=                      CuArray(E_damp)
+        E_smallAngleGPU=                CuArray(E_smallAngle)
+        E_materialGPU=                  CuArray(E_material)
+        
+
+
+        #########################################
+        metavoxel = Dict(
+            "N_positionGPU" => N_positionGPU,    
+            "N_restrainedGPU" => N_restrainedGPU,  
+            "N_displacementGPU" => N_displacementGPU,
+            "N_angleGPU" => N_angleGPU,       
+            "N_currPositionGPU" => N_currPositionGPU,
+            "N_linMomGPU" => N_linMomGPU,      
+            "N_angMomGPU" => N_angMomGPU,      
+            "N_intForceGPU" => N_intForceGPU,    
+            "N_intMomentGPU" => N_intMomentGPU,   
+            "N_momentGPU" => N_momentGPU,      
+            "N_forceGPU" => N_forceGPU,
+            "N_fixedDisplacementGPU"=>N_fixedDisplacementGPU,       
+            "N_orientGPU" => N_orientGPU,      
+            "N_edgeIDGPU" => N_edgeIDGPU,      
+            "N_edgeFirstGPU" => N_edgeFirstGPU,
+            "N_materialGPU"=>    N_materialGPU,
+            "N_poissonStrainGPU"=> N_poissonStrainGPU,
+            "N_velGPU"=>    N_velGPU,
+            "N_velAnglGPU"=> N_velAnglGPU,
+
+            "E_sourceGPU" =>E_sourceGPU,                    
+            "E_targetGPU" =>E_targetGPU, 
+            "E_sourceNodalCoordinateGPU" =>E_sourceNodalCoordinateGPU,                    
+            "E_targetNodalCoordinateGPU" =>E_targetNodalCoordinateGPU,
+            "E_stressGPU" =>E_stressGPU,                    
+            "E_axisGPU" =>E_axisGPU,                      
+            "E_currentRestLengthGPU" =>E_currentRestLengthGPU,         
+            "E_pos2GPU" =>E_pos2GPU,                      
+            "E_angle1vGPU" =>E_angle1vGPU,                   
+            "E_angle2vGPU" =>E_angle2vGPU,                   
+            "E_angle1GPU" =>E_angle1GPU,                    
+            "E_angle2GPU" =>E_angle2GPU,  
+
+            "E_strainGPU" =>E_strainGPU,
+            "E_maxStrainGPU" =>E_maxStrainGPU,
+            "E_strainOffsetGPU"=>E_strainOffsetGPU,
+            "E_currentTransverseAreaGPU" =>E_currentTransverseAreaGPU,
+            "E_currentTransverseStrainSumGPU" =>E_currentTransverseStrainSumGPU,
+
+            "E_intForce1GPU" =>E_intForce1GPU,                 
+            "E_intMoment1GPU" =>E_intMoment1GPU,                
+            "E_intForce2GPU" =>E_intForce2GPU,                 
+            "E_intMoment2GPU" =>E_intMoment2GPU,                
+            "E_dampGPU" =>E_dampGPU,
+            "E_smallAngleGPU" =>E_smallAngleGPU,
+            "E_materialGPU" =>E_materialGPU,
+            "tendonIds" =>tendonIds,
+            "mu"=>mu
+        )
+    else
+        # CPU
+        metavoxel = Dict(
+            "N_position" => N_position,    
+            "N_restrained" => N_restrained,  
+            "N_displacement" => N_displacement,
+            "N_angle" => N_angle,       
+            "N_currPosition" => N_currPosition,
+            "N_linMom" => N_linMom,      
+            "N_angMom" => N_angMom,      
+            "N_intForce" => N_intForce,    
+            "N_intMoment" => N_intMoment,   
+            "N_moment" => N_moment,      
+            "N_force" => N_force,
+            "N_fixedDisplacement"=>N_fixedDisplacement,       
+            "N_orient" => N_orient,      
+            "N_edgeID" => N_edgeID,      
+            "N_edgeFirst" => N_edgeFirst,
+            "N_material"=>    N_material,
+            "N_poissonStrain"=> N_poissonStrain,
+            "N_vel"=>    N_vel,
+            "N_velAngl"=> N_velAngl,
+
+            "E_source" =>E_source,                    
+            "E_target" =>E_target, 
+            "E_sourceNodalCoordinate" =>E_sourceNodalCoordinate,                    
+            "E_targetNodalCoordinate" =>E_targetNodalCoordinate,
+            "E_stress" =>E_stress,                    
+            "E_axis" =>E_axis,                      
+            "E_currentRestLength" =>E_currentRestLength,         
+            "E_pos2" =>E_pos2,                      
+            "E_angle1v" =>E_angle1v,                   
+            "E_angle2v" =>E_angle2v,                   
+            "E_angle1" =>E_angle1,                    
+            "E_angle2" =>E_angle2,  
+
+            "E_strain" =>E_strain,
+            "E_maxStrain" =>E_maxStrain,
+            "E_strainOffset"=>E_strainOffset,
+            "E_currentTransverseArea" =>E_currentTransverseArea,
+            "E_currentTransverseStrainSum" =>E_currentTransverseStrainSum,
+
+            "E_intForce1" =>E_intForce1,                 
+            "E_intMoment1" =>E_intMoment1,                
+            "E_intForce2" =>E_intForce2,                 
+            "E_intMoment2" =>E_intMoment2,                
+            "E_damp" =>E_damp,
+            "E_smallAngle" =>E_smallAngle,
+            "E_material" =>E_material,
+
+            "tendonIds" =>tendonIds,
+            "mu"=>mu
+        )
+    end
+
+    #########################################
+    
+    #todo make recommended timestep a function
+    dt=0.0251646
+    E = setup["edges"][1]["material"]["stiffness"]  # MPa
+    s=round(sqrt(setup["edges"][1]["material"]["area"] );digits=10)
+    # s=E_material[1].L
+    
+    # s=setup["voxelSize"]
+    mass=N_material[1].mass
+
+    if(!setup["hierarchical"])
+        s=E_material[1].L
+        mass=round(setup["edges"][1]["material"]["area"]*E_material[1].L *setup["edges"][1]["material"]["density"];digits=10)
+    end
+    MaxFreq2=E*s/mass
+    if(setup["poisson"])
+        # mat->_eHat*currentTransverseArea/((strain+1.0)*currentRestLength)
+        eHat=E_material[1].eHat
+        temp=eHat*E_material[1].b*E_material[1].h/((0.0+1.0)*E_material[1].L)
+        MaxFreq2=temp/mass
+    end
+    
+    dt= 1.0/(6.283185*sqrt(MaxFreq2)) 
+    # dt=dt*4 #manual speedup
+    if (logging)
+        println("dt: $dt, s: $s, mass: $mass, momentInertiaInverse: $(N_material[1].momentInertiaInverse)")
+    end
+    setup["dt"]=dt
+
+    numFile=0
+    numSaves=0
+    t=@timed doTimeStep!(metavoxel,dt,0,sys)
+    time=t[2]
+
+    if (logging)
+        println("first timestep took $time seconds")
+    end
+    t=@timed simulateParallel!(metavoxel,maxNumTimeSteps-1,dt,sys)
+    time=t[2]
+    
+    setup["maxNumFiles"]=numSaves
+    if (logging)
+        println("ran $voxCount nodes and $linkCount edges for $maxNumTimeSteps time steps took $time seconds")
+    end
+    return
+end
+
+########################################
+
+function doTimeStep!(metavoxel,dt,currentTimeStep,sys="GPU")
+    if (sys=="GPU")
+        # update forces: go through edges, get currentposition from nodes, calc pos2 and update stresses and interior forces of nodes
+        run_updateEdgesGPU!(dt,currentTimeStep,
+            metavoxel["E_sourceGPU"], 
+            metavoxel["E_targetGPU"],
+            metavoxel["E_sourceNodalCoordinateGPU"], 
+            metavoxel["E_targetNodalCoordinateGPU"],
+            metavoxel["E_stressGPU"],
+            metavoxel["E_axisGPU"],
+            metavoxel["E_currentRestLengthGPU"],
+            metavoxel["E_pos2GPU"],
+            metavoxel["E_angle1vGPU"],
+            metavoxel["E_angle2vGPU"],
+            metavoxel["E_angle1GPU"],
+            metavoxel["E_angle2GPU"],
+            metavoxel["E_intForce1GPU"],
+            metavoxel["E_intMoment1GPU"],
+            metavoxel["E_intForce2GPU"],
+            metavoxel["E_intMoment2GPU"],
+            metavoxel["E_dampGPU"],
+            metavoxel["E_smallAngleGPU"],
+            metavoxel["E_materialGPU"],
+            metavoxel["E_strainGPU"],
+            metavoxel["E_maxStrainGPU"],
+            metavoxel["E_strainOffsetGPU"],
+            metavoxel["E_currentTransverseAreaGPU"],
+            metavoxel["E_currentTransverseStrainSumGPU"],
+            metavoxel["N_currPositionGPU"],
+            metavoxel["N_orientGPU"]
+        )
+
+        # update forces on tendons
+        run_updateTendonsGPU!(dt,currentTimeStep,
+            metavoxel["N_positionGPU"],
+            metavoxel["N_forceGPU"],
+            metavoxel["N_currPositionGPU"],
+            metavoxel["tendonIds"],
+            metavoxel["mu"]
+        )
+        
+        # update forces: go through nodes and update interior force (according to int forces from edges), integrate and update currpos
+        run_updateNodesGPU!(dt,currentTimeStep,
+            metavoxel["N_positionGPU"], 
+            metavoxel["N_restrainedGPU"],
+            metavoxel["N_displacementGPU"],
+            metavoxel["N_angleGPU"],
+            metavoxel["N_currPositionGPU"],
+            metavoxel["N_linMomGPU"],
+            metavoxel["N_angMomGPU"],
+            metavoxel["N_intForceGPU"],
+            metavoxel["N_intMomentGPU"],
+            metavoxel["N_forceGPU"],
+            metavoxel["N_fixedDisplacementGPU"],
+            metavoxel["N_momentGPU"],
+            metavoxel["N_orientGPU"],
+            metavoxel["N_edgeIDGPU"], 
+            metavoxel["N_edgeFirstGPU"],
+            metavoxel["N_materialGPU"],
+            metavoxel["N_poissonStrainGPU"],
+            metavoxel["N_velGPU"],
+            metavoxel["N_velAnglGPU"],
+            metavoxel["E_intForce1GPU"],
+            metavoxel["E_intMoment1GPU"],
+            metavoxel["E_intForce2GPU"],
+            metavoxel["E_intMoment2GPU"],
+            metavoxel["E_axisGPU"],
+            metavoxel["E_strainGPU"],
+            metavoxel["E_materialGPU"],
+            metavoxel["E_maxStrainGPU"]
+        )
+        
+    else
+        # CPU
+        # update forces: go through edges, get currentposition from nodes, calc pos2 and update stresses and interior forces of nodes
+        updateEdgesCPU!(dt,currentTimeStep,
+            metavoxel["E_source"], 
+            metavoxel["E_target"],
+            metavoxel["E_sourceNodalCoordinate"], 
+            metavoxel["E_targetNodalCoordinate"],
+            metavoxel["E_stress"],
+            metavoxel["E_axis"],
+            metavoxel["E_currentRestLength"],
+            metavoxel["E_pos2"],
+            metavoxel["E_angle1v"],
+            metavoxel["E_angle2v"],
+            metavoxel["E_angle1"],
+            metavoxel["E_angle2"],
+            metavoxel["E_intForce1"],
+            metavoxel["E_intMoment1"],
+            metavoxel["E_intForce2"],
+            metavoxel["E_intMoment2"],
+            metavoxel["E_damp"],
+            metavoxel["E_smallAngle"],
+            metavoxel["E_material"],
+            metavoxel["E_strain"],
+            metavoxel["E_maxStrain"],
+            metavoxel["E_strainOffset"],
+            metavoxel["E_currentTransverseArea"],
+            metavoxel["E_currentTransverseStrainSum"],
+            metavoxel["N_currPosition"],
+            metavoxel["N_orient"],
+            metavoxel["N_poissonStrain"]
+        )
+
+        # update forces on tendons
+        updateTendonsCPU!(dt,currentTimeStep,
+            metavoxel["N_position"],
+            metavoxel["N_force"],
+            metavoxel["N_currPosition"],
+            metavoxel["tendonIds"],
+            metavoxel["mu"]
+        )
+        
+        # update forces: go through nodes and update interior force (according to int forces from edges), integrate and update currpos
+        updateNodesCPU!(dt,currentTimeStep,
+            metavoxel["N_position"], 
+            metavoxel["N_restrained"],
+            metavoxel["N_displacement"],
+            metavoxel["N_angle"],
+            metavoxel["N_currPosition"],
+            metavoxel["N_linMom"],
+            metavoxel["N_angMom"],
+            metavoxel["N_intForce"],
+            metavoxel["N_intMoment"],
+            metavoxel["N_force"],
+            metavoxel["N_fixedDisplacement"],
+            metavoxel["N_moment"],
+            metavoxel["N_orient"],
+            metavoxel["N_edgeID"], 
+            metavoxel["N_edgeFirst"],
+            metavoxel["N_material"],
+            metavoxel["N_poissonStrain"],
+            metavoxel["N_vel"],
+            metavoxel["N_velAngl"],
+            metavoxel["E_intForce1"],
+            metavoxel["E_intMoment1"],
+            metavoxel["E_intForce2"],
+            metavoxel["E_intMoment2"],
+            metavoxel["E_axis"],
+            metavoxel["E_strain"],
+            metavoxel["E_material"],
+            metavoxel["E_maxStrain"]
+        )
+
+        
+    end
+    
+end
diff --git a/julia/include/updateNodes.jl b/julia/include/updateNodes.jl
index 5f01009..ea090dd 100644
--- a/julia/include/updateNodes.jl
+++ b/julia/include/updateNodes.jl
@@ -5,7 +5,7 @@
 
 
 function updateNodes!(sys,i,dt,currentTimeStep,N_position, N_restrained,N_displacement,N_angle,N_currPosition,N_linMom,N_angMom,
-        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain,
+        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain, N_vel, N_velAngl,
         E_intForce1,E_intMoment1,E_intForce2,E_intMoment2,E_axis, E_strain,E_material,E_maxStrain)
         
     ############################################################
@@ -57,7 +57,7 @@ function updateNodes!(sys,i,dt,currentTimeStep,N_position, N_restrained,N_displa
         @inbounds mass=roundd(N_material[i].mass,prec)
         @inbounds massInverse=roundd(N_material[i].massInverse,prec)
         
-        @inbounds curForce = force(i,N_intForce[i],N_orient[i],N_force[i],N_position[i],N_currPosition[i],currentTimeStep,N_material[i],N_linMom[i])
+        @inbounds curForce = force(i,N_intForce[i],N_orient[i],N_force[i],N_position[i],N_currPosition[i],currentTimeStep,N_material[i],N_linMom[i],N_vel)
 
         fricForce = Vector3(curForce.x,curForce.y,curForce.z);
         if (isFloorEnabled)
@@ -120,7 +120,7 @@ function updateNodes!(sys,i,dt,currentTimeStep,N_position, N_restrained,N_displa
         
         
         # Rotation
-        @inbounds curMoment = moment(N_intMoment[i],N_orient[i],N_moment[i],N_material[i],N_angMom[i]) 
+        @inbounds curMoment = moment(i,N_intMoment[i],N_orient[i],N_moment[i],N_material[i],N_angMom[i],N_velAngl) 
         
         @inbounds N_intMoment[i]=Vector3(0,0,0) # do i really need it?
         @inbounds N_intForce[i]=Vector3(0,0,0) # do i really need it?
@@ -151,7 +151,7 @@ end
 ############################
 
 function updateNodesGPU!(dt,currentTimeStep,N_position, N_restrained,N_displacement,N_angle,N_currPosition,N_linMom,N_angMom,
-        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain,
+        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain, N_vel, N_velAngl,
         E_intForce1,E_intMoment1,E_intForce2,E_intMoment2,E_axis, E_strain,E_material,E_maxStrain)
 
     index = (blockIdx().x - 1) * blockDim().x + threadIdx().x
@@ -160,20 +160,20 @@ function updateNodesGPU!(dt,currentTimeStep,N_position, N_restrained,N_displacem
     N,M=size(N_edgeID)
     for i = index:stride:N
         updateNodes!(1,i,dt,currentTimeStep,N_position, N_restrained,N_displacement,N_angle,N_currPosition,N_linMom,N_angMom,
-        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain,
+        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain, N_vel, N_velAngl,
         E_intForce1,E_intMoment1,E_intForce2,E_intMoment2,E_axis, E_strain,E_material,E_maxStrain)
     end
     return
 end
 
 function updateNodesCPU!(dt,currentTimeStep,N_position, N_restrained,N_displacement,N_angle,N_currPosition,N_linMom,N_angMom,
-    N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain,
+    N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain, N_vel, N_velAngl,
     E_intForce1,E_intMoment1,E_intForce2,E_intMoment2,E_axis, E_strain,E_material,E_maxStrain)
 
     N,M=size(N_edgeID)
     Threads.@threads for i = 1:N
         updateNodes!(0,i,dt,currentTimeStep,N_position, N_restrained,N_displacement,N_angle,N_currPosition,N_linMom,N_angMom,
-        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain,
+        N_intForce,N_intMoment,N_force,N_fixedDisplacement,N_moment,N_orient,N_edgeID,N_edgeFirst,N_material,N_poissonStrain, N_vel, N_velAngl,
         E_intForce1,E_intMoment1,E_intForce2,E_intMoment2,E_axis, E_strain,E_material,E_maxStrain)
     end
     return
diff --git a/jupyter/AM216_Final_Project.ipynb b/jupyter/AM216_Final_Project.ipynb
new file mode 100644
index 0000000..aad67c5
--- /dev/null
+++ b/jupyter/AM216_Final_Project.ipynb
@@ -0,0 +1,1348 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# AM216 Final Project"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## 1. Import Libraries"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "GPU=false # if you want to use the gpu or not\n",
+    "plotting=false # if going to plot graphs\n",
+    "logging=false # if you want the simulation to be verbose\n",
+    "include(\"../julia/MetaVoxels.jl\") #load MetaVoxels!"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## 2. Create Training and Generalization Data"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Generate random values for coefficient of thermal expansion "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using Distributions\n",
+    "# Generate random values for coefficient of thermal expansion\n",
+    "n_train=256\n",
+    "n_gen=100\n",
+    "#training \n",
+    "r_train_1=rand(Uniform(0.0,0.2), n_train) #upper material\n",
+    "r_train_2=rand(Uniform(0.0,0.2), n_train) #lower material\n",
+    "\n",
+    "r_1_gen_1=rand(Uniform(0.0,0.2), n_gen)  #upper material\n",
+    "r_1_gen_2=rand(Uniform(0.0,0.2), n_gen)  #lower material\n",
+    "\n",
+    "r_2_gen_1=rand(Uniform(0.0,0.2), n_gen) #upper material\n",
+    "r_2_gen_2=rand(Uniform(0.0,0.2), n_gen); #lower material"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Generate names for simulations"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "simNameTrainName= \"AM216_Final_Project/train\" \n",
+    "simNameTrain=[]\n",
+    "for i in 1:n_train\n",
+    "    append!(simNameTrain,[\"$(simNameTrainName)/$(i)\"])\n",
+    "end\n",
+    "\n",
+    "simNameGen1Name= \"AM216_Final_Project/gen1\" \n",
+    "simNameGen1=[]\n",
+    "for i in 1:n_gen\n",
+    "    append!(simNameGen1,[\"$(simNameGen1Name)/$(i)\"])\n",
+    "end\n",
+    "\n",
+    "simNameGen2Name= \"AM216_Final_Project/gen2\" \n",
+    "simNameGen2=[]\n",
+    "for i in 1:n_gen\n",
+    "    append!(simNameGen2,[\"$(simNameGen2Name)/$(i)\"])\n",
+    "end\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Generate folders for simulations"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "\"../json/AM216_Final_Project/gen2\""
+      ]
+     },
+     "execution_count": 13,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "if !isdir(\"../json/AM216_Final_Project\")\n",
+    "    mkdir(\"../json/AM216_Final_Project\")\n",
+    "end\n",
+    "if !isdir(\"../json/$(simNameTrainName)/\")\n",
+    "    mkdir(\"../json/$(simNameTrainName)\")\n",
+    "end\n",
+    "if !isdir(\"../json/$(simNameGen1Name)/\")\n",
+    "    mkdir(\"../json/$(simNameGen1Name)\")\n",
+    "end\n",
+    "if !isdir(\"../json/$(simNameGen2Name)/\")\n",
+    "    mkdir(\"../json/$(simNameGen2Name)\")\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "for d in simNameTrain\n",
+    "    if !isdir(\"../json/$(d)/\")\n",
+    "        mkdir(\"../json/$(d)\")\n",
+    "    end\n",
+    "end\n",
+    "for d in simNameGen1\n",
+    "    if !isdir(\"../json/$(d)/\")\n",
+    "        mkdir(\"../json/$(d)\")\n",
+    "    end\n",
+    "end\n",
+    "for d in simNameGen2\n",
+    "    if !isdir(\"../json/$(d)/\")\n",
+    "        mkdir(\"../json/$(d)\")\n",
+    "    end\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Create Simulation Starting Conditions"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 19,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Training Simulation 1\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 2\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 3\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 4\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 5\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 6\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 7\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 8\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 9\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 10\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 11\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 12\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 13\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 14\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 15\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 16\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 17\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 18\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 19\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 20\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 21\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 22\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 23\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 24\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 25\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 26\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 27\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 28\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 29\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 30\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 31\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 32\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 33\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 34\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 35\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 36\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 37\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 38\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 39\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 40\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 41\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 42\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 43\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 44\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 45\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 46\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 47\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 48\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 49\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 50\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 51\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 52\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 53\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 54\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 55\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 56\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 57\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 58\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 59\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 60\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 61\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 62\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 63\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 64\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 65\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 66\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 67\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 68\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 69\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 70\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 71\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 72\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 73\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 74\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 75\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 76\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 77\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 78\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 79\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 80\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 81\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 82\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 83\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 84\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 85\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 86\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 87\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 88\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 89\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 90\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 91\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 92\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 93\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 94\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 95\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 96\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 97\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 98\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 99\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 100\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 101\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 102\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 103\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 104\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 105\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Training Simulation 106\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 107\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 108\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 109\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 110\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 111\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 112\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 113\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 114\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 115\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 116\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 117\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 118\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 119\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 120\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 121\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 122\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 123\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 124\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 125\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 126\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 127\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 128\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 129\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 130\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 131\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 132\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 133\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 134\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 135\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 136\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 137\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 138\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 139\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 140\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 141\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 142\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 143\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 144\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 145\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 146\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 147\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 148\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 149\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 150\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 151\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 152\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 153\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 154\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 155\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 156\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 157\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 158\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 159\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 160\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 161\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 162\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 163\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 164\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 165\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 166\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 167\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 168\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 169\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 170\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 171\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 172\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 173\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 174\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 175\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 176\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 177\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 178\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 179\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 180\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 181\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 182\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 183\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 184\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 185\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 186\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 187\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 188\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 189\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 190\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 191\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 192\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 193\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 194\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 195\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 196\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 197\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 198\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 199\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 200\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 201\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 202\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 203\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 204\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 205\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 206\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 207\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 208\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 209\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Training Simulation 210\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 211\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 212\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 213\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 214\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 215\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 216\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 217\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 218\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 219\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 220\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 221\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 222\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 223\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 224\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 225\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 226\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 227\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 228\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 229\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 230\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 231\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 232\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 233\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 234\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 235\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 236\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 237\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 238\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 239\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 240\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 241\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 242\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 243\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 244\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 245\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 246\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 247\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 248\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 249\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 250\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 251\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 252\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 253\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 254\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 255\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n",
+      "Training Simulation 256\n",
+      "Success! Created structure with 28 nodes and 52 edges.\n"
+     ]
+    }
+   ],
+   "source": [
+    "# training\n",
+    "for i in 1:n_train\n",
+    "    println(\"Training Simulation $i\")\n",
+    "    # get a saved setup from an external julia file\n",
+    "    include(\"../julia/examples/AM216_Final_Project/thermalTest_train.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n",
+    "    material1[\"cTE\"]=r_train_1[i] #coefficient of thermal expansion for material 1\n",
+    "    material2[\"cTE\"]=r_train_2[i] #coefficient of thermal expansion for material 2\n",
+    "\n",
+    "\n",
+    "    ## recompile these just for sanity check for dynamic loads\n",
+    "    include(\"../julia/MetaVoxels.jl\") \n",
+    "\n",
+    "    #export setup using nodejs and javascript from \"./json/$(simName)Init.json\" and save to \"./json/$(simName).json\"\n",
+    "    exportJuliaSettingsUsingNode(setup,simNameTrain[i])\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 34,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Gen 1 Simulation 1\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 2\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 3\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 4\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 5\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 6\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 7\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 8\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 9\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 10\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 11\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 12\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 13\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 14\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 15\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 16\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 17\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 18\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 19\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 20\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 21\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 22\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 23\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 24\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 25\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 26\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 27\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 28\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 29\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 30\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 31\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 32\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 33\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 34\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 35\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 36\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 37\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 38\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 39\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 40\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 41\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 42\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 43\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 44\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 45\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 46\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 47\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 48\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 49\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 50\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 51\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 52\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 53\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 54\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 55\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 56\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 57\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 58\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 59\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 60\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 61\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 62\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 63\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 64\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 65\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 66\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 67\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 68\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 69\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 70\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 71\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 72\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 73\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 74\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 75\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 76\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 77\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 78\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 79\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 80\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 81\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 82\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 83\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 84\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 85\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 86\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 87\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 88\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 89\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 90\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 91\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 92\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 93\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 94\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 95\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 96\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 97\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 98\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 99\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n",
+      "Gen 1 Simulation 100\n",
+      "Success! Created structure with 20 nodes and 36 edges.\n"
+     ]
+    }
+   ],
+   "source": [
+    "# gen 1\n",
+    "for i in 1:n_gen\n",
+    "    println(\"Gen 1 Simulation $i\")\n",
+    "    # get a saved setup from an external julia file\n",
+    "    include(\"../julia/examples/AM216_Final_Project/thermalTest_gen_1.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n",
+    "    material1[\"cTE\"]=r_1_gen_1[i] #coefficient of thermal expansion for material 1\n",
+    "    material2[\"cTE\"]=r_1_gen_2[i] #coefficient of thermal expansion for material 2\n",
+    "\n",
+    "\n",
+    "    ## recompile these just for sanity check for dynamic loads\n",
+    "    include(\"../julia/MetaVoxels.jl\") \n",
+    "\n",
+    "    #export setup using nodejs and javascript from \"./json/$(simName)Init.json\" and save to \"./json/$(simName).json\"\n",
+    "    exportJuliaSettingsUsingNode(setup,simNameGen1[i])\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 35,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Gen 2 Simulation 1\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 2\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 3\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 4\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 5\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 6\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 7\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 8\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 9\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 10\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 11\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 12\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 13\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 14\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 15\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 16\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 17\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 18\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 19\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 20\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 21\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 22\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 23\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 24\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 25\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 26\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 27\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 28\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 29\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 30\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 31\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 32\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 33\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 34\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 35\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 36\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 37\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 38\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 39\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 40\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 41\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 42\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 43\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 44\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 45\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 46\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 47\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 48\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 49\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 50\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 51\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 52\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 53\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 54\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 55\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 56\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 57\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 58\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 59\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 60\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 61\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 62\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 63\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 64\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 65\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 66\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 67\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 68\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 69\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 70\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 71\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 72\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 73\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 74\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 75\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 76\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 77\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 78\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 79\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 80\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 81\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 82\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 83\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 84\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 85\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 86\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 87\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 88\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 89\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 90\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 91\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 92\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 93\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 94\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 95\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 96\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 97\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 98\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 99\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n",
+      "Gen 2 Simulation 100\n",
+      "Success! Created structure with 36 nodes and 68 edges.\n"
+     ]
+    }
+   ],
+   "source": [
+    "# gen 2\n",
+    "for i in 1:n_gen\n",
+    "    println(\"Gen 2 Simulation $i\")\n",
+    "    # get a saved setup from an external julia file\n",
+    "    include(\"../julia/examples/AM216_Final_Project/thermalTest_gen_2.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n",
+    "    material1[\"cTE\"]=r_2_gen_1[i] #coefficient of thermal expansion for material 1\n",
+    "    material2[\"cTE\"]=r_2_gen_2[i] #coefficient of thermal expansion for material 2\n",
+    "\n",
+    "\n",
+    "    ## recompile these just for sanity check for dynamic loads\n",
+    "    include(\"../julia/MetaVoxels.jl\") \n",
+    "\n",
+    "    #export setup using nodejs and javascript from \"./json/$(simName)Init.json\" and save to \"./json/$(simName).json\"\n",
+    "    exportJuliaSettingsUsingNode(setup,simNameGen2[i])\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## 3. Run Simulations"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 30,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using ProgressMeter"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 29,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "\u001b[32mTraining Simulation... 100%|█████████████████████████████| Time: 0:02:15\u001b[39m\n"
+     ]
+    }
+   ],
+   "source": [
+    "# training\n",
+    "@showprogress 1 \"Training Simulation...\" for i in 1:n_train\n",
+    "    # println(\"Training Simulation $i\")\n",
+    "    setupSim=getSetup(simNameTrain[i]); #get simulation from\"./json/$(simName).json\"\n",
+    "    savedDataFolderPath=\"../json/$(simNameTrain[i])/\" # make sure this folder exists, this is where the simulation result will be saved\n",
+    "    runMetaVoxels!(setupSim,savedDataFolderPath,\"CPU\");\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 36,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "\u001b[32mGen 1 Simulation... 100%|████████████████████████████████| Time: 0:00:49\u001b[39m\n"
+     ]
+    }
+   ],
+   "source": [
+    "# gen 1\n",
+    "@showprogress 1 \"Gen 1 Simulation...\" for i in 1:n_gen\n",
+    "    setupSim=getSetup(simNameGen1[i]); #get simulation from\"./json/$(simName).json\"\n",
+    "    savedDataFolderPath=\"../json/$(simNameGen1[i])/\" # make sure this folder exists, this is where the simulation result will be saved\n",
+    "    runMetaVoxels!(setupSim,savedDataFolderPath,\"CPU\");\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 37,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "\u001b[32mGen 2 Simulation... 100%|████████████████████████████████| Time: 0:01:06\u001b[39m\n"
+     ]
+    }
+   ],
+   "source": [
+    "# gen 2\n",
+    "@showprogress 1 \"Gen 2 Simulation...\" for i in 1:n_gen\n",
+    "    setupSim=getSetup(simNameGen2[i]); #get simulation from\"./json/$(simName).json\"\n",
+    "    savedDataFolderPath=\"../json/$(simNameGen2[i])/\" # make sure this folder exists, this is where the simulation result will be saved\n",
+    "    runMetaVoxels!(setupSim,savedDataFolderPath,\"CPU\");\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## 4. Visualize \n",
+    "(only need to run it once to open the server then press stop, the server will keep running and other changes will update automatically.. will change later)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 33,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Server listening on port 8000\n",
+      "Open http://localhost:8000/demos/indexTutorialGraph.html in your browser\n"
+     ]
+    },
+    {
+     "ename": "LoadError",
+     "evalue": "InterruptException:",
+     "output_type": "error",
+     "traceback": [
+      "InterruptException:",
+      "",
+      "Stacktrace:",
+      "  [1] try_yieldto(undo::typeof(Base.ensure_rescheduled))",
+      "    @ Base .\\task.jl:710",
+      "  [2] wait()",
+      "    @ Base .\\task.jl:770",
+      "  [3] wait(c::Base.GenericCondition{SpinLock})",
+      "    @ Base .\\condition.jl:106",
+      "  [4] wait(x::Base.Process)",
+      "    @ Base .\\process.jl:621",
+      "  [5] success",
+      "    @ .\\process.jl:483 [inlined]",
+      "  [6] run(::Cmd; wait::Bool)",
+      "    @ Base .\\process.jl:440",
+      "  [7] run(::Cmd)",
+      "    @ Base .\\process.jl:438",
+      "  [8] top-level scope",
+      "    @ In[33]:3",
+      "  [9] eval",
+      "    @ .\\boot.jl:360 [inlined]",
+      " [10] include_string(mapexpr::typeof(REPL.softscope), mod::Module, code::String, filename::String)",
+      "    @ Base .\\loading.jl:1116"
+     ]
+    }
+   ],
+   "source": [
+    "#run node.js to serve the indexTutorial.html for visualizarion\n",
+    "mycommand = `node ../node/serve.js Example`\n",
+    "run(mycommand)\n",
+    "\n",
+    "# vis 1 stable\n",
+    "# http://localhost:8080/demos/indexExampleGraph.html\n",
+    "\n",
+    "# vis 2 faster for larger simulations\n",
+    "# http://localhost:8080/demos/indexExampleGraph.html\n",
+    "\n",
+    "# vis 3 (GPU Shaders) even faster (max 40 timesteps)"
+   ]
+  }
+ ],
+ "metadata": {
+  "@webio": {
+   "lastCommId": null,
+   "lastKernelId": null
+  },
+  "kernelspec": {
+   "display_name": "Julia 1.6.3",
+   "language": "julia",
+   "name": "julia-1.6"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.6.3"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
-- 
GitLab