Rename RenderPriority -> ZIndex

This commit is contained in:
Júlio César Batista 2022-11-29 15:50:18 -08:00
parent cf527672b1
commit 0fc1294ae6
No known key found for this signature in database
GPG key ID: 10C4B861BF314878
390 changed files with 2790 additions and 3855 deletions

View file

@ -20,13 +20,13 @@ func Export(ctx context.Context, g *d2graph.Graph, themeID int64) (*d2target.Dia
highestObjectPriority := 0
for i := range g.Objects {
diagram.Shapes[i] = toShape(g.Objects[i], &theme)
highestObjectPriority = go2.IntMax(highestObjectPriority, diagram.Shapes[i].RenderPriority)
highestObjectPriority = go2.IntMax(highestObjectPriority, diagram.Shapes[i].ZIndex)
}
edgeDefaultRenderPriority := highestObjectPriority + 1
edgeDefaultZIndex := highestObjectPriority + 1
diagram.Connections = make([]d2target.Connection, len(g.Edges))
for i := range g.Edges {
diagram.Connections[i] = toConnection(g.Edges[i], &theme, edgeDefaultRenderPriority)
diagram.Connections[i] = toConnection(g.Edges[i], &theme, edgeDefaultZIndex)
}
return diagram, nil
@ -92,10 +92,10 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
shape := d2target.BaseShape()
shape.SetType(obj.Attributes.Shape.Value)
shape.ID = obj.AbsID()
if obj.RenderPriority == nil {
shape.RenderPriority = int(obj.Level())
if obj.ZIndex == nil {
shape.ZIndex = int(obj.Level())
} else {
shape.RenderPriority = *obj.RenderPriority
shape.ZIndex = *obj.ZIndex
}
shape.Pos = d2target.NewPoint(int(obj.TopLeft.X), int(obj.TopLeft.Y))
shape.Width = int(obj.Width)
@ -138,13 +138,13 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
return *shape
}
func toConnection(edge *d2graph.Edge, theme *d2themes.Theme, defaultRenderPriotity int) d2target.Connection {
func toConnection(edge *d2graph.Edge, theme *d2themes.Theme, defaultZIndex int) d2target.Connection {
connection := d2target.BaseConnection()
connection.ID = edge.AbsID()
if edge.RenderPriority == nil {
connection.RenderPriority = defaultRenderPriotity
if edge.ZIndex == nil {
connection.ZIndex = defaultZIndex
} else {
connection.RenderPriority = *edge.RenderPriority
connection.ZIndex = *edge.ZIndex
}
// edge.Edge.ID = go2.StringToIntHash(connection.ID)
text := edge.Text()

View file

@ -79,7 +79,7 @@ type Object struct {
Attributes Attributes `json:"attributes"`
RenderPriority *int `json:"renderPriority,omitempty"`
ZIndex *int `json:"zIndex,omitempty"`
}
type Attributes struct {
@ -633,7 +633,7 @@ type Edge struct {
References []EdgeReference `json:"references,omitempty"`
Attributes Attributes `json:"attributes"`
RenderPriority *int `json:"renderPriority,omitempty"`
ZIndex *int `json:"zIndex,omitempty"`
}
type EdgeReference struct {

View file

@ -994,7 +994,7 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
}
sort.SliceStable(allObjects, func(i, j int) bool {
return allObjects[i].GetPriority() < allObjects[j].GetPriority()
return allObjects[i].GetZIndex() < allObjects[j].GetZIndex()
})
markers := map[string]struct{}{}

View file

@ -18,7 +18,7 @@ const (
)
type DiagramObject interface {
GetPriority() int
GetZIndex() int
}
type Diagram struct {
@ -121,7 +121,7 @@ type Shape struct {
LabelPosition string `json:"labelPosition,omitempty"`
RenderPriority int `json:"renderPriority"`
ZIndex int `json:"zIndex"`
}
func (s *Shape) SetType(t string) {
@ -135,8 +135,8 @@ func (s *Shape) SetType(t string) {
s.Type = strings.ToLower(t)
}
func (s Shape) GetPriority() int {
return s.RenderPriority
func (s Shape) GetZIndex() int {
return s.ZIndex
}
type Text struct {
@ -193,7 +193,7 @@ type Connection struct {
Tooltip string `json:"tooltip"`
Icon *url.URL `json:"icon"`
RenderPriority int `json:"renderPriority"`
ZIndex int `json:"zIndex"`
}
func BaseConnection() *Connection {
@ -221,8 +221,8 @@ func (c *Connection) GetLabelTopLeft() *geo.Point {
)
}
func (c Connection) GetPriority() int {
return c.RenderPriority
func (c Connection) GetZIndex() int {
return c.ZIndex
}
type Arrowhead string

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -163,7 +163,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -211,7 +211,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -154,7 +154,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -201,7 +201,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -125,7 +125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -116,7 +116,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c.d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -213,7 +213,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c.d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -125,7 +125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -116,7 +116,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "page",
@ -113,7 +113,7 @@
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "parallelogram",
@ -151,7 +151,7 @@
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "document",
@ -189,7 +189,7 @@
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cylinder",
@ -227,7 +227,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "queue",
@ -265,7 +265,7 @@
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "package",
@ -303,7 +303,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "step",
@ -341,7 +341,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "callout",
@ -379,7 +379,7 @@
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "stored_data",
@ -417,7 +417,7 @@
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "person",
@ -455,7 +455,7 @@
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "diamond",
@ -493,7 +493,7 @@
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "oval",
@ -531,7 +531,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "circle",
@ -569,7 +569,7 @@
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hexagon",
@ -607,7 +607,7 @@
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cloud",
@ -645,7 +645,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -695,7 +695,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(square -> page)[0]",
@ -743,7 +743,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(parallelogram -> document)[0]",
@ -791,7 +791,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(document -> cylinder)[0]",
@ -839,7 +839,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(queue -> package)[0]",
@ -887,7 +887,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(package -> step)[0]",
@ -935,7 +935,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(callout -> stored_data)[0]",
@ -983,7 +983,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(stored_data -> person)[0]",
@ -1031,7 +1031,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(diamond -> oval)[0]",
@ -1079,7 +1079,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(oval -> circle)[0]",
@ -1127,7 +1127,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hexagon -> cloud)[0]",
@ -1175,7 +1175,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "page",
@ -113,7 +113,7 @@
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "parallelogram",
@ -151,7 +151,7 @@
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "document",
@ -189,7 +189,7 @@
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cylinder",
@ -227,7 +227,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "queue",
@ -265,7 +265,7 @@
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "package",
@ -303,7 +303,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "step",
@ -341,7 +341,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "callout",
@ -379,7 +379,7 @@
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "stored_data",
@ -417,7 +417,7 @@
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "person",
@ -455,7 +455,7 @@
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "diamond",
@ -493,7 +493,7 @@
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "oval",
@ -531,7 +531,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "circle",
@ -569,7 +569,7 @@
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hexagon",
@ -607,7 +607,7 @@
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cloud",
@ -645,7 +645,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -686,7 +686,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(square -> page)[0]",
@ -725,7 +725,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(parallelogram -> document)[0]",
@ -764,7 +764,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(document -> cylinder)[0]",
@ -803,7 +803,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(queue -> package)[0]",
@ -842,7 +842,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(package -> step)[0]",
@ -881,7 +881,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(callout -> stored_data)[0]",
@ -920,7 +920,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(stored_data -> person)[0]",
@ -959,7 +959,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(diamond -> oval)[0]",
@ -998,7 +998,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(oval -> circle)[0]",
@ -1037,7 +1037,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hexagon -> cloud)[0]",
@ -1076,7 +1076,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "page",
@ -113,7 +113,7 @@
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "parallelogram",
@ -151,7 +151,7 @@
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "document",
@ -189,7 +189,7 @@
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cylinder",
@ -227,7 +227,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "queue",
@ -265,7 +265,7 @@
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "package",
@ -303,7 +303,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "step",
@ -341,7 +341,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "callout",
@ -379,7 +379,7 @@
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "stored_data",
@ -417,7 +417,7 @@
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "person",
@ -455,7 +455,7 @@
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "diamond",
@ -493,7 +493,7 @@
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "oval",
@ -531,7 +531,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "circle",
@ -569,7 +569,7 @@
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hexagon",
@ -607,7 +607,7 @@
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cloud",
@ -645,7 +645,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -695,7 +695,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(square -> page)[0]",
@ -743,7 +743,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(parallelogram -> document)[0]",
@ -791,7 +791,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(document -> cylinder)[0]",
@ -839,7 +839,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(queue -> package)[0]",
@ -887,7 +887,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(package -> step)[0]",
@ -935,7 +935,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(callout -> stored_data)[0]",
@ -983,7 +983,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(stored_data -> person)[0]",
@ -1031,7 +1031,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(diamond -> oval)[0]",
@ -1079,7 +1079,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(oval -> circle)[0]",
@ -1127,7 +1127,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hexagon -> cloud)[0]",
@ -1175,7 +1175,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "page",
@ -113,7 +113,7 @@
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "parallelogram",
@ -151,7 +151,7 @@
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "document",
@ -189,7 +189,7 @@
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cylinder",
@ -227,7 +227,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "queue",
@ -265,7 +265,7 @@
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "package",
@ -303,7 +303,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "step",
@ -341,7 +341,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "callout",
@ -379,7 +379,7 @@
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "stored_data",
@ -417,7 +417,7 @@
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "person",
@ -455,7 +455,7 @@
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "diamond",
@ -493,7 +493,7 @@
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "oval",
@ -531,7 +531,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "circle",
@ -569,7 +569,7 @@
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hexagon",
@ -607,7 +607,7 @@
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cloud",
@ -645,7 +645,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -686,7 +686,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(square -> page)[0]",
@ -725,7 +725,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(parallelogram -> document)[0]",
@ -764,7 +764,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(document -> cylinder)[0]",
@ -803,7 +803,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(queue -> package)[0]",
@ -842,7 +842,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(package -> step)[0]",
@ -881,7 +881,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(callout -> stored_data)[0]",
@ -920,7 +920,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(stored_data -> person)[0]",
@ -959,7 +959,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(diamond -> oval)[0]",
@ -998,7 +998,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(oval -> circle)[0]",
@ -1037,7 +1037,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hexagon -> cloud)[0]",
@ -1076,7 +1076,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "page",
@ -113,7 +113,7 @@
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "parallelogram",
@ -151,7 +151,7 @@
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "document",
@ -189,7 +189,7 @@
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cylinder",
@ -227,7 +227,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "queue",
@ -265,7 +265,7 @@
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "package",
@ -303,7 +303,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "step",
@ -341,7 +341,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "callout",
@ -379,7 +379,7 @@
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "stored_data",
@ -417,7 +417,7 @@
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "person",
@ -455,7 +455,7 @@
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "diamond",
@ -493,7 +493,7 @@
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "oval",
@ -531,7 +531,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "circle",
@ -569,7 +569,7 @@
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hexagon",
@ -607,7 +607,7 @@
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cloud",
@ -645,7 +645,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -695,7 +695,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(square -> page)[0]",
@ -743,7 +743,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(parallelogram -> document)[0]",
@ -791,7 +791,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(document -> cylinder)[0]",
@ -839,7 +839,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(queue -> package)[0]",
@ -887,7 +887,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(package -> step)[0]",
@ -935,7 +935,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(callout -> stored_data)[0]",
@ -983,7 +983,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(stored_data -> person)[0]",
@ -1031,7 +1031,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(diamond -> oval)[0]",
@ -1079,7 +1079,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(oval -> circle)[0]",
@ -1127,7 +1127,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hexagon -> cloud)[0]",
@ -1175,7 +1175,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "page",
@ -113,7 +113,7 @@
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "parallelogram",
@ -151,7 +151,7 @@
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "document",
@ -189,7 +189,7 @@
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cylinder",
@ -227,7 +227,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "queue",
@ -265,7 +265,7 @@
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "package",
@ -303,7 +303,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "step",
@ -341,7 +341,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "callout",
@ -379,7 +379,7 @@
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "stored_data",
@ -417,7 +417,7 @@
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "person",
@ -455,7 +455,7 @@
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "diamond",
@ -493,7 +493,7 @@
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "oval",
@ -531,7 +531,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "circle",
@ -569,7 +569,7 @@
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hexagon",
@ -607,7 +607,7 @@
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cloud",
@ -645,7 +645,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -686,7 +686,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(square -> page)[0]",
@ -725,7 +725,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(parallelogram -> document)[0]",
@ -764,7 +764,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(document -> cylinder)[0]",
@ -803,7 +803,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(queue -> package)[0]",
@ -842,7 +842,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(package -> step)[0]",
@ -881,7 +881,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(callout -> stored_data)[0]",
@ -920,7 +920,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(stored_data -> person)[0]",
@ -959,7 +959,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(diamond -> oval)[0]",
@ -998,7 +998,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(oval -> circle)[0]",
@ -1037,7 +1037,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hexagon -> cloud)[0]",
@ -1076,7 +1076,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "Oval",
@ -150,7 +150,7 @@
"underline": false,
"labelWidth": 0,
"labelHeight": 0,
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -200,7 +200,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> b)[0]",
@ -260,7 +260,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a <-> Oval)[0]",
@ -308,7 +308,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -- a)[0]",
@ -356,7 +356,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(Oval <-> c)[0]",
@ -416,7 +416,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "Oval",
@ -150,7 +150,7 @@
"underline": false,
"labelWidth": 0,
"labelHeight": 0,
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -199,7 +199,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> b)[0]",
@ -238,7 +238,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a <-> Oval)[0]",
@ -277,7 +277,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -- a)[0]",
@ -324,7 +324,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(Oval <-> c)[0]",
@ -379,7 +379,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -125,7 +125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -116,7 +116,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -619,7 +619,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -667,7 +667,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> d)[0]",
@ -715,7 +715,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> e)[0]",
@ -763,7 +763,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> f)[0]",
@ -811,7 +811,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> g)[0]",
@ -859,7 +859,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> h)[0]",
@ -907,7 +907,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> i)[0]",
@ -955,7 +955,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> j)[0]",
@ -1003,7 +1003,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> k)[0]",
@ -1051,7 +1051,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> l)[0]",
@ -1099,7 +1099,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> m)[0]",
@ -1147,7 +1147,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> n)[0]",
@ -1195,7 +1195,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> o)[0]",
@ -1243,7 +1243,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -610,7 +610,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -657,7 +657,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> d)[0]",
@ -704,7 +704,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> e)[0]",
@ -743,7 +743,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> f)[0]",
@ -790,7 +790,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> g)[0]",
@ -829,7 +829,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> h)[0]",
@ -868,7 +868,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> i)[0]",
@ -915,7 +915,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> j)[0]",
@ -954,7 +954,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> k)[0]",
@ -1001,7 +1001,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> l)[0]",
@ -1040,7 +1040,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> m)[0]",
@ -1087,7 +1087,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> n)[0]",
@ -1134,7 +1134,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> o)[0]",
@ -1173,7 +1173,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 46,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "aaa.bbb",
@ -75,7 +75,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ddd",
@ -113,7 +113,7 @@
"labelWidth": 33,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "eee",
@ -151,7 +151,7 @@
"labelWidth": 30,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "aaa.ccc",
@ -189,7 +189,7 @@
"labelWidth": 28,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -239,7 +239,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(eee <- aaa.ccc)[0]",
@ -287,7 +287,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 46,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "aaa.bbb",
@ -75,7 +75,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ddd",
@ -113,7 +113,7 @@
"labelWidth": 33,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "eee",
@ -151,7 +151,7 @@
"labelWidth": 30,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "aaa.ccc",
@ -189,7 +189,7 @@
"labelWidth": 28,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -230,7 +230,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(eee <- aaa.ccc)[0]",
@ -269,7 +269,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "aa.bb",
@ -75,7 +75,7 @@
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.bb.cc",
@ -113,7 +113,7 @@
"labelWidth": 24,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "aa.bb.cc.dd",
@ -151,7 +151,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.cc.dd.ee",
@ -188,7 +188,7 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 24,
"renderPriority": 5
"zIndex": 5
},
{
"id": "aa.bb.cc.dd.ff",
@ -226,7 +226,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 5
"zIndex": 5
},
{
"id": "aa.bb.cc.gg",
@ -263,7 +263,7 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 24,
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.cc.hh",
@ -301,7 +301,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.ii",
@ -339,7 +339,7 @@
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "aa.bb.ii.jj",
@ -377,7 +377,7 @@
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.kk",
@ -415,7 +415,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "aa.ll",
@ -453,7 +453,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.mm",
@ -491,7 +491,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.nn",
@ -528,7 +528,7 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 24,
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.oo",
@ -566,7 +566,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -616,7 +616,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.bb.cc.(gg -- hh)[0]",
@ -664,7 +664,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.bb.(ii -> cc.dd)[0]",
@ -760,7 +760,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(ll <-> bb)[0]",
@ -808,7 +808,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm -> bb.cc)[0]",
@ -868,7 +868,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm -> ll)[0]",
@ -916,7 +916,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm <-> bb)[0]",
@ -964,7 +964,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(ll <-> bb.cc.gg)[0]",
@ -1060,7 +1060,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm <- bb.ii)[0]",
@ -1108,7 +1108,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(bb.cc <- ll)[0]",
@ -1156,7 +1156,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(bb.ii <-> ll)[0]",
@ -1216,7 +1216,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "aa.bb",
@ -75,7 +75,7 @@
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.bb.cc",
@ -113,7 +113,7 @@
"labelWidth": 24,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "aa.bb.cc.dd",
@ -151,7 +151,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.cc.dd.ee",
@ -188,7 +188,7 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 24,
"renderPriority": 5
"zIndex": 5
},
{
"id": "aa.bb.cc.dd.ff",
@ -226,7 +226,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 5
"zIndex": 5
},
{
"id": "aa.bb.cc.gg",
@ -263,7 +263,7 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 24,
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.cc.hh",
@ -301,7 +301,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.ii",
@ -339,7 +339,7 @@
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "aa.bb.ii.jj",
@ -377,7 +377,7 @@
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "aa.bb.kk",
@ -415,7 +415,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "aa.ll",
@ -453,7 +453,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.mm",
@ -491,7 +491,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.nn",
@ -528,7 +528,7 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 24,
"renderPriority": 2
"zIndex": 2
},
{
"id": "aa.oo",
@ -566,7 +566,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -607,7 +607,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.bb.cc.(gg -- hh)[0]",
@ -646,7 +646,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.bb.(ii -> cc.dd)[0]",
@ -693,7 +693,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(ll <-> bb)[0]",
@ -748,7 +748,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm -> bb.cc)[0]",
@ -803,7 +803,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm -> ll)[0]",
@ -850,7 +850,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm <-> bb)[0]",
@ -905,7 +905,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(ll <-> bb.cc.gg)[0]",
@ -960,7 +960,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(mm <- bb.ii)[0]",
@ -1007,7 +1007,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(bb.cc <- ll)[0]",
@ -1062,7 +1062,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
},
{
"id": "aa.(bb.ii <-> ll)[0]",
@ -1125,7 +1125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 6
"zIndex": 6
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 17,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "a.b.c",
@ -113,7 +113,7 @@
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "a.b.c.d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
}
],
"connections": [
@ -237,7 +237,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "a.(b -> b.c)[0]",
@ -321,7 +321,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "a.(b.c.d -> b)[0]",
@ -369,7 +369,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 17,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "a.b.c",
@ -113,7 +113,7 @@
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "a.b.c.d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
}
],
"connections": [
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "a.(b -> b.c)[0]",
@ -231,7 +231,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "a.(b.c.d -> b)[0]",
@ -278,7 +278,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -163,7 +163,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> c)[0]",
@ -211,7 +211,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> b)[0]",
@ -259,7 +259,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> a)[0]",
@ -307,7 +307,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -154,7 +154,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> c)[0]",
@ -193,7 +193,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> b)[0]",
@ -232,7 +232,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> a)[0]",
@ -271,7 +271,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -68,7 +68,7 @@
"underline": false,
"labelWidth": 150,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
}
],
"connections": []

View file

@ -68,7 +68,7 @@
"underline": false,
"labelWidth": 150,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
}
],
"connections": []

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 755,
"labelHeight": 166,
"renderPriority": 1
"zIndex": 1
},
{
"id": "x",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "y",
@ -112,7 +112,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hey -> y)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 755,
"labelHeight": 166,
"renderPriority": 1
"zIndex": 1
},
{
"id": "x",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "y",
@ -112,7 +112,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hey -> y)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c.d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "f",
@ -189,7 +189,7 @@
"labelWidth": 14,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f.h",
@ -227,7 +227,7 @@
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "f.h.g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
}
],
"connections": [
@ -327,7 +327,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(c.d -> f.h.g)[0]",
@ -399,7 +399,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c.d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "f",
@ -189,7 +189,7 @@
"labelWidth": 14,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f.h",
@ -227,7 +227,7 @@
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "f.h.g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
}
],
"connections": [
@ -306,7 +306,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(c.d -> f.h.g)[0]",
@ -345,7 +345,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -75,7 +75,7 @@
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g.b",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d.h",
@ -189,7 +189,7 @@
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "d.h.c",
@ -227,7 +227,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "g.e",
@ -265,7 +265,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "f",
@ -303,7 +303,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -353,7 +353,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(g.b -> d.h.c)[0]",
@ -413,7 +413,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(d -> g.e)[0]",
@ -461,7 +461,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(g.e -> f)[0]",
@ -509,7 +509,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(f -> g)[0]",
@ -557,7 +557,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(g -> d.h)[0]",
@ -605,7 +605,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -75,7 +75,7 @@
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g.b",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d.h",
@ -189,7 +189,7 @@
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "d.h.c",
@ -227,7 +227,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "g.e",
@ -265,7 +265,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "f",
@ -303,7 +303,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -344,7 +344,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(g.b -> d.h.c)[0]",
@ -383,7 +383,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(d -> g.e)[0]",
@ -438,7 +438,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(g.e -> f)[0]",
@ -485,7 +485,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(f -> g)[0]",
@ -532,7 +532,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(g -> d.h)[0]",
@ -571,7 +571,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -695,7 +695,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> b)[0]",
@ -755,7 +755,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> e)[0]",
@ -815,7 +815,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> e)[0]",
@ -875,7 +875,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> f)[0]",
@ -935,7 +935,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> g)[0]",
@ -983,7 +983,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> f)[0]",
@ -1031,7 +1031,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> h)[0]",
@ -1079,7 +1079,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> i)[0]",
@ -1187,7 +1187,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> d)[0]",
@ -1247,7 +1247,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> c)[0]",
@ -1295,7 +1295,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> a)[0]",
@ -1355,7 +1355,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> j)[0]",
@ -1403,7 +1403,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(i -> k)[0]",
@ -1451,7 +1451,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> l)[0]",
@ -1499,7 +1499,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(l -> e)[0]",
@ -1547,7 +1547,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(m -> l)[0]",
@ -1595,7 +1595,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(m -> n)[0]",
@ -1643,7 +1643,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> i)[0]",
@ -1691,7 +1691,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> n)[0]",
@ -1739,7 +1739,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> n)[0]",
@ -1787,7 +1787,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> o)[0]",
@ -1835,7 +1835,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(p -> l)[0]",
@ -1883,7 +1883,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> q)[0]",
@ -1931,7 +1931,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -686,7 +686,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> b)[0]",
@ -733,7 +733,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> e)[0]",
@ -780,7 +780,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> e)[0]",
@ -827,7 +827,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> f)[0]",
@ -874,7 +874,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> g)[0]",
@ -921,7 +921,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> f)[0]",
@ -968,7 +968,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> h)[0]",
@ -1015,7 +1015,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> i)[0]",
@ -1070,7 +1070,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> d)[0]",
@ -1109,7 +1109,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> c)[0]",
@ -1148,7 +1148,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> a)[0]",
@ -1195,7 +1195,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> j)[0]",
@ -1250,7 +1250,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(i -> k)[0]",
@ -1289,7 +1289,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> l)[0]",
@ -1336,7 +1336,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(l -> e)[0]",
@ -1383,7 +1383,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(m -> l)[0]",
@ -1430,7 +1430,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(m -> n)[0]",
@ -1477,7 +1477,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> i)[0]",
@ -1516,7 +1516,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> n)[0]",
@ -1555,7 +1555,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> n)[0]",
@ -1602,7 +1602,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> o)[0]",
@ -1649,7 +1649,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(p -> l)[0]",
@ -1688,7 +1688,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> q)[0]",
@ -1727,7 +1727,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 77,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "tree",
@ -113,7 +113,7 @@
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "and",
@ -151,7 +151,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nodes",
@ -189,7 +189,7 @@
"labelWidth": 47,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "some",
@ -227,7 +227,7 @@
"labelWidth": 43,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "more",
@ -265,7 +265,7 @@
"labelWidth": 41,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "many",
@ -303,7 +303,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "then",
@ -341,7 +341,7 @@
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "here",
@ -379,7 +379,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "you",
@ -417,7 +417,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "have",
@ -455,7 +455,7 @@
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hierarchy",
@ -493,7 +493,7 @@
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "another",
@ -531,7 +531,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "of",
@ -569,7 +569,7 @@
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nesting",
@ -607,7 +607,7 @@
"labelWidth": 58,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "trees",
@ -645,7 +645,7 @@
"labelWidth": 42,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "finally.a",
@ -683,7 +683,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.tree",
@ -721,7 +721,7 @@
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.inside",
@ -759,7 +759,7 @@
"labelWidth": 48,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.hierarchy",
@ -797,7 +797,7 @@
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.root",
@ -835,7 +835,7 @@
"labelWidth": 35,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -885,7 +885,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> and)[0]",
@ -933,7 +933,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> nodes)[0]",
@ -981,7 +981,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(and -> some)[0]",
@ -1029,7 +1029,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(tree -> more)[0]",
@ -1077,7 +1077,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(tree -> many)[0]",
@ -1125,7 +1125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(then -> here)[0]",
@ -1173,7 +1173,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(here -> you)[0]",
@ -1221,7 +1221,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(have -> hierarchy)[0]",
@ -1269,7 +1269,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(then -> hierarchy)[0]",
@ -1317,7 +1317,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(finally -> another)[0]",
@ -1365,7 +1365,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(another -> of)[0]",
@ -1413,7 +1413,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(nesting -> trees)[0]",
@ -1461,7 +1461,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(finally -> trees)[0]",
@ -1509,7 +1509,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(a -> tree)[0]",
@ -1557,7 +1557,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(inside -> a)[0]",
@ -1605,7 +1605,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(tree -> hierarchy)[0]",
@ -1653,7 +1653,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(a -> root)[0]",
@ -1701,7 +1701,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 77,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "tree",
@ -113,7 +113,7 @@
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "and",
@ -151,7 +151,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nodes",
@ -189,7 +189,7 @@
"labelWidth": 47,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "some",
@ -227,7 +227,7 @@
"labelWidth": 43,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "more",
@ -265,7 +265,7 @@
"labelWidth": 41,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "many",
@ -303,7 +303,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "then",
@ -341,7 +341,7 @@
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "here",
@ -379,7 +379,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "you",
@ -417,7 +417,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "have",
@ -455,7 +455,7 @@
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "hierarchy",
@ -493,7 +493,7 @@
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "another",
@ -531,7 +531,7 @@
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "of",
@ -569,7 +569,7 @@
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nesting",
@ -607,7 +607,7 @@
"labelWidth": 58,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "trees",
@ -645,7 +645,7 @@
"labelWidth": 42,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "finally.a",
@ -683,7 +683,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.tree",
@ -721,7 +721,7 @@
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.inside",
@ -759,7 +759,7 @@
"labelWidth": 48,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.hierarchy",
@ -797,7 +797,7 @@
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "finally.root",
@ -835,7 +835,7 @@
"labelWidth": 35,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -884,7 +884,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> and)[0]",
@ -931,7 +931,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> nodes)[0]",
@ -970,7 +970,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(and -> some)[0]",
@ -1009,7 +1009,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(tree -> more)[0]",
@ -1048,7 +1048,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(tree -> many)[0]",
@ -1095,7 +1095,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(then -> here)[0]",
@ -1134,7 +1134,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(here -> you)[0]",
@ -1173,7 +1173,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(have -> hierarchy)[0]",
@ -1212,7 +1212,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(then -> hierarchy)[0]",
@ -1259,7 +1259,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(finally -> another)[0]",
@ -1298,7 +1298,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(another -> of)[0]",
@ -1337,7 +1337,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(nesting -> trees)[0]",
@ -1376,7 +1376,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(finally -> trees)[0]",
@ -1423,7 +1423,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(a -> tree)[0]",
@ -1470,7 +1470,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(inside -> a)[0]",
@ -1509,7 +1509,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(tree -> hierarchy)[0]",
@ -1548,7 +1548,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "finally.(a -> root)[0]",
@ -1587,7 +1587,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "beta",
@ -75,7 +75,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -125,7 +125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "beta",
@ -75,7 +75,7 @@
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -116,7 +116,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 3051,
"labelHeight": 4848,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 3051,
"labelHeight": 4848,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 738,
"labelHeight": 134,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 738,
"labelHeight": 134,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -48,7 +48,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -97,7 +97,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -147,7 +147,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -48,7 +48,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -97,7 +97,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -138,7 +138,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "bb",
@ -75,7 +75,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cc",
@ -113,7 +113,7 @@
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "dd",
@ -151,7 +151,7 @@
"labelWidth": 34,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "dd.ee",
@ -189,7 +189,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ll",
@ -227,7 +227,7 @@
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ll.mm",
@ -265,7 +265,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ff",
@ -303,7 +303,7 @@
"labelWidth": 23,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ff.mm",
@ -341,7 +341,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ff.gg",
@ -379,7 +379,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "dd.hh",
@ -417,7 +417,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ww",
@ -466,7 +466,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "yy",
@ -504,7 +504,7 @@
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "yy.zz",
@ -553,7 +553,7 @@
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ad",
@ -591,7 +591,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nn",
@ -629,7 +629,7 @@
"labelWidth": 33,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ii",
@ -667,7 +667,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "jj",
@ -705,7 +705,7 @@
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "kk",
@ -743,7 +743,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nn.oo",
@ -781,7 +781,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ff.pp",
@ -819,7 +819,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ll.qq",
@ -857,7 +857,7 @@
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ll.rr",
@ -895,7 +895,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ss",
@ -933,7 +933,7 @@
"labelWidth": 28,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ss.tt",
@ -971,7 +971,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "uu",
@ -1009,7 +1009,7 @@
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "uu.vv",
@ -1047,7 +1047,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "rm",
@ -1085,7 +1085,7 @@
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nn.xx",
@ -1123,7 +1123,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "yy.ab",
@ -1161,7 +1161,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "nn.ac",
@ -1199,7 +1199,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -1249,7 +1249,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(bb -- cc)[0]",
@ -1297,7 +1297,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(aa -> dd.ee)[0]",
@ -1393,7 +1393,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(bb -> ff.gg)[0]",
@ -1657,7 +1657,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(cc -> dd.hh)[0]",
@ -1705,7 +1705,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(dd.ee -> ii)[0]",
@ -1753,7 +1753,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ii -- jj)[0]",
@ -1801,7 +1801,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(jj -> kk)[0]",
@ -1861,7 +1861,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(kk -> ff.mm)[0]",
@ -1969,7 +1969,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ff.mm -> ll.mm)[0]",
@ -2053,7 +2053,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ll.mm -> nn.oo)[0]",
@ -2185,7 +2185,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "ff.(gg -> pp)[0]",
@ -2233,7 +2233,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ff.pp -> ll.qq)[0]",
@ -2293,7 +2293,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "ll.(qq -> rr)[0]",
@ -2341,7 +2341,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(dd.hh -> ss.tt)[0]",
@ -2425,7 +2425,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ss.tt -> uu.vv)[0]",
@ -2485,7 +2485,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(kk -> ww)[0]",
@ -2533,7 +2533,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(uu.vv -> ww)[0]",
@ -2581,7 +2581,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ww -> rm)[0]",
@ -2725,7 +2725,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(rm -> nn.xx)[0]",
@ -2857,7 +2857,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ll.rr -> yy.zz)[0]",
@ -2917,7 +2917,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(rm -> yy.zz)[0]",
@ -2977,7 +2977,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "yy.(zz -> ab)[0]",
@ -3025,7 +3025,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(yy.ab -> nn.ac)[0]",
@ -3085,7 +3085,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(nn.ac -> ad)[0]",
@ -3133,7 +3133,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ww -> ff.gg)[0]",
@ -3181,7 +3181,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "bb",
@ -75,7 +75,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "cc",
@ -113,7 +113,7 @@
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "dd",
@ -151,7 +151,7 @@
"labelWidth": 34,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "dd.ee",
@ -189,7 +189,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ll",
@ -227,7 +227,7 @@
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ll.mm",
@ -265,7 +265,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ff",
@ -303,7 +303,7 @@
"labelWidth": 23,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ff.mm",
@ -341,7 +341,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ff.gg",
@ -379,7 +379,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "dd.hh",
@ -417,7 +417,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ww",
@ -466,7 +466,7 @@
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "yy",
@ -504,7 +504,7 @@
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "yy.zz",
@ -553,7 +553,7 @@
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ad",
@ -591,7 +591,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nn",
@ -629,7 +629,7 @@
"labelWidth": 33,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ii",
@ -667,7 +667,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "jj",
@ -705,7 +705,7 @@
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "kk",
@ -743,7 +743,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nn.oo",
@ -781,7 +781,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ff.pp",
@ -819,7 +819,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ll.qq",
@ -857,7 +857,7 @@
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ll.rr",
@ -895,7 +895,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "ss",
@ -933,7 +933,7 @@
"labelWidth": 28,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "ss.tt",
@ -971,7 +971,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "uu",
@ -1009,7 +1009,7 @@
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "uu.vv",
@ -1047,7 +1047,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "rm",
@ -1085,7 +1085,7 @@
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "nn.xx",
@ -1123,7 +1123,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "yy.ab",
@ -1161,7 +1161,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "nn.ac",
@ -1199,7 +1199,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -1248,7 +1248,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(bb -- cc)[0]",
@ -1287,7 +1287,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(aa -> dd.ee)[0]",
@ -1326,7 +1326,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(bb -> ff.gg)[0]",
@ -1381,7 +1381,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(cc -> dd.hh)[0]",
@ -1420,7 +1420,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(dd.ee -> ii)[0]",
@ -1459,7 +1459,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ii -- jj)[0]",
@ -1498,7 +1498,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(jj -> kk)[0]",
@ -1537,7 +1537,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(kk -> ff.mm)[0]",
@ -1576,7 +1576,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ff.mm -> ll.mm)[0]",
@ -1615,7 +1615,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ll.mm -> nn.oo)[0]",
@ -1654,7 +1654,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "ff.(gg -> pp)[0]",
@ -1693,7 +1693,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ff.pp -> ll.qq)[0]",
@ -1732,7 +1732,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "ll.(qq -> rr)[0]",
@ -1771,7 +1771,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(dd.hh -> ss.tt)[0]",
@ -1818,7 +1818,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ss.tt -> uu.vv)[0]",
@ -1857,7 +1857,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(kk -> ww)[0]",
@ -1904,7 +1904,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(uu.vv -> ww)[0]",
@ -1943,7 +1943,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ww -> rm)[0]",
@ -1982,7 +1982,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(rm -> nn.xx)[0]",
@ -2037,7 +2037,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ll.rr -> yy.zz)[0]",
@ -2084,7 +2084,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(rm -> yy.zz)[0]",
@ -2123,7 +2123,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "yy.(zz -> ab)[0]",
@ -2162,7 +2162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(yy.ab -> nn.ac)[0]",
@ -2209,7 +2209,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(nn.ac -> ad)[0]",
@ -2248,7 +2248,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(ww -> ff.gg)[0]",
@ -2295,7 +2295,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i.j",
@ -379,7 +379,7 @@
"labelWidth": 11,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.j.k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "i.j.l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "i.m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.o",
@ -569,7 +569,7 @@
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.o.p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r",
@ -683,7 +683,7 @@
"labelWidth": 13,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r.s",
@ -721,7 +721,7 @@
"labelWidth": 15,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.s.t",
@ -759,7 +759,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.u",
@ -797,7 +797,7 @@
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.u.v",
@ -835,7 +835,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "r.s.w",
@ -873,7 +873,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.x",
@ -911,7 +911,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.y",
@ -949,7 +949,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.z",
@ -987,7 +987,7 @@
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.aa",
@ -1025,7 +1025,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.bb",
@ -1063,7 +1063,7 @@
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.bb.cc",
@ -1101,7 +1101,7 @@
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.bb.dd",
@ -1139,7 +1139,7 @@
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.ee",
@ -1177,7 +1177,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.ff",
@ -1215,7 +1215,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.gg",
@ -1253,7 +1253,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -1327,7 +1327,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "i.(j.l -> o.p)[0]",
@ -1399,7 +1399,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(q -> i.m)[0]",
@ -1459,7 +1459,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> q)[0]",
@ -1519,7 +1519,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.n -> q)[0]",
@ -1579,7 +1579,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> c)[0]",
@ -1639,7 +1639,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> d)[0]",
@ -1699,7 +1699,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> g)[0]",
@ -1759,7 +1759,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> f)[0]",
@ -1819,7 +1819,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(d -> e)[0]",
@ -1867,7 +1867,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.s.(x -> t)[0]",
@ -1939,7 +1939,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.s.(x -> w)[0]",
@ -2011,7 +2011,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(gg -> s.t)[0]",
@ -2083,7 +2083,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(s.u.v -> z)[0]",
@ -2155,7 +2155,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(aa -> s.t)[0]",
@ -2227,7 +2227,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(r.s.w -> i.m)[0]",
@ -2299,7 +2299,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(r.s.t -> g)[0]",
@ -2419,7 +2419,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(r.s.t -> h)[0]",
@ -2491,7 +2491,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(ee -> ff)[0]",
@ -2563,7 +2563,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i.j",
@ -379,7 +379,7 @@
"labelWidth": 11,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.j.k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "i.j.l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "i.m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.o",
@ -569,7 +569,7 @@
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "i.o.p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r",
@ -683,7 +683,7 @@
"labelWidth": 13,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r.s",
@ -721,7 +721,7 @@
"labelWidth": 15,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.s.t",
@ -759,7 +759,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.u",
@ -797,7 +797,7 @@
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.u.v",
@ -835,7 +835,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 4
"zIndex": 4
},
{
"id": "r.s.w",
@ -873,7 +873,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.x",
@ -911,7 +911,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.s.y",
@ -949,7 +949,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.z",
@ -987,7 +987,7 @@
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.aa",
@ -1025,7 +1025,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.bb",
@ -1063,7 +1063,7 @@
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.bb.cc",
@ -1101,7 +1101,7 @@
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.bb.dd",
@ -1139,7 +1139,7 @@
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "r.ee",
@ -1177,7 +1177,7 @@
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.ff",
@ -1215,7 +1215,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "r.gg",
@ -1253,7 +1253,7 @@
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -1302,7 +1302,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "i.(j.l -> o.p)[0]",
@ -1341,7 +1341,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(q -> i.m)[0]",
@ -1396,7 +1396,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> q)[0]",
@ -1443,7 +1443,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.n -> q)[0]",
@ -1482,7 +1482,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> c)[0]",
@ -1529,7 +1529,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> d)[0]",
@ -1576,7 +1576,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> g)[0]",
@ -1623,7 +1623,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(i.m -> f)[0]",
@ -1670,7 +1670,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(d -> e)[0]",
@ -1709,7 +1709,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.s.(x -> t)[0]",
@ -1756,7 +1756,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.s.(x -> w)[0]",
@ -1795,7 +1795,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(gg -> s.t)[0]",
@ -1834,7 +1834,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(s.u.v -> z)[0]",
@ -1873,7 +1873,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(aa -> s.t)[0]",
@ -1920,7 +1920,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(r.s.w -> i.m)[0]",
@ -1959,7 +1959,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(r.s.t -> g)[0]",
@ -2006,7 +2006,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "(r.s.t -> h)[0]",
@ -2053,7 +2053,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
},
{
"id": "r.(ee -> ff)[0]",
@ -2092,7 +2092,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 5
"zIndex": 5
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 382,
"labelHeight": 101,
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -73,7 +73,7 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 18,
"renderPriority": 1
"zIndex": 1
},
{
"id": "z",
@ -110,7 +110,7 @@
"underline": false,
"labelWidth": 179,
"labelHeight": 51,
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -148,7 +148,7 @@
"labelWidth": 114,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "sugar",
@ -186,7 +186,7 @@
"labelWidth": 46,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "solution",
@ -224,7 +224,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -274,7 +274,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(z -> b)[0]",
@ -322,7 +322,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -370,7 +370,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> c)[0]",
@ -418,7 +418,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(sugar -> c)[0]",
@ -466,7 +466,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> solution)[0]",
@ -514,7 +514,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 382,
"labelHeight": 101,
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -73,7 +73,7 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 18,
"renderPriority": 1
"zIndex": 1
},
{
"id": "z",
@ -110,7 +110,7 @@
"underline": false,
"labelWidth": 179,
"labelHeight": 51,
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -148,7 +148,7 @@
"labelWidth": 114,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "sugar",
@ -186,7 +186,7 @@
"labelWidth": 46,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "solution",
@ -224,7 +224,7 @@
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -273,7 +273,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(z -> b)[0]",
@ -312,7 +312,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -359,7 +359,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(b -> c)[0]",
@ -398,7 +398,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(sugar -> c)[0]",
@ -445,7 +445,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> solution)[0]",
@ -484,7 +484,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 379,
"labelHeight": 100,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 379,
"labelHeight": 100,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 245,
"labelHeight": 76,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 245,
"labelHeight": 76,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 347,
"labelHeight": 512,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 347,
"labelHeight": 512,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 920,
"labelHeight": 376,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 920,
"labelHeight": 376,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 266,
"labelHeight": 50,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 266,
"labelHeight": 50,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 531,
"labelHeight": 186,
"renderPriority": 1
"zIndex": 1
},
{
"id": "x",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "y",
@ -112,7 +112,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hey -> y)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 531,
"labelHeight": 186,
"renderPriority": 1
"zIndex": 1
},
{
"id": "x",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "y",
@ -112,7 +112,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(hey -> y)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "markdown.md",
@ -74,7 +74,7 @@
"underline": false,
"labelWidth": 459,
"labelHeight": 48,
"renderPriority": 2
"zIndex": 2
}
],
"connections": []

View file

@ -37,7 +37,7 @@
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "markdown.md",
@ -74,7 +74,7 @@
"underline": false,
"labelWidth": 459,
"labelHeight": 48,
"renderPriority": 2
"zIndex": 2
}
],
"connections": []

View file

@ -37,7 +37,7 @@
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "markdown.md",
@ -74,7 +74,7 @@
"underline": false,
"labelWidth": 459,
"labelHeight": 48,
"renderPriority": 2
"zIndex": 2
}
],
"connections": []

View file

@ -37,7 +37,7 @@
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "markdown.md",
@ -74,7 +74,7 @@
"underline": false,
"labelWidth": 459,
"labelHeight": 48,
"renderPriority": 2
"zIndex": 2
}
],
"connections": []

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 196,
"labelHeight": 111,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 196,
"labelHeight": 111,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 212,
"labelHeight": 151,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 212,
"labelHeight": 151,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 24,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 24,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 102,
"labelHeight": 58,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": []

View file

@ -37,7 +37,7 @@
"labelWidth": 102,
"labelHeight": 58,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": []

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r",
@ -683,7 +683,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "s",
@ -721,7 +721,7 @@
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "t",
@ -759,7 +759,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "u",
@ -797,7 +797,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "v",
@ -835,7 +835,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "w",
@ -873,7 +873,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -923,7 +923,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -971,7 +971,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> d)[0]",
@ -1019,7 +1019,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> e)[0]",
@ -1067,7 +1067,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> f)[0]",
@ -1115,7 +1115,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> a)[0]",
@ -1163,7 +1163,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> h)[0]",
@ -1211,7 +1211,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(i -> b)[0]",
@ -1259,7 +1259,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> b)[0]",
@ -1307,7 +1307,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(k -> g)[0]",
@ -1355,7 +1355,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(l -> g)[0]",
@ -1403,7 +1403,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> m)[0]",
@ -1451,7 +1451,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> n)[0]",
@ -1499,7 +1499,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> o)[0]",
@ -1547,7 +1547,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> p)[0]",
@ -1595,7 +1595,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> q)[0]",
@ -1643,7 +1643,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> r)[0]",
@ -1691,7 +1691,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(p -> s)[0]",
@ -1739,7 +1739,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> t)[0]",
@ -1787,7 +1787,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> u)[0]",
@ -1835,7 +1835,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(v -> h)[0]",
@ -1883,7 +1883,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(w -> h)[0]",
@ -1931,7 +1931,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r",
@ -683,7 +683,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "s",
@ -721,7 +721,7 @@
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "t",
@ -759,7 +759,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "u",
@ -797,7 +797,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "v",
@ -835,7 +835,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "w",
@ -873,7 +873,7 @@
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -922,7 +922,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> c)[0]",
@ -969,7 +969,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> d)[0]",
@ -1016,7 +1016,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> e)[0]",
@ -1055,7 +1055,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> f)[0]",
@ -1102,7 +1102,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> a)[0]",
@ -1141,7 +1141,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(a -> h)[0]",
@ -1188,7 +1188,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(i -> b)[0]",
@ -1227,7 +1227,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> b)[0]",
@ -1274,7 +1274,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(k -> g)[0]",
@ -1321,7 +1321,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(l -> g)[0]",
@ -1360,7 +1360,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> m)[0]",
@ -1407,7 +1407,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> n)[0]",
@ -1446,7 +1446,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> o)[0]",
@ -1493,7 +1493,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> p)[0]",
@ -1532,7 +1532,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> q)[0]",
@ -1571,7 +1571,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> r)[0]",
@ -1618,7 +1618,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(p -> s)[0]",
@ -1657,7 +1657,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> t)[0]",
@ -1696,7 +1696,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> u)[0]",
@ -1743,7 +1743,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(v -> h)[0]",
@ -1790,7 +1790,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(w -> h)[0]",
@ -1829,7 +1829,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r",
@ -683,7 +683,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "s",
@ -721,7 +721,7 @@
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "t",
@ -759,7 +759,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "u",
@ -797,7 +797,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -859,7 +859,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> a)[0]",
@ -943,7 +943,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> a)[0]",
@ -991,7 +991,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> b)[0]",
@ -1075,7 +1075,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> e)[0]",
@ -1123,7 +1123,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> f)[0]",
@ -1171,7 +1171,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> b)[0]",
@ -1219,7 +1219,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> f)[0]",
@ -1327,7 +1327,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> c)[0]",
@ -1387,7 +1387,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> h)[0]",
@ -1435,7 +1435,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(h -> i)[0]",
@ -1483,7 +1483,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(i -> j)[0]",
@ -1531,7 +1531,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> k)[0]",
@ -1579,7 +1579,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(k -> e)[0]",
@ -1627,7 +1627,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> f)[0]",
@ -1711,7 +1711,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(l -> m)[0]",
@ -1771,7 +1771,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> l)[0]",
@ -1819,7 +1819,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> l)[1]",
@ -1867,7 +1867,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> m)[0]",
@ -1951,7 +1951,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> o)[0]",
@ -1999,7 +1999,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(o -> p)[0]",
@ -2047,7 +2047,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(p -> m)[0]",
@ -2095,7 +2095,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> p)[0]",
@ -2155,7 +2155,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(q -> n)[0]",
@ -2263,7 +2263,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(q -> r)[0]",
@ -2311,7 +2311,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(r -> s)[0]",
@ -2359,7 +2359,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(s -> t)[0]",
@ -2407,7 +2407,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(t -> u)[0]",
@ -2455,7 +2455,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(u -> o)[0]",
@ -2503,7 +2503,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(t -> p)[0]",
@ -2587,7 +2587,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> t)[0]",
@ -2635,7 +2635,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(s -> a)[0]",
@ -2719,7 +2719,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(u -> a)[0]",
@ -2767,7 +2767,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "i",
@ -341,7 +341,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "j",
@ -379,7 +379,7 @@
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "k",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l",
@ -455,7 +455,7 @@
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "m",
@ -493,7 +493,7 @@
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "n",
@ -531,7 +531,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "o",
@ -569,7 +569,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "p",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "q",
@ -645,7 +645,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "r",
@ -683,7 +683,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "s",
@ -721,7 +721,7 @@
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "t",
@ -759,7 +759,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "u",
@ -797,7 +797,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -846,7 +846,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> a)[0]",
@ -893,7 +893,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> a)[0]",
@ -940,7 +940,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> b)[0]",
@ -979,7 +979,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(d -> e)[0]",
@ -1026,7 +1026,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(e -> f)[0]",
@ -1065,7 +1065,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(f -> b)[0]",
@ -1112,7 +1112,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> f)[0]",
@ -1167,7 +1167,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> c)[0]",
@ -1206,7 +1206,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(g -> h)[0]",
@ -1253,7 +1253,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(h -> i)[0]",
@ -1292,7 +1292,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(i -> j)[0]",
@ -1331,7 +1331,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> k)[0]",
@ -1370,7 +1370,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(k -> e)[0]",
@ -1409,7 +1409,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(j -> f)[0]",
@ -1464,7 +1464,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(l -> m)[0]",
@ -1511,7 +1511,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> l)[0]",
@ -1558,7 +1558,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> l)[1]",
@ -1597,7 +1597,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> m)[0]",
@ -1644,7 +1644,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> o)[0]",
@ -1691,7 +1691,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(o -> p)[0]",
@ -1730,7 +1730,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(p -> m)[0]",
@ -1777,7 +1777,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(n -> p)[0]",
@ -1832,7 +1832,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(q -> n)[0]",
@ -1871,7 +1871,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(q -> r)[0]",
@ -1918,7 +1918,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(r -> s)[0]",
@ -1957,7 +1957,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(s -> t)[0]",
@ -1996,7 +1996,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(t -> u)[0]",
@ -2035,7 +2035,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(u -> o)[0]",
@ -2074,7 +2074,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(t -> p)[0]",
@ -2129,7 +2129,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(c -> t)[0]",
@ -2176,7 +2176,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(s -> a)[0]",
@ -2231,7 +2231,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(u -> a)[0]",
@ -2278,7 +2278,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -425,7 +425,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(d -> c)[0]",
@ -473,7 +473,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(e -> c)[0]",
@ -521,7 +521,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(f -> d)[0]",
@ -569,7 +569,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> e)[0]",
@ -653,7 +653,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(g -> f)[0]",
@ -701,7 +701,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a.h -> g)[0]",
@ -749,7 +749,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.b",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "c",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "d",
@ -151,7 +151,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "e",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "f",
@ -227,7 +227,7 @@
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "g",
@ -265,7 +265,7 @@
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "a.h",
@ -303,7 +303,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -360,7 +360,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(d -> c)[0]",
@ -399,7 +399,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(e -> c)[0]",
@ -446,7 +446,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(f -> d)[0]",
@ -485,7 +485,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> e)[0]",
@ -524,7 +524,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(g -> f)[0]",
@ -563,7 +563,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a.h -> g)[0]",
@ -610,7 +610,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 45,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "top.start",
@ -75,7 +75,7 @@
"labelWidth": 40,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "a",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -151,7 +151,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "bottom",
@ -227,7 +227,7 @@
"labelWidth": 90,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "bottom.end",
@ -265,7 +265,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -315,7 +315,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(top.start -> b)[0]",
@ -363,7 +363,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(top.start -> c)[0]",
@ -411,7 +411,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> bottom.end)[0]",
@ -459,7 +459,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(b -> bottom.end)[0]",
@ -507,7 +507,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(c -> bottom.end)[0]",
@ -555,7 +555,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 45,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "top.start",
@ -75,7 +75,7 @@
"labelWidth": 40,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "a",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -151,7 +151,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "bottom",
@ -227,7 +227,7 @@
"labelWidth": 90,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "bottom.end",
@ -265,7 +265,7 @@
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
}
],
"connections": [
@ -314,7 +314,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(top.start -> b)[0]",
@ -353,7 +353,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(top.start -> c)[0]",
@ -400,7 +400,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(a -> bottom.end)[0]",
@ -447,7 +447,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(b -> bottom.end)[0]",
@ -494,7 +494,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
},
{
"id": "(c -> bottom.end)[0]",
@ -533,7 +533,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 3
"zIndex": 3
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 1857,
"labelHeight": 24,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 1857,
"labelHeight": 24,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 602,
"labelHeight": 170,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -162,7 +162,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -210,7 +210,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -36,7 +36,7 @@
"underline": false,
"labelWidth": 602,
"labelHeight": 170,
"renderPriority": 1
"zIndex": 1
},
{
"id": "a",
@ -74,7 +74,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -112,7 +112,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -153,7 +153,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(md -> b)[0]",
@ -192,7 +192,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -67,7 +67,7 @@
"underline": false,
"labelWidth": 61,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
},
{
"id": "products",
@ -129,7 +129,7 @@
"underline": false,
"labelWidth": 99,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
},
{
"id": "orders",
@ -185,7 +185,7 @@
"underline": false,
"labelWidth": 74,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
},
{
"id": "shipments",
@ -247,7 +247,7 @@
"underline": false,
"labelWidth": 116,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -297,7 +297,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(products <-> orders)[0]",
@ -345,7 +345,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(shipments <-> orders)[0]",
@ -393,7 +393,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -67,7 +67,7 @@
"underline": false,
"labelWidth": 61,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
},
{
"id": "products",
@ -129,7 +129,7 @@
"underline": false,
"labelWidth": 99,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
},
{
"id": "orders",
@ -185,7 +185,7 @@
"underline": false,
"labelWidth": 74,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
},
{
"id": "shipments",
@ -247,7 +247,7 @@
"underline": false,
"labelWidth": 116,
"labelHeight": 36,
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -296,7 +296,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(products <-> orders)[0]",
@ -335,7 +335,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
},
{
"id": "(shipments <-> orders)[0]",
@ -382,7 +382,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -125,7 +125,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "square",
@ -75,7 +75,7 @@
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
}
],
"connections": [
@ -116,7 +116,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 2
"zIndex": 2
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l1",
@ -151,7 +151,7 @@
"labelWidth": 24,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l1.b",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l1.a",
@ -227,7 +227,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l1.c",
@ -265,7 +265,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l2c1",
@ -303,7 +303,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l2c1.a",
@ -341,7 +341,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l2c3",
@ -379,7 +379,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l2c3.c",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l2c2",
@ -455,7 +455,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l2c2.b",
@ -493,7 +493,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l3c1",
@ -531,7 +531,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l3c1.a",
@ -569,7 +569,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l3c1.b",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l3c2",
@ -645,7 +645,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l3c2.c",
@ -683,7 +683,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4",
@ -721,7 +721,7 @@
"labelWidth": 25,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l4.c1",
@ -759,7 +759,7 @@
"labelWidth": 26,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4.c1.a",
@ -797,7 +797,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "l4.c2",
@ -835,7 +835,7 @@
"labelWidth": 26,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4.c2.b",
@ -873,7 +873,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "l4.c3",
@ -911,7 +911,7 @@
"labelWidth": 26,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4.c3.c",
@ -949,7 +949,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
}
],
"connections": [
@ -999,7 +999,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(a -> l1.a)[0]",
@ -1047,7 +1047,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(c -> l1.c)[0]",
@ -1095,7 +1095,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l1.a -> l2c1.a)[0]",
@ -1155,7 +1155,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l1.c -> l2c3.c)[0]",
@ -1215,7 +1215,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l1.b -> l2c2.b)[0]",
@ -1275,7 +1275,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l2c1.a -> l3c1.a)[0]",
@ -1335,7 +1335,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l2c2.b -> l3c1.b)[0]",
@ -1395,7 +1395,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l2c3.c -> l3c2.c)[0]",
@ -1455,7 +1455,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l3c1.a -> l4.c1.a)[0]",
@ -1527,7 +1527,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l3c1.b -> l4.c2.b)[0]",
@ -1599,7 +1599,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l3c2.c -> l4.c3.c)[0]",
@ -1671,7 +1671,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
}
]
}

View file

@ -37,7 +37,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "c",
@ -75,7 +75,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "b",
@ -113,7 +113,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l1",
@ -151,7 +151,7 @@
"labelWidth": 24,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l1.b",
@ -189,7 +189,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l1.a",
@ -227,7 +227,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l1.c",
@ -265,7 +265,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l2c1",
@ -303,7 +303,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l2c1.a",
@ -341,7 +341,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l2c3",
@ -379,7 +379,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l2c3.c",
@ -417,7 +417,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l2c2",
@ -455,7 +455,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l2c2.b",
@ -493,7 +493,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l3c1",
@ -531,7 +531,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l3c1.a",
@ -569,7 +569,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l3c1.b",
@ -607,7 +607,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l3c2",
@ -645,7 +645,7 @@
"labelWidth": 50,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l3c2.c",
@ -683,7 +683,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4",
@ -721,7 +721,7 @@
"labelWidth": 25,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 1
"zIndex": 1
},
{
"id": "l4.c1",
@ -759,7 +759,7 @@
"labelWidth": 26,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4.c1.a",
@ -797,7 +797,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "l4.c2",
@ -835,7 +835,7 @@
"labelWidth": 26,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4.c2.b",
@ -873,7 +873,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
},
{
"id": "l4.c3",
@ -911,7 +911,7 @@
"labelWidth": 26,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER",
"renderPriority": 2
"zIndex": 2
},
{
"id": "l4.c3.c",
@ -949,7 +949,7 @@
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"renderPriority": 3
"zIndex": 3
}
],
"connections": [
@ -990,7 +990,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(a -> l1.a)[0]",
@ -1029,7 +1029,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(c -> l1.c)[0]",
@ -1068,7 +1068,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l1.a -> l2c1.a)[0]",
@ -1115,7 +1115,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l1.c -> l2c3.c)[0]",
@ -1154,7 +1154,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l1.b -> l2c2.b)[0]",
@ -1201,7 +1201,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l2c1.a -> l3c1.a)[0]",
@ -1240,7 +1240,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l2c2.b -> l3c1.b)[0]",
@ -1287,7 +1287,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l2c3.c -> l3c2.c)[0]",
@ -1326,7 +1326,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l3c1.a -> l4.c1.a)[0]",
@ -1365,7 +1365,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l3c1.b -> l4.c2.b)[0]",
@ -1412,7 +1412,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
},
{
"id": "(l3c2.c -> l4.c3.c)[0]",
@ -1451,7 +1451,7 @@
"animated": false,
"tooltip": "",
"icon": null,
"renderPriority": 4
"zIndex": 4
}
]
}

Some files were not shown because too many files have changed in this diff Show more