Merge pull request #1028 from alixander/elk-tune-again

elk: favor balance over straight edges, margins
This commit is contained in:
Alexander Wang 2023-03-14 13:15:35 -07:00 committed by GitHub
commit e4b82c1708
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
68 changed files with 6200 additions and 5381 deletions

View file

@ -7,6 +7,8 @@
#### Improvements 🧹
- `dagre` layouts that have a connection where one endpoint is a container is much improved. [#1011](https://github.com/terrastruct/d2/pull/1011)
- `elk` layouts favor balance over straight edges. [#1028](https://github.com/terrastruct/d2/pull/1028)
- `elk` layouts have nicer margins between node boundaries and edges. [#1028](https://github.com/terrastruct/d2/pull/1028)
- `sketch` draws connections with less roughness, which especially improves look of corner bends in ELK. [#1014](https://github.com/terrastruct/d2/pull/1014)
- CSS in SVGs are diagram-specific, which means you can embed multiple D2 diagrams on a web page without fear of style conflicts. [#1016](https://github.com/terrastruct/d2/pull/1016)

View file

@ -8,6 +8,7 @@ import (
"context"
_ "embed"
"encoding/json"
"errors"
"fmt"
"math"
"strings"
@ -97,6 +98,8 @@ var DefaultOpts = ConfigurableOpts{
var port_spacing = 40.
type elkOpts struct {
EdgeNode int `json:"elk.spacing.edgeNode,omitempty"`
FixedAlignment string `json:"elk.layered.nodePlacement.bk.fixedAlignment,omitempty"`
Thoroughness int `json:"elk.layered.thoroughness,omitempty"`
EdgeEdgeBetweenLayersSpacing int `json:"elk.layered.spacing.edgeEdgeBetweenLayers,omitempty"`
Direction string `json:"elk.direction"`
@ -140,7 +143,9 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
LayoutOptions: &elkOpts{
Thoroughness: 8,
EdgeEdgeBetweenLayersSpacing: 50,
EdgeNode: 40,
HierarchyHandling: "INCLUDE_CHILDREN",
FixedAlignment: "BALANCED",
ConsiderModelOrder: "NODES_AND_EDGES",
ConfigurableOpts: ConfigurableOpts{
Algorithm: opts.Algorithm,
@ -218,6 +223,8 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
Thoroughness: 8,
EdgeEdgeBetweenLayersSpacing: 50,
HierarchyHandling: "INCLUDE_CHILDREN",
FixedAlignment: "BALANCED",
EdgeNode: 40,
ConsiderModelOrder: "NODES_AND_EDGES",
// Why is it (height, width)? I have no clue, but it works.
NodeSizeMinimum: fmt.Sprintf("(%d, %d)", int(math.Ceil(height)), int(math.Ceil(width))),
@ -252,6 +259,10 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
paddingTop,
)
}
} else {
n.LayoutOptions = &elkOpts{
// Margins: "[top=100,left=100,bottom=100,right=100]",
}
}
if obj.LabelWidth != nil && obj.LabelHeight != nil {
@ -303,7 +314,7 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
val, err := vm.RunString(`elk.layout(graph)
.then(s => s)
.catch(s => s)
.catch(err => err.message)
`)
if err != nil {
@ -324,7 +335,21 @@ func Layout(ctx context.Context, g *d2graph.Graph, opts *ConfigurableOpts) (err
continue
}
jsonOut := promise.Result().Export().(map[string]interface{})
if promise.State() == goja.PromiseStateRejected {
return errors.New("ELK: something went wrong")
}
result := promise.Result().Export()
var jsonOut map[string]interface{}
switch out := result.(type) {
case string:
return fmt.Errorf("ELK layout error: %s", out)
case map[string]interface{}:
jsonOut = out
default:
return fmt.Errorf("ELK unexpected return: %v", out)
}
jsonBytes, err := json.Marshal(jsonOut)
if err != nil {

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 234 KiB

After

Width:  |  Height:  |  Size: 235 KiB

View file

@ -10,7 +10,7 @@
"x": 184,
"y": 373
},
"width": 421,
"width": 481,
"height": 527,
"opacity": 1,
"strokeDash": 0,
@ -130,7 +130,7 @@
"id": "a.f",
"type": "rectangle",
"pos": {
"x": 235,
"x": 257,
"y": 679
},
"width": 293,
@ -171,7 +171,7 @@
"id": "a.f.i",
"type": "rectangle",
"pos": {
"x": 285,
"x": 307,
"y": 729
},
"width": 49,
@ -212,7 +212,7 @@
"id": "a.f.g",
"type": "rectangle",
"pos": {
"x": 354,
"x": 376,
"y": 729
},
"width": 54,
@ -253,7 +253,7 @@
"id": "s",
"type": "rectangle",
"pos": {
"x": 277,
"x": 288,
"y": 1401
},
"width": 424,
@ -294,7 +294,7 @@
"id": "s.n",
"type": "rectangle",
"pos": {
"x": 327,
"x": 338,
"y": 1453
},
"width": 151,
@ -417,7 +417,7 @@
"id": "u",
"type": "rectangle",
"pos": {
"x": 254,
"x": 276,
"y": 1040
},
"width": 397,
@ -458,7 +458,7 @@
"id": "u.o",
"type": "rectangle",
"pos": {
"x": 304,
"x": 326,
"y": 1095
},
"width": 54,
@ -499,7 +499,7 @@
"id": "h",
"type": "rectangle",
"pos": {
"x": 269,
"x": 299,
"y": 12
},
"width": 252,
@ -540,7 +540,7 @@
"id": "h.m",
"type": "rectangle",
"pos": {
"x": 319,
"x": 349,
"y": 62
},
"width": 152,
@ -581,7 +581,7 @@
"id": "h.m.s",
"type": "rectangle",
"pos": {
"x": 369,
"x": 399,
"y": 112
},
"width": 52,
@ -622,7 +622,7 @@
"id": "a.f.j",
"type": "rectangle",
"pos": {
"x": 428,
"x": 450,
"y": 729
},
"width": 50,
@ -663,7 +663,7 @@
"id": "u.s",
"type": "rectangle",
"pos": {
"x": 378,
"x": 400,
"y": 1095
},
"width": 150,
@ -704,7 +704,7 @@
"id": "u.s.j",
"type": "rectangle",
"pos": {
"x": 428,
"x": 450,
"y": 1145
},
"width": 50,
@ -745,7 +745,7 @@
"id": "u.c",
"type": "rectangle",
"pos": {
"x": 548,
"x": 570,
"y": 1195
},
"width": 53,
@ -786,7 +786,7 @@
"id": "s.z",
"type": "rectangle",
"pos": {
"x": 498,
"x": 509,
"y": 1456
},
"width": 153,
@ -827,7 +827,7 @@
"id": "s.z.c",
"type": "rectangle",
"pos": {
"x": 548,
"x": 559,
"y": 1506
},
"width": 53,
@ -868,7 +868,7 @@
"id": "s.n.f",
"type": "rectangle",
"pos": {
"x": 377,
"x": 388,
"y": 1503
},
"width": 51,
@ -909,7 +909,7 @@
"id": "y",
"type": "rectangle",
"pos": {
"x": 327,
"x": 338,
"y": 1752
},
"width": 151,
@ -950,7 +950,7 @@
"id": "y.r",
"type": "rectangle",
"pos": {
"x": 377,
"x": 388,
"y": 1802
},
"width": 51,
@ -991,7 +991,7 @@
"id": "a.g",
"type": "rectangle",
"pos": {
"x": 406,
"x": 466,
"y": 428
},
"width": 149,
@ -1032,7 +1032,7 @@
"id": "a.g.i",
"type": "rectangle",
"pos": {
"x": 456,
"x": 516,
"y": 478
},
"width": 49,
@ -1103,6 +1103,14 @@
},
{
"x": 309.5,
"y": 634
},
{
"x": 331.5,
"y": 634
},
{
"x": 331.5,
"y": 729
}
],
@ -1138,27 +1146,27 @@
"labelPercentage": 0,
"route": [
{
"x": 381,
"x": 403,
"y": 795
},
{
"x": 381,
"x": 403,
"y": 945
},
{
"x": 243,
"x": 235,
"y": 945
},
{
"x": 243,
"x": 235,
"y": 1356
},
{
"x": 402.5,
"x": 413.75,
"y": 1356
},
{
"x": 402.5,
"x": 413.75,
"y": 1453.5
}
],
@ -1202,11 +1210,11 @@
"y": 995
},
{
"x": 331,
"x": 353,
"y": 995
},
{
"x": 331,
"x": 353,
"y": 1095
}
],
@ -1242,19 +1250,19 @@
"labelPercentage": 0,
"route": [
{
"x": 395,
"x": 425,
"y": 178
},
{
"x": 395,
"x": 425,
"y": 634
},
{
"x": 381,
"x": 403,
"y": 634
},
{
"x": 381,
"x": 403,
"y": 729
}
],
@ -1290,11 +1298,11 @@
"labelPercentage": 0,
"route": [
{
"x": 453,
"x": 475,
"y": 795
},
{
"x": 453,
"x": 475,
"y": 1145
}
],
@ -1330,11 +1338,19 @@
"labelPercentage": 0,
"route": [
{
"x": 574.5,
"x": 596.5,
"y": 1261
},
{
"x": 574.5,
"x": 596.5,
"y": 1356
},
{
"x": 585.75,
"y": 1356
},
{
"x": 585.75,
"y": 1506
}
],
@ -1370,11 +1386,11 @@
"labelPercentage": 0,
"route": [
{
"x": 402.5,
"x": 413.75,
"y": 1619.5
},
{
"x": 402.5,
"x": 413.75,
"y": 1802
}
],
@ -1410,27 +1426,27 @@
"labelPercentage": 0,
"route": [
{
"x": 402.5,
"x": 413.75,
"y": 1868
},
{
"x": 402.5,
"x": 413.75,
"y": 1963
},
{
"x": 711,
"x": 814.25,
"y": 1963
},
{
"x": 711,
"x": 814.25,
"y": 328
},
{
"x": 480.5,
"x": 540.5,
"y": 328
},
{
"x": 480.5,
"x": 540.5,
"y": 478
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 806 KiB

After

Width:  |  Height:  |  Size: 806 KiB

View file

@ -414,7 +414,7 @@
"id": "m5_desc",
"type": "text",
"pos": {
"x": 425,
"x": 456,
"y": 36
},
"width": 90,
@ -454,7 +454,7 @@
"id": "m6_desc",
"type": "text",
"pos": {
"x": 535,
"x": 566,
"y": 12
},
"width": 140,
@ -599,11 +599,11 @@
"labelPercentage": 0,
"route": [
{
"x": 470.5,
"x": 501.75,
"y": 60
},
{
"x": 470.5,
"x": 501.75,
"y": 100
},
{
@ -647,9 +647,17 @@
"labelPercentage": 0,
"route": [
{
"x": 605.5,
"x": 636.75,
"y": 60
},
{
"x": 636.75,
"y": 100
},
{
"x": 605.5,
"y": 100
},
{
"x": 605.5,
"y": 195

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 668 KiB

After

Width:  |  Height:  |  Size: 668 KiB

View file

@ -294,8 +294,8 @@
"id": "osvc",
"type": "rectangle",
"pos": {
"x": 301,
"y": 399
"x": 373,
"y": 409
},
"width": 272,
"height": 166,
@ -335,8 +335,8 @@
"id": "osvc.vm1",
"type": "rectangle",
"pos": {
"x": 351,
"y": 449
"x": 423,
"y": 459
},
"width": 76,
"height": 66,
@ -376,8 +376,8 @@
"id": "osvc.vm2",
"type": "rectangle",
"pos": {
"x": 447,
"y": 449
"x": 519,
"y": 459
},
"width": 76,
"height": 66,
@ -447,15 +447,23 @@
},
{
"x": 211,
"y": 309
"y": 218
},
{
"x": 355.59999999999997,
"y": 309
"x": 274,
"y": 218
},
{
"x": 355.59999999999997,
"y": 399
"x": 274,
"y": 369
},
{
"x": 427.9,
"y": 369
},
{
"x": 427.9,
"y": 409
}
],
"animated": false,
@ -495,7 +503,15 @@
},
{
"x": 410,
"y": 399
"y": 319
},
{
"x": 482.3,
"y": 319
},
{
"x": 482.3,
"y": 409
}
],
"animated": false,
@ -535,15 +551,15 @@
},
{
"x": 609,
"y": 309
"y": 319
},
{
"x": 464.4,
"y": 309
"x": 536.7,
"y": 319
},
{
"x": 464.4,
"y": 399
"x": 536.7,
"y": 409
}
],
"animated": false,
@ -583,15 +599,23 @@
},
{
"x": 808,
"y": 359
"y": 218
},
{
"x": 518.8,
"y": 359
"x": 735.7,
"y": 218
},
{
"x": 518.8,
"y": 399
"x": 735.7,
"y": 369
},
{
"x": 591.1,
"y": 369
},
{
"x": 591.1,
"y": 409
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 800 KiB

After

Width:  |  Height:  |  Size: 801 KiB

View file

@ -8,7 +8,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 148
"y": 267
},
"width": 53,
"height": 66,
@ -49,7 +49,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 234
"y": 353
},
"width": 53,
"height": 66,
@ -90,7 +90,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 62
"y": 181
},
"width": 53,
"height": 66,
@ -131,9 +131,9 @@
"type": "rectangle",
"pos": {
"x": 140,
"y": 12
"y": 131
},
"width": 233,
"width": 283,
"height": 338,
"opacity": 1,
"strokeDash": 0,
@ -172,7 +172,7 @@
"type": "rectangle",
"pos": {
"x": 190,
"y": 62
"y": 181
},
"width": 53,
"height": 66,
@ -213,7 +213,7 @@
"type": "rectangle",
"pos": {
"x": 190,
"y": 148
"y": 267
},
"width": 53,
"height": 66,
@ -254,7 +254,7 @@
"type": "rectangle",
"pos": {
"x": 190,
"y": 234
"y": 353
},
"width": 53,
"height": 66,
@ -295,7 +295,7 @@
"type": "rectangle",
"pos": {
"x": 513,
"y": 98
"y": 12
},
"width": 153,
"height": 166,
@ -336,7 +336,7 @@
"type": "rectangle",
"pos": {
"x": 563,
"y": 148
"y": 62
},
"width": 53,
"height": 66,
@ -377,7 +377,7 @@
"type": "rectangle",
"pos": {
"x": 513,
"y": 470
"y": 434
},
"width": 153,
"height": 166,
@ -418,7 +418,7 @@
"type": "rectangle",
"pos": {
"x": 563,
"y": 520
"y": 484
},
"width": 53,
"height": 66,
@ -459,7 +459,7 @@
"type": "rectangle",
"pos": {
"x": 513,
"y": 284
"y": 198
},
"width": 153,
"height": 166,
@ -500,7 +500,7 @@
"type": "rectangle",
"pos": {
"x": 563,
"y": 334
"y": 248
},
"width": 53,
"height": 66,
@ -541,7 +541,7 @@
"type": "rectangle",
"pos": {
"x": 756,
"y": 98
"y": 62
},
"width": 153,
"height": 252,
@ -582,7 +582,7 @@
"type": "rectangle",
"pos": {
"x": 806,
"y": 148
"y": 112
},
"width": 53,
"height": 66,
@ -623,7 +623,7 @@
"type": "rectangle",
"pos": {
"x": 806,
"y": 234
"y": 198
},
"width": 53,
"height": 66,
@ -664,7 +664,7 @@
"type": "rectangle",
"pos": {
"x": 756,
"y": 470
"y": 434
},
"width": 153,
"height": 166,
@ -705,7 +705,7 @@
"type": "rectangle",
"pos": {
"x": 806,
"y": 520
"y": 484
},
"width": 53,
"height": 66,
@ -746,7 +746,7 @@
"type": "rectangle",
"pos": {
"x": 999,
"y": 48
"y": 12
},
"width": 258,
"height": 638,
@ -787,7 +787,7 @@
"type": "rectangle",
"pos": {
"x": 1054,
"y": 98
"y": 62
},
"width": 153,
"height": 166,
@ -828,7 +828,7 @@
"type": "rectangle",
"pos": {
"x": 1104,
"y": 148
"y": 112
},
"width": 53,
"height": 66,
@ -869,7 +869,7 @@
"type": "rectangle",
"pos": {
"x": 1054,
"y": 284
"y": 248
},
"width": 153,
"height": 166,
@ -910,7 +910,7 @@
"type": "rectangle",
"pos": {
"x": 1104,
"y": 334
"y": 298
},
"width": 53,
"height": 66,
@ -951,7 +951,7 @@
"type": "rectangle",
"pos": {
"x": 1054,
"y": 470
"y": 434
},
"width": 153,
"height": 166,
@ -992,7 +992,7 @@
"type": "rectangle",
"pos": {
"x": 1104,
"y": 520
"y": 484
},
"width": 53,
"height": 66,
@ -1058,11 +1058,11 @@
"route": [
{
"x": 65,
"y": 95
"y": 214
},
{
"x": 190,
"y": 95
"y": 214
}
],
"animated": false,
@ -1098,11 +1098,11 @@
"route": [
{
"x": 65,
"y": 181
"y": 300
},
{
"x": 190,
"y": 181
"y": 300
}
],
"animated": false,
@ -1138,11 +1138,11 @@
"route": [
{
"x": 65,
"y": 267
"y": 386
},
{
"x": 190,
"y": 267
"y": 386
}
],
"animated": false,
@ -1178,11 +1178,27 @@
"route": [
{
"x": 243,
"y": 181
"y": 300
},
{
"x": 283,
"y": 300
},
{
"x": 283,
"y": 252
},
{
"x": 468,
"y": 252
},
{
"x": 468,
"y": 95
},
{
"x": 563,
"y": 181
"y": 95
}
],
"animated": false,
@ -1218,19 +1234,19 @@
"route": [
{
"x": 243,
"y": 267
"y": 386
},
{
"x": 418,
"y": 267
"x": 468,
"y": 386
},
{
"x": 418,
"y": 553
"x": 468,
"y": 517
},
{
"x": 563,
"y": 553
"y": 517
}
],
"animated": false,
@ -1266,27 +1282,27 @@
"route": [
{
"x": 243,
"y": 95
"y": 214
},
{
"x": 283,
"y": 95
"x": 333,
"y": 214
},
{
"x": 283,
"y": 191
"x": 333,
"y": 262
},
{
"x": 468,
"y": 191
"y": 262
},
{
"x": 468,
"y": 367
"y": 281
},
{
"x": 563,
"y": 367
"y": 281
}
],
"animated": false,
@ -1322,11 +1338,19 @@
"route": [
{
"x": 616,
"y": 181
"y": 95
},
{
"x": 711,
"y": 95
},
{
"x": 711,
"y": 145
},
{
"x": 806,
"y": 181
"y": 145
}
],
"animated": false,
@ -1362,19 +1386,19 @@
"route": [
{
"x": 616,
"y": 367
"y": 281
},
{
"x": 711,
"y": 367
"y": 281
},
{
"x": 711,
"y": 267
"y": 231
},
{
"x": 806,
"y": 267
"y": 231
}
],
"animated": false,
@ -1410,11 +1434,11 @@
"route": [
{
"x": 616,
"y": 553
"y": 517
},
{
"x": 806,
"y": 553
"y": 517
}
],
"animated": false,
@ -1450,11 +1474,11 @@
"route": [
{
"x": 859,
"y": 181
"y": 145
},
{
"x": 1104,
"y": 181
"y": 145
}
],
"animated": false,
@ -1490,19 +1514,19 @@
"route": [
{
"x": 859,
"y": 267
"y": 231
},
{
"x": 954,
"y": 267
"y": 231
},
{
"x": 954,
"y": 367
"y": 331
},
{
"x": 1104,
"y": 367
"y": 331
}
],
"animated": false,
@ -1538,11 +1562,11 @@
"route": [
{
"x": 859,
"y": 553
"y": 517
},
{
"x": 1104,
"y": 553
"y": 517
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 663 KiB

After

Width:  |  Height:  |  Size: 663 KiB

View file

@ -8,7 +8,7 @@
"type": "rectangle",
"pos": {
"x": 103,
"y": 75
"y": 115
},
"width": 135,
"height": 120,
@ -49,7 +49,7 @@
"type": "rectangle",
"pos": {
"x": 390,
"y": 72
"y": 74
},
"width": 159,
"height": 66,
@ -90,7 +90,7 @@
"type": "rectangle",
"pos": {
"x": 368,
"y": 158
"y": 170
},
"width": 204,
"height": 66,
@ -133,8 +133,8 @@
"x": 652,
"y": 12
},
"width": 890,
"height": 358,
"width": 940,
"height": 383,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -172,7 +172,7 @@
"type": "rectangle",
"pos": {
"x": 746,
"y": 72
"y": 97
},
"width": 94,
"height": 120,
@ -213,7 +213,7 @@
"type": "rectangle",
"pos": {
"x": 970,
"y": 62
"y": 61
},
"width": 120,
"height": 80,
@ -254,7 +254,7 @@
"type": "rectangle",
"pos": {
"x": 1170,
"y": 99
"y": 129
},
"width": 120,
"height": 80,
@ -294,8 +294,8 @@
"id": "Gos Warehouse.Regional-N",
"type": "rectangle",
"pos": {
"x": 1370,
"y": 99
"x": 1420,
"y": 124
},
"width": 122,
"height": 80,
@ -336,7 +336,7 @@
"type": "text",
"pos": {
"x": 702,
"y": 212
"y": 237
},
"width": 138,
"height": 108,
@ -376,7 +376,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 215
"y": 255
},
"width": 226,
"height": 252,
@ -417,7 +417,7 @@
"type": "rectangle",
"pos": {
"x": 62,
"y": 265
"y": 305
},
"width": 126,
"height": 66,
@ -458,7 +458,7 @@
"type": "rectangle",
"pos": {
"x": 73,
"y": 351
"y": 391
},
"width": 103,
"height": 66,
@ -498,7 +498,7 @@
"id": "title",
"type": "text",
"pos": {
"x": 457,
"x": 482,
"y": -59
},
"width": 639,
@ -565,11 +565,19 @@
"route": [
{
"x": 238,
"y": 105
"y": 145.75
},
{
"x": 278,
"y": 145.75
},
{
"x": 278,
"y": 107.875
},
{
"x": 390.5,
"y": 105
"y": 107.875
}
],
"animated": false,
@ -605,19 +613,19 @@
"route": [
{
"x": 238,
"y": 135
"y": 175.75
},
{
"x": 328,
"y": 135
"y": 175.75
},
{
"x": 328,
"y": 191
"y": 203.75
},
{
"x": 368,
"y": 191
"y": 203.75
}
],
"animated": false,
@ -653,27 +661,27 @@
"route": [
{
"x": 238,
"y": 165
"y": 205.75
},
{
"x": 278,
"y": 165
"y": 205.75
},
{
"x": 278,
"y": 234
"y": 288.1875
},
{
"x": 612,
"y": 234
"y": 288.1875
},
{
"x": 612,
"y": 280.5
"y": 299.625
},
{
"x": 652,
"y": 280.5
"y": 299.625
}
],
"animated": false,
@ -709,6 +717,14 @@
"route": [
{
"x": 840,
"y": 127.5
},
{
"x": 880,
"y": 127.5
},
{
"x": 880,
"y": 102
},
{
@ -749,19 +765,19 @@
"route": [
{
"x": 840,
"y": 132
"y": 157.5
},
{
"x": 930,
"y": 132
"y": 157.5
},
{
"x": 930,
"y": 153
"y": 183
},
{
"x": 1170,
"y": 153
"y": 183
}
],
"animated": false,
@ -797,27 +813,27 @@
"route": [
{
"x": 840,
"y": 162
"y": 187.5
},
{
"x": 880,
"y": 162
"y": 187.5
},
{
"x": 880,
"y": 189.66666666666669
"y": 249.66666666666669
},
{
"x": 1330,
"y": 189.66666666666669
"x": 1380,
"y": 249.66666666666669
},
{
"x": 1330,
"y": 159.66666666666669
"x": 1380,
"y": 184.66666666666669
},
{
"x": 1370,
"y": 159.66666666666669
"x": 1420,
"y": 184.66666666666669
}
],
"animated": false,
@ -853,19 +869,19 @@
"route": [
{
"x": 1090,
"y": 115.33333333333334
"y": 115.33333333333333
},
{
"x": 1130,
"y": 115.33333333333334
"y": 115.33333333333333
},
{
"x": 1130,
"y": 126.33333333333334
"y": 156.33333333333334
},
{
"x": 1170,
"y": 126.33333333333334
"y": 156.33333333333334
}
],
"animated": false,
@ -901,11 +917,19 @@
"route": [
{
"x": 1290,
"y": 139.66666666666669
"y": 169.66666666666669
},
{
"x": 1370,
"y": 139.66666666666669
"x": 1330,
"y": 169.66666666666669
},
{
"x": 1330,
"y": 164.66666666666669
},
{
"x": 1420,
"y": 164.66666666666669
}
],
"animated": false,
@ -940,20 +964,20 @@
"labelPercentage": 0,
"route": [
{
"x": 1370,
"y": 119.66666666666667
"x": 1420,
"y": 144.66666666666669
},
{
"x": 1330,
"y": 119.66666666666667
"y": 144.66666666666669
},
{
"x": 1330,
"y": 88.66666666666667
"y": 88.66666666666666
},
{
"x": 1090,
"y": 88.66666666666667
"y": 88.66666666666666
}
],
"animated": false,
@ -989,19 +1013,11 @@
"route": [
{
"x": 549.5,
"y": 105
},
{
"x": 612,
"y": 105
},
{
"x": 612,
"y": 101.5
"y": 107.875
},
{
"x": 652,
"y": 101.5
"y": 107.875
}
],
"animated": false,
@ -1037,11 +1053,11 @@
"route": [
{
"x": 572,
"y": 191
"y": 203.75
},
{
"x": 652,
"y": 191
"y": 203.75
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 671 KiB

After

Width:  |  Height:  |  Size: 671 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 58,
"x": 35,
"y": 12
},
"width": 80,
@ -155,11 +155,11 @@
"labelPercentage": 0,
"route": [
{
"x": 84.83333333333333,
"x": 61.666666666666664,
"y": 78
},
{
"x": 84.83333333333333,
"x": 61.666666666666664,
"y": 118
},
{
@ -203,9 +203,17 @@
"labelPercentage": 0,
"route": [
{
"x": 111.5,
"x": 88.33333333333333,
"y": 78
},
{
"x": 88.33333333333333,
"y": 118
},
{
"x": 111.5,
"y": 118
},
{
"x": 111.5,
"y": 158

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 330 KiB

After

Width:  |  Height:  |  Size: 330 KiB

View file

@ -7,7 +7,7 @@
"id": "your love life will be",
"type": "rectangle",
"pos": {
"x": 61,
"x": 21,
"y": 12
},
"width": 187,
@ -253,7 +253,7 @@
"id": "Monday",
"type": "rectangle",
"pos": {
"x": 422,
"x": 421,
"y": 158
},
"width": 101,
@ -565,11 +565,11 @@
"labelPercentage": 0,
"route": [
{
"x": 123.66666666666674,
"x": 83.83333333333337,
"y": 78
},
{
"x": 123.66666666666674,
"x": 83.83333333333337,
"y": 118
},
{
@ -613,9 +613,17 @@
"labelPercentage": 0,
"route": [
{
"x": 186,
"x": 146.16666666666663,
"y": 78
},
{
"x": 146.16666666666663,
"y": 118
},
{
"x": 186,
"y": 118
},
{
"x": 186,
"y": 158
@ -693,11 +701,11 @@
"labelPercentage": 0,
"route": [
{
"x": 472.5,
"x": 472.49999999999994,
"y": 78
},
{
"x": 472.5,
"x": 472.49999999999994,
"y": 158
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 480 KiB

After

Width:  |  Height:  |  Size: 480 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 73,
"x": 63,
"y": 12
},
"width": 80,
@ -48,8 +48,8 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 66,
"y": 544
"x": 55,
"y": 494
},
"width": 80,
"height": 66,
@ -89,8 +89,8 @@
"id": "c",
"type": "document",
"pos": {
"x": 79,
"y": 388
"x": 108,
"y": 338
},
"width": 80,
"height": 76,
@ -130,8 +130,8 @@
"id": "Oval",
"type": "oval",
"pos": {
"x": 23,
"y": 208
"x": 53,
"y": 158
},
"width": 100,
"height": 100,
@ -195,11 +195,11 @@
"labelPercentage": 0,
"route": [
{
"x": 93,
"x": 83,
"y": 78
},
{
"x": 93,
"x": 83,
"y": 118
},
{
@ -208,15 +208,15 @@
},
{
"x": 12,
"y": 504
"y": 454
},
{
"x": 93,
"y": 504
"x": 82.5,
"y": 454
},
{
"x": 93,
"y": 544
"x": 82.5,
"y": 494
}
],
"animated": false,
@ -251,12 +251,20 @@
"labelPercentage": 0,
"route": [
{
"x": 120,
"y": 453
"x": 148,
"y": 403
},
{
"x": 119.66666666666666,
"y": 544
"x": 148,
"y": 454
},
{
"x": 109.16666666666667,
"y": 454
},
{
"x": 109.16666666666667,
"y": 494
}
],
"animated": false,
@ -291,20 +299,12 @@
"labelPercentage": 0,
"route": [
{
"x": 113,
"x": 103,
"y": 78
},
{
"x": 113,
"y": 168
},
{
"x": 73,
"y": 168
},
{
"x": 73,
"y": 208
"x": 103,
"y": 158
}
],
"animated": false,
@ -339,11 +339,27 @@
"labelPercentage": 0,
"route": [
{
"x": 133,
"y": 388
"x": 161,
"y": 338
},
{
"x": 133,
"x": 161.33333333333334,
"y": 298
},
{
"x": 193,
"y": 298
},
{
"x": 193,
"y": 118
},
{
"x": 123,
"y": 118
},
{
"x": 123,
"y": 78
}
],
@ -379,20 +395,20 @@
"labelPercentage": 0,
"route": [
{
"x": 73,
"y": 308
"x": 103,
"y": 258
},
{
"x": 73,
"y": 348
"x": 103,
"y": 298
},
{
"x": 106.33333333333333,
"y": 348
"x": 134.66666666666669,
"y": 298
},
{
"x": 106,
"y": 388
"x": 135,
"y": 338
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 477 KiB

After

Width:  |  Height:  |  Size: 477 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 463,
"x": 250,
"y": 12
},
"width": 80,
@ -48,7 +48,7 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 183,
"x": 104,
"y": 158
},
"width": 80,
@ -89,7 +89,7 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 476,
"x": 392,
"y": 158
},
"width": 80,
@ -130,7 +130,7 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 56,
"x": 34,
"y": 304
},
"width": 80,
@ -171,7 +171,7 @@
"id": "e",
"type": "rectangle",
"pos": {
"x": 197,
"x": 174,
"y": 304
},
"width": 80,
@ -212,7 +212,7 @@
"id": "f",
"type": "rectangle",
"pos": {
"x": 341,
"x": 317,
"y": 304
},
"width": 80,
@ -253,7 +253,7 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 489,
"x": 466,
"y": 304
},
"width": 80,
@ -417,7 +417,7 @@
"id": "k",
"type": "rectangle",
"pos": {
"x": 224,
"x": 223,
"y": 450
},
"width": 53,
@ -647,19 +647,19 @@
"labelPercentage": 0,
"route": [
{
"x": 489.6666666666667,
"x": 277.41666666666663,
"y": 78
},
{
"x": 489.6666666666667,
"x": 277.41666666666663,
"y": 118
},
{
"x": 223.83333333333331,
"x": 144.49999999999994,
"y": 118
},
{
"x": 223.83333333333331,
"x": 144.49999999999994,
"y": 158
}
],
@ -695,11 +695,19 @@
"labelPercentage": 0,
"route": [
{
"x": 516.3333333333334,
"x": 304.0833333333333,
"y": 78
},
{
"x": 516.3333333333334,
"x": 304.0833333333333,
"y": 118
},
{
"x": 432.24999999999994,
"y": 118
},
{
"x": 432.24999999999994,
"y": 158
}
],
@ -735,19 +743,19 @@
"labelPercentage": 0,
"route": [
{
"x": 210.49999999999997,
"x": 131.16666666666663,
"y": 224
},
{
"x": 210.49999999999997,
"x": 131.16666666666663,
"y": 264
},
{
"x": 96.16666666666669,
"x": 74,
"y": 264
},
{
"x": 96.16666666666669,
"x": 74,
"y": 304
}
],
@ -783,11 +791,19 @@
"labelPercentage": 0,
"route": [
{
"x": 237.16666666666666,
"x": 157.83333333333326,
"y": 224
},
{
"x": 237.16666666666663,
"x": 157.83333333333326,
"y": 264
},
{
"x": 214.74999999999994,
"y": 264
},
{
"x": 214.74999999999994,
"y": 304
}
],
@ -823,19 +839,19 @@
"labelPercentage": 0,
"route": [
{
"x": 503,
"x": 418.91666666666663,
"y": 224
},
{
"x": 503,
"x": 418.91666666666663,
"y": 264
},
{
"x": 381.16666666666663,
"x": 357.99999999999994,
"y": 264
},
{
"x": 381.16666666666663,
"x": 357.99999999999994,
"y": 304
}
],
@ -871,11 +887,19 @@
"labelPercentage": 0,
"route": [
{
"x": 529.6666666666666,
"x": 445.5833333333333,
"y": 224
},
{
"x": 529.6666666666666,
"x": 445.5833333333333,
"y": 264
},
{
"x": 506.24999999999994,
"y": 264
},
{
"x": 506.24999999999994,
"y": 304
}
],
@ -911,11 +935,11 @@
"labelPercentage": 0,
"route": [
{
"x": 82.83333333333337,
"x": 60.666666666666686,
"y": 370
},
{
"x": 82.83333333333337,
"x": 60.666666666666686,
"y": 410
},
{
@ -959,9 +983,17 @@
"labelPercentage": 0,
"route": [
{
"x": 109.5,
"x": 87.33333333333331,
"y": 370
},
{
"x": 87.33333333333331,
"y": 410
},
{
"x": 109.5,
"y": 410
},
{
"x": 109.5,
"y": 450
@ -999,11 +1031,11 @@
"labelPercentage": 0,
"route": [
{
"x": 223.8333333333333,
"x": 201.41666666666663,
"y": 370
},
{
"x": 223.8333333333333,
"x": 201.41666666666663,
"y": 410
},
{
@ -1047,11 +1079,19 @@
"labelPercentage": 0,
"route": [
{
"x": 250.49999999999997,
"x": 228.0833333333333,
"y": 370
},
{
"x": 250.5,
"x": 228.0833333333333,
"y": 410
},
{
"x": 250.49999999999997,
"y": 410
},
{
"x": 250.49999999999997,
"y": 450
}
],
@ -1087,11 +1127,11 @@
"labelPercentage": 0,
"route": [
{
"x": 367.8333333333333,
"x": 344.66666666666663,
"y": 370
},
{
"x": 367.8333333333333,
"x": 344.66666666666663,
"y": 410
},
{
@ -1135,9 +1175,17 @@
"labelPercentage": 0,
"route": [
{
"x": 394.5,
"x": 371.33333333333326,
"y": 370
},
{
"x": 371.33333333333326,
"y": 410
},
{
"x": 394.5,
"y": 410
},
{
"x": 394.5,
"y": 450
@ -1175,11 +1223,11 @@
"labelPercentage": 0,
"route": [
{
"x": 516.3333333333334,
"x": 492.91666666666663,
"y": 370
},
{
"x": 516.3333333333334,
"x": 492.91666666666663,
"y": 410
},
{
@ -1223,9 +1271,17 @@
"labelPercentage": 0,
"route": [
{
"x": 543,
"x": 519.5833333333333,
"y": 370
},
{
"x": 519.5833333333333,
"y": 410
},
{
"x": 543,
"y": 410
},
{
"x": 543,
"y": 450

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 337 KiB

After

Width:  |  Height:  |  Size: 338 KiB

View file

@ -10,7 +10,7 @@
"x": 12,
"y": 12
},
"width": 694,
"width": 701,
"height": 1812,
"opacity": 1,
"strokeDash": 0,
@ -51,7 +51,7 @@
"x": 62,
"y": 612
},
"width": 548,
"width": 525,
"height": 1067,
"opacity": 1,
"strokeDash": 0,
@ -89,10 +89,10 @@
"id": "aa.bb.cc",
"type": "rectangle",
"pos": {
"x": 256,
"x": 203,
"y": 939
},
"width": 304,
"width": 334,
"height": 690,
"opacity": 1,
"strokeDash": 0,
@ -130,7 +130,7 @@
"id": "aa.bb.cc.dd",
"type": "rectangle",
"pos": {
"x": 306,
"x": 253,
"y": 989
},
"width": 193,
@ -171,7 +171,7 @@
"id": "aa.bb.cc.dd.ee",
"type": "text",
"pos": {
"x": 356,
"x": 303,
"y": 1084
},
"width": 16,
@ -211,7 +211,7 @@
"id": "aa.bb.cc.dd.ff",
"type": "rectangle",
"pos": {
"x": 392,
"x": 339,
"y": 1039
},
"width": 57,
@ -252,7 +252,7 @@
"id": "aa.bb.cc.gg",
"type": "text",
"pos": {
"x": 337,
"x": 358,
"y": 1331
},
"width": 80,
@ -292,7 +292,7 @@
"id": "aa.bb.cc.hh",
"type": "rectangle",
"pos": {
"x": 345,
"x": 367,
"y": 1513
},
"width": 63,
@ -415,7 +415,7 @@
"id": "aa.bb.kk",
"type": "oval",
"pos": {
"x": 282,
"x": 285,
"y": 721
},
"width": 74,
@ -456,8 +456,8 @@
"id": "aa.ll",
"type": "rectangle",
"pos": {
"x": 395,
"y": 260
"x": 459,
"y": 310
},
"width": 120,
"height": 66,
@ -497,7 +497,7 @@
"id": "aa.mm",
"type": "cylinder",
"pos": {
"x": 270,
"x": 287,
"y": 62
},
"width": 160,
@ -538,7 +538,7 @@
"id": "aa.nn",
"type": "text",
"pos": {
"x": 450,
"x": 467,
"y": 110
},
"width": 16,
@ -578,7 +578,7 @@
"id": "aa.oo",
"type": "rectangle",
"pos": {
"x": 486,
"x": 503,
"y": 88
},
"width": 63,
@ -644,11 +644,19 @@
"labelPercentage": 0,
"route": [
{
"x": 364,
"x": 311,
"y": 1105
},
{
"x": 364,
"x": 311,
"y": 1291
},
{
"x": 385.16666666666663,
"y": 1291
},
{
"x": 385.16666666666663,
"y": 1331
}
],
@ -684,11 +692,11 @@
"labelPercentage": 0,
"route": [
{
"x": 377.3333333333333,
"x": 398.5,
"y": 1352
},
{
"x": 377.3333333333333,
"x": 398.5,
"y": 1513
}
],
@ -732,11 +740,11 @@
"y": 894
},
{
"x": 356,
"x": 321,
"y": 894
},
{
"x": 356,
"x": 321,
"y": 989
}
],
@ -772,19 +780,27 @@
"labelPercentage": 0,
"route": [
{
"x": 419,
"y": 326
"x": 483.25,
"y": 376
},
{
"x": 419,
"y": 517
"x": 483.25,
"y": 416
},
{
"x": 376,
"y": 517
"x": 443.75,
"y": 416
},
{
"x": 376,
"x": 443.75,
"y": 567
},
{
"x": 413.5,
"y": 567
},
{
"x": 413.5,
"y": 612
}
],
@ -820,11 +836,19 @@
"labelPercentage": 0,
"route": [
{
"x": 366,
"x": 384,
"y": 180
},
{
"x": 366,
"x": 383.75,
"y": 567
},
{
"x": 403.5,
"y": 567
},
{
"x": 403.5,
"y": 939
}
],
@ -860,20 +884,20 @@
"labelPercentage": 0,
"route": [
{
"x": 398,
"x": 416,
"y": 176
},
{
"x": 398,
"x": 415.75,
"y": 220
},
{
"x": 455,
"x": 519.25,
"y": 220
},
{
"x": 455,
"y": 260
"x": 519.25,
"y": 310
}
],
"animated": false,
@ -908,19 +932,19 @@
"labelPercentage": 0,
"route": [
{
"x": 334,
"x": 352,
"y": 180
},
{
"x": 334,
"y": 567
"x": 351.75,
"y": 270
},
{
"x": 197,
"y": 567
"x": 295.25,
"y": 270
},
{
"x": 197,
"x": 295.25,
"y": 612
}
],
@ -956,27 +980,35 @@
"labelPercentage": 0,
"route": [
{
"x": 443,
"y": 326
"x": 507.25,
"y": 376
},
{
"x": 443,
"y": 517
"x": 507.25,
"y": 466
},
{
"x": 509,
"y": 517
"x": 494.25,
"y": 466
},
{
"x": 509,
"x": 494.25,
"y": 567
},
{
"x": 486,
"y": 567
},
{
"x": 486,
"y": 1291
},
{
"x": 390.6666666666667,
"x": 411.8333333333333,
"y": 1291
},
{
"x": 390.6666666666667,
"x": 411.8333333333333,
"y": 1331
}
],
@ -1012,16 +1044,24 @@
"labelPercentage": 0,
"route": [
{
"x": 302,
"x": 320,
"y": 176
},
{
"x": 302,
"y": 517
"x": 319.75,
"y": 220
},
{
"x": 221.25,
"y": 220
},
{
"x": 221.25,
"y": 567
},
{
"x": 187,
"y": 517
"y": 567
},
{
"x": 187,
@ -1060,28 +1100,28 @@
"labelPercentage": 0,
"route": [
{
"x": 306,
"x": 342.8333333333333,
"y": 1629
},
{
"x": 306,
"x": 342.8333333333333,
"y": 1724
},
{
"x": 620,
"x": 627,
"y": 1724
},
{
"x": 620,
"y": 416
"x": 627,
"y": 466
},
{
"x": 467,
"y": 416
"x": 531.25,
"y": 466
},
{
"x": 467,
"y": 326
"x": 531.25,
"y": 376
}
],
"animated": false,
@ -1124,20 +1164,20 @@
"y": 1774
},
{
"x": 647,
"x": 654,
"y": 1774
},
{
"x": 647,
"y": 366
"x": 654,
"y": 416
},
{
"x": 491,
"y": 366
"x": 555.25,
"y": 416
},
{
"x": 491,
"y": 326
"x": 555.25,
"y": 376
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 816 KiB

After

Width:  |  Height:  |  Size: 817 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 21,
"x": 25,
"y": 12
},
"width": 53,
@ -49,7 +49,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 158
"y": 208
},
"width": 80,
"height": 66,
@ -89,8 +89,8 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 21,
"y": 304
"x": 25,
"y": 404
},
"width": 53,
"height": 66,
@ -155,12 +155,20 @@
"labelPercentage": 0,
"route": [
{
"x": 38.66666666666667,
"x": 43.16666666666667,
"y": 78
},
{
"x": 43.16666666666667,
"y": 168
},
{
"x": 38.66666666666667,
"y": 158
"y": 168
},
{
"x": 38.66666666666667,
"y": 208
}
],
"animated": false,
@ -196,11 +204,19 @@
"route": [
{
"x": 38.66666666666667,
"y": 224
"y": 274
},
{
"x": 38.66666666666667,
"y": 304
"y": 364
},
{
"x": 43.16666666666667,
"y": 364
},
{
"x": 43.16666666666667,
"y": 404
}
],
"animated": false,
@ -235,20 +251,20 @@
"labelPercentage": 0,
"route": [
{
"x": 56.333333333333336,
"y": 304
"x": 60.833333333333336,
"y": 404
},
{
"x": 56.333333333333336,
"y": 264
"x": 60.833333333333336,
"y": 314
},
{
"x": 65.33333333333334,
"y": 264
"y": 314
},
{
"x": 65.33333333333334,
"y": 224
"y": 274
}
],
"animated": false,
@ -284,18 +300,18 @@
"route": [
{
"x": 65.33333333333334,
"y": 158
"y": 208
},
{
"x": 65.33333333333334,
"y": 118
},
{
"x": 56.333333333333336,
"x": 60.833333333333336,
"y": 118
},
{
"x": 56.333333333333336,
"x": 60.833333333333336,
"y": 78
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 331 KiB

After

Width:  |  Height:  |  Size: 331 KiB

View file

@ -7,7 +7,7 @@
"id": "poll the people",
"type": "rectangle",
"pos": {
"x": 61,
"x": 110,
"y": 12
},
"width": 150,
@ -278,9 +278,17 @@
"labelPercentage": 0,
"route": [
{
"x": 111,
"x": 160.16666666666666,
"y": 78
},
{
"x": 160.16666666666666,
"y": 118
},
{
"x": 111,
"y": 118
},
{
"x": 111,
"y": 158
@ -366,7 +374,7 @@
"labelPercentage": 0,
"route": [
{
"x": 259.3333333333333,
"x": 259.33333333333337,
"y": 304
},
{
@ -374,11 +382,11 @@
"y": 118
},
{
"x": 161,
"x": 210.16666666666666,
"y": 118
},
{
"x": 161,
"x": 210.16666666666666,
"y": 78
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 667 KiB

After

Width:  |  Height:  |  Size: 667 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 112,
"x": 94,
"y": 12
},
"width": 53,
@ -48,7 +48,7 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 62,
"x": 44,
"y": 213
},
"width": 226,
@ -89,7 +89,7 @@
"id": "g.b",
"type": "rectangle",
"pos": {
"x": 112,
"x": 94,
"y": 263
},
"width": 53,
@ -131,7 +131,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 469
"y": 519
},
"width": 253,
"height": 271,
@ -172,7 +172,7 @@
"type": "rectangle",
"pos": {
"x": 62,
"y": 524
"y": 574
},
"width": 153,
"height": 166,
@ -213,7 +213,7 @@
"type": "rectangle",
"pos": {
"x": 112,
"y": 574
"y": 624
},
"width": 53,
"height": 66,
@ -253,7 +253,7 @@
"id": "g.e",
"type": "rectangle",
"pos": {
"x": 185,
"x": 167,
"y": 263
},
"width": 53,
@ -295,7 +295,7 @@
"type": "rectangle",
"pos": {
"x": 285,
"y": 469
"y": 519
},
"width": 51,
"height": 66,
@ -360,11 +360,11 @@
"labelPercentage": 0,
"route": [
{
"x": 138.5,
"x": 120.75,
"y": 78
},
{
"x": 138.5,
"x": 120.75,
"y": 263
}
],
@ -400,12 +400,20 @@
"labelPercentage": 0,
"route": [
{
"x": 138.5,
"x": 120.75,
"y": 329
},
{
"x": 120.75,
"y": 474
},
{
"x": 138.5,
"y": 574
"y": 474
},
{
"x": 138.5,
"y": 624
}
],
"animated": false,
@ -441,26 +449,26 @@
"route": [
{
"x": 62,
"y": 740
"y": 790
},
{
"x": 62,
"y": 780
"y": 830
},
{
"x": 346,
"y": 780
"x": 376,
"y": 830
},
{
"x": 346,
"x": 376,
"y": 118
},
{
"x": 211.5,
"x": 193.75,
"y": 118
},
{
"x": 211.5,
"x": 193.75,
"y": 263
}
],
@ -496,11 +504,11 @@
"labelPercentage": 0,
"route": [
{
"x": 211.5,
"x": 193.75,
"y": 329
},
{
"x": 211.5,
"x": 193.75,
"y": 424
},
{
@ -509,7 +517,7 @@
},
{
"x": 302,
"y": 469
"y": 519
}
],
"animated": false,
@ -545,18 +553,18 @@
"route": [
{
"x": 319,
"y": 469
"y": 519
},
{
"x": 319,
"y": 168
},
{
"x": 221.5,
"x": 203.75,
"y": 168
},
{
"x": 221.5,
"x": 203.75,
"y": 213
}
],
@ -592,12 +600,20 @@
"labelPercentage": 0,
"route": [
{
"x": 148.5,
"x": 157.25,
"y": 379
},
{
"x": 157.25,
"y": 424
},
{
"x": 148.5,
"y": 524
"y": 424
},
{
"x": 148.5,
"y": 574
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 657 KiB

After

Width:  |  Height:  |  Size: 657 KiB

View file

@ -7,8 +7,8 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 359,
"y": 208
"x": 155,
"y": 158
},
"width": 53,
"height": 66,
@ -48,8 +48,8 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 245,
"y": 354
"x": 40,
"y": 304
},
"width": 280,
"height": 66,
@ -89,8 +89,8 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 286,
"y": 208
"x": 82,
"y": 158
},
"width": 53,
"height": 66,
@ -130,8 +130,8 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 318,
"y": 700
"x": 362,
"y": 500
},
"width": 120,
"height": 66,
@ -171,8 +171,8 @@
"id": "e",
"type": "rectangle",
"pos": {
"x": 277,
"y": 1192
"x": 384,
"y": 942
},
"width": 120,
"height": 66,
@ -212,8 +212,8 @@
"id": "f",
"type": "rectangle",
"pos": {
"x": 70,
"y": 946
"x": 139,
"y": 696
},
"width": 80,
"height": 66,
@ -253,8 +253,8 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 97,
"y": 700
"x": 187,
"y": 500
},
"width": 54,
"height": 66,
@ -294,8 +294,8 @@
"id": "h",
"type": "rectangle",
"pos": {
"x": 23,
"y": 700
"x": 53,
"y": 500
},
"width": 53,
"height": 66,
@ -335,8 +335,8 @@
"id": "i",
"type": "rectangle",
"pos": {
"x": 144,
"y": 1338
"x": 79,
"y": 1088
},
"width": 80,
"height": 66,
@ -376,7 +376,7 @@
"id": "j",
"type": "rectangle",
"pos": {
"x": 362,
"x": 141,
"y": 12
},
"width": 80,
@ -417,8 +417,8 @@
"id": "k",
"type": "rectangle",
"pos": {
"x": 157,
"y": 1474
"x": 92,
"y": 1224
},
"width": 53,
"height": 66,
@ -458,8 +458,8 @@
"id": "l",
"type": "rectangle",
"pos": {
"x": 348,
"y": 946
"x": 511,
"y": 696
},
"width": 120,
"height": 66,
@ -499,8 +499,8 @@
"id": "m",
"type": "rectangle",
"pos": {
"x": 171,
"y": 700
"x": 261,
"y": 500
},
"width": 80,
"height": 66,
@ -540,8 +540,8 @@
"id": "n",
"type": "rectangle",
"pos": {
"x": 137,
"y": 1192
"x": 197,
"y": 942
},
"width": 120,
"height": 66,
@ -581,8 +581,8 @@
"id": "o",
"type": "rectangle",
"pos": {
"x": 458,
"y": 700
"x": 502,
"y": 500
},
"width": 54,
"height": 66,
@ -622,8 +622,8 @@
"id": "p",
"type": "rectangle",
"pos": {
"x": 532,
"y": 700
"x": 576,
"y": 500
},
"width": 53,
"height": 66,
@ -663,8 +663,8 @@
"id": "q",
"type": "rectangle",
"pos": {
"x": 310,
"y": 1338
"x": 417,
"y": 1088
},
"width": 54,
"height": 66,
@ -729,12 +729,20 @@
"labelPercentage": 0,
"route": [
{
"x": 385.6666666666667,
"y": 274
"x": 181.5,
"y": 224
},
{
"x": 385.6666666666667,
"y": 354
"x": 181.5,
"y": 264
},
{
"x": 180,
"y": 264
},
{
"x": 180,
"y": 304
}
],
"animated": false,
@ -769,20 +777,20 @@
"labelPercentage": 0,
"route": [
{
"x": 312.6666666666667,
"y": 274
"x": 108.5,
"y": 224
},
{
"x": 312.6666666666667,
"y": 314
"x": 108.5,
"y": 264
},
{
"x": 315.6666666666667,
"y": 314
"x": 110,
"y": 264
},
{
"x": 315.6666666666667,
"y": 354
"x": 110,
"y": 304
}
],
"animated": false,
@ -817,20 +825,28 @@
"labelPercentage": 0,
"route": [
{
"x": 378.6666666666667,
"y": 766
"x": 422.75,
"y": 566
},
{
"x": 378.6666666666667,
"y": 856
"x": 422.75,
"y": 606
},
{
"x": 337.6666666666667,
"y": 856
"x": 421,
"y": 606
},
{
"x": 337.6666666666667,
"y": 1192
"x": 421,
"y": 802
},
{
"x": 444.3333333333333,
"y": 802
},
{
"x": 444.3333333333333,
"y": 942
}
],
"animated": false,
@ -865,20 +881,20 @@
"labelPercentage": 0,
"route": [
{
"x": 124.00000000000003,
"y": 1012
"x": 192.66666666666657,
"y": 762
},
{
"x": 124.00000000000003,
"y": 1102
"x": 192.66666666666657,
"y": 852
},
{
"x": 307.6666666666667,
"y": 1102
"x": 414.3333333333333,
"y": 852
},
{
"x": 307.6666666666667,
"y": 1192
"x": 414.3333333333333,
"y": 942
}
],
"animated": false,
@ -913,28 +929,28 @@
"labelPercentage": 0,
"route": [
{
"x": 365.6666666666667,
"y": 420
"x": 160,
"y": 370
},
{
"x": 365.6666666666667,
"y": 560
"x": 160,
"y": 410
},
{
"x": 86,
"y": 560
"x": 146,
"y": 410
},
{
"x": 86,
"y": 806
"x": 146,
"y": 606
},
{
"x": 97.33333333333337,
"y": 806
"x": 165.99999999999994,
"y": 606
},
{
"x": 97.33333333333337,
"y": 946
"x": 165.99999999999994,
"y": 696
}
],
"animated": false,
@ -969,20 +985,20 @@
"labelPercentage": 0,
"route": [
{
"x": 405.6666666666667,
"y": 420
"x": 200,
"y": 370
},
{
"x": 405.6666666666667,
"y": 610
"x": 200,
"y": 410
},
{
"x": 124,
"y": 610
"x": 214,
"y": 410
},
{
"x": 124,
"y": 700
"x": 214,
"y": 500
}
],
"animated": false,
@ -1017,12 +1033,20 @@
"labelPercentage": 0,
"route": [
{
"x": 124,
"y": 766
"x": 214,
"y": 566
},
{
"x": 124.00000000000003,
"y": 946
"x": 214,
"y": 606
},
{
"x": 192.66666666666657,
"y": 606
},
{
"x": 192.66666666666657,
"y": 696
}
],
"animated": false,
@ -1057,20 +1081,20 @@
"labelPercentage": 0,
"route": [
{
"x": 325.6666666666667,
"y": 420
"x": 120,
"y": 370
},
{
"x": 325.6666666666667,
"y": 510
"x": 120,
"y": 460
},
{
"x": 49.5,
"y": 510
"x": 79.5,
"y": 460
},
{
"x": 49.5,
"y": 700
"x": 79.5,
"y": 500
}
],
"animated": false,
@ -1105,28 +1129,28 @@
"labelPercentage": 0,
"route": [
{
"x": 285.6666666666667,
"y": 420
"x": 80,
"y": 370
},
{
"x": 285.6666666666667,
"y": 460
"x": 80,
"y": 410
},
{
"x": 12,
"y": 460
"y": 410
},
{
"x": 12,
"y": 1298
"y": 1048
},
{
"x": 171,
"y": 1298
"x": 106.08333333333331,
"y": 1048
},
{
"x": 171,
"y": 1338
"x": 106.08333333333331,
"y": 1088
}
],
"animated": false,
@ -1161,20 +1185,20 @@
"labelPercentage": 0,
"route": [
{
"x": 445.6666666666667,
"y": 420
"x": 240,
"y": 370
},
{
"x": 445.6666666666667,
"y": 660
"x": 240,
"y": 460
},
{
"x": 378.6666666666667,
"y": 660
"x": 422.75,
"y": 460
},
{
"x": 378.6666666666667,
"y": 700
"x": 422.75,
"y": 500
}
],
"animated": false,
@ -1209,20 +1233,20 @@
"labelPercentage": 0,
"route": [
{
"x": 382.1666666666667,
"x": 161.5,
"y": 78
},
{
"x": 382.1666666666667,
"x": 161.5,
"y": 118
},
{
"x": 312.6666666666667,
"x": 108.5,
"y": 118
},
{
"x": 312.6666666666667,
"y": 208
"x": 108.5,
"y": 158
}
],
"animated": false,
@ -1257,20 +1281,12 @@
"labelPercentage": 0,
"route": [
{
"x": 402.1666666666667,
"x": 181.5,
"y": 78
},
{
"x": 402.1666666666667,
"y": 168
},
{
"x": 385.6666666666667,
"y": 168
},
{
"x": 385.6666666666667,
"y": 208
"x": 181.5,
"y": 158
}
],
"animated": false,
@ -1305,19 +1321,19 @@
"labelPercentage": 0,
"route": [
{
"x": 455.6666666666667,
"y": 354
"x": 250,
"y": 304
},
{
"x": 455.6666666666667,
"y": 314
"x": 249.99999999999997,
"y": 118
},
{
"x": 422.1666666666667,
"y": 314
"x": 201.5,
"y": 118
},
{
"x": 422.1666666666667,
"x": 201.5,
"y": 78
}
],
@ -1353,12 +1369,12 @@
"labelPercentage": 0,
"route": [
{
"x": 184.33333333333334,
"y": 1404
"x": 119.41666666666663,
"y": 1154
},
{
"x": 184.33333333333334,
"y": 1474
"x": 119.41666666666663,
"y": 1224
}
],
"animated": false,
@ -1393,12 +1409,20 @@
"labelPercentage": 0,
"route": [
{
"x": 408.6666666666667,
"y": 766
"x": 452.75,
"y": 566
},
{
"x": 408.6666666666667,
"y": 946
"x": 452.75,
"y": 606
},
{
"x": 571.5,
"y": 606
},
{
"x": 571.5,
"y": 696
}
],
"animated": false,
@ -1433,20 +1457,20 @@
"labelPercentage": 0,
"route": [
{
"x": 408.6666666666667,
"y": 1012
"x": 571.5,
"y": 762
},
{
"x": 408.6666666666667,
"y": 1052
"x": 571.5,
"y": 802
},
{
"x": 367.6666666666667,
"y": 1052
"x": 474.3333333333333,
"y": 802
},
{
"x": 367.6666666666667,
"y": 1192
"x": 474.3333333333333,
"y": 942
}
],
"animated": false,
@ -1481,20 +1505,20 @@
"labelPercentage": 0,
"route": [
{
"x": 224.33333333333334,
"y": 766
"x": 314.3333333333333,
"y": 566
},
{
"x": 224.33333333333334,
"y": 906
"x": 314.3333333333333,
"y": 656
},
{
"x": 378.6666666666667,
"y": 906
"x": 541.5,
"y": 656
},
{
"x": 378.6666666666667,
"y": 946
"x": 541.5,
"y": 696
}
],
"animated": false,
@ -1529,12 +1553,20 @@
"labelPercentage": 0,
"route": [
{
"x": 197.66666666666666,
"y": 766
"x": 287.66666666666663,
"y": 566
},
{
"x": 197.66666666666669,
"y": 1192
"x": 287.66666666666663,
"y": 802
},
{
"x": 257.25,
"y": 802
},
{
"x": 257.25,
"y": 942
}
],
"animated": false,
@ -1569,12 +1601,20 @@
"labelPercentage": 0,
"route": [
{
"x": 197.66666666666669,
"y": 1258
"x": 257.25,
"y": 1008
},
{
"x": 197.66666666666669,
"y": 1338
"x": 257.25,
"y": 1048
},
{
"x": 132.74999999999994,
"y": 1048
},
{
"x": 132.74999999999994,
"y": 1088
}
],
"animated": false,
@ -1609,28 +1649,28 @@
"labelPercentage": 0,
"route": [
{
"x": 348.6666666666667,
"y": 766
"x": 392.75,
"y": 566
},
{
"x": 348.6666666666667,
"y": 806
"x": 392.75,
"y": 606
},
{
"x": 326.6666666666667,
"y": 806
"x": 353.41666666666663,
"y": 606
},
{
"x": 326.6666666666667,
"y": 1052
"x": 353.41666666666663,
"y": 902
},
{
"x": 227.66666666666669,
"y": 1052
"x": 287.25,
"y": 902
},
{
"x": 227.66666666666669,
"y": 1192
"x": 287.25,
"y": 942
}
],
"animated": false,
@ -1665,20 +1705,20 @@
"labelPercentage": 0,
"route": [
{
"x": 97.33333333333337,
"y": 1012
"x": 165.99999999999994,
"y": 762
},
{
"x": 97.33333333333337,
"y": 1152
"x": 165.99999999999994,
"y": 902
},
{
"x": 167.66666666666669,
"y": 1152
"x": 227.25,
"y": 902
},
{
"x": 167.66666666666669,
"y": 1192
"x": 227.25,
"y": 942
}
],
"animated": false,
@ -1713,12 +1753,20 @@
"labelPercentage": 0,
"route": [
{
"x": 485.6666666666667,
"y": 420
"x": 280,
"y": 370
},
{
"x": 485.6666666666667,
"y": 700
"x": 280,
"y": 410
},
{
"x": 529.75,
"y": 410
},
{
"x": 529.75,
"y": 500
}
],
"animated": false,
@ -1753,20 +1801,20 @@
"labelPercentage": 0,
"route": [
{
"x": 559.1666666666667,
"y": 766
"x": 603.25,
"y": 566
},
{
"x": 559.1666666666667,
"y": 806
"x": 603.25,
"y": 606
},
{
"x": 438.6666666666667,
"y": 806
"x": 601.5,
"y": 606
},
{
"x": 438.6666666666667,
"y": 946
"x": 601.5,
"y": 696
}
],
"animated": false,
@ -1801,12 +1849,12 @@
"labelPercentage": 0,
"route": [
{
"x": 337.6666666666667,
"y": 1258
"x": 444.3333333333333,
"y": 1008
},
{
"x": 337.6666666666667,
"y": 1338
"x": 444.3333333333333,
"y": 1088
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 341 KiB

After

Width:  |  Height:  |  Size: 342 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 269,
"x": 199,
"y": 530
},
"width": 120,
@ -48,8 +48,8 @@
"id": "tree",
"type": "rectangle",
"pos": {
"x": 102,
"y": 726
"x": 64,
"y": 676
},
"width": 80,
"height": 66,
@ -90,7 +90,7 @@
"type": "rectangle",
"pos": {
"x": 223,
"y": 726
"y": 676
},
"width": 72,
"height": 66,
@ -131,7 +131,7 @@
"type": "rectangle",
"pos": {
"x": 315,
"y": 726
"y": 676
},
"width": 87,
"height": 66,
@ -172,7 +172,7 @@
"type": "rectangle",
"pos": {
"x": 218,
"y": 872
"y": 822
},
"width": 83,
"height": 66,
@ -213,7 +213,7 @@
"type": "rectangle",
"pos": {
"x": 12,
"y": 872
"y": 822
},
"width": 81,
"height": 66,
@ -254,7 +254,7 @@
"type": "rectangle",
"pos": {
"x": 113,
"y": 872
"y": 822
},
"width": 85,
"height": 66,
@ -336,7 +336,7 @@
"type": "rectangle",
"pos": {
"x": 422,
"y": 726
"y": 676
},
"width": 76,
"height": 66,
@ -377,7 +377,7 @@
"type": "rectangle",
"pos": {
"x": 424,
"y": 872
"y": 822
},
"width": 72,
"height": 66,
@ -459,7 +459,7 @@
"type": "rectangle",
"pos": {
"x": 518,
"y": 726
"y": 676
},
"width": 113,
"height": 66,
@ -541,7 +541,7 @@
"type": "rectangle",
"pos": {
"x": 697,
"y": 726
"y": 676
},
"width": 103,
"height": 66,
@ -582,7 +582,7 @@
"type": "rectangle",
"pos": {
"x": 719,
"y": 872
"y": 822
},
"width": 60,
"height": 66,
@ -664,7 +664,7 @@
"type": "rectangle",
"pos": {
"x": 955,
"y": 726
"y": 676
},
"width": 82,
"height": 66,
@ -704,7 +704,7 @@
"id": "finally.a",
"type": "rectangle",
"pos": {
"x": 732,
"x": 766,
"y": 198
},
"width": 80,
@ -786,7 +786,7 @@
"id": "finally.inside",
"type": "rectangle",
"pos": {
"x": 728,
"x": 762,
"y": 62
},
"width": 88,
@ -934,20 +934,20 @@
"labelPercentage": 0,
"route": [
{
"x": 299,
"x": 229.5,
"y": 596
},
{
"x": 299,
"x": 229.5,
"y": 636
},
{
"x": 142.16666666666663,
"x": 104,
"y": 636
},
{
"x": 142.16666666666663,
"y": 726
"x": 104,
"y": 676
}
],
"animated": false,
@ -982,20 +982,12 @@
"labelPercentage": 0,
"route": [
{
"x": 329,
"x": 259.5,
"y": 596
},
{
"x": 329,
"y": 686
},
{
"x": 259.5,
"y": 686
},
{
"x": 259.5,
"y": 726
"y": 676
}
],
"animated": false,
@ -1030,12 +1022,20 @@
"labelPercentage": 0,
"route": [
{
"x": 359,
"x": 289.5,
"y": 596
},
{
"x": 289.5,
"y": 636
},
{
"x": 359,
"y": 726
"y": 636
},
{
"x": 359,
"y": 676
}
],
"animated": false,
@ -1071,11 +1071,11 @@
"route": [
{
"x": 259.5,
"y": 792
"y": 742
},
{
"x": 259.5,
"y": 872
"y": 822
}
],
"animated": false,
@ -1110,20 +1110,20 @@
"labelPercentage": 0,
"route": [
{
"x": 128.83333333333326,
"y": 792
"x": 90.66666666666663,
"y": 742
},
{
"x": 128.83333333333326,
"y": 832
"x": 90.66666666666663,
"y": 782
},
{
"x": 52.5,
"y": 832
"y": 782
},
{
"x": 52.5,
"y": 872
"y": 822
}
],
"animated": false,
@ -1158,12 +1158,20 @@
"labelPercentage": 0,
"route": [
{
"x": 155.5,
"y": 792
"x": 117.33333333333337,
"y": 742
},
{
"x": 117.33333333333337,
"y": 782
},
{
"x": 155.5,
"y": 872
"y": 782
},
{
"x": 155.5,
"y": 822
}
],
"animated": false,
@ -1203,7 +1211,7 @@
},
{
"x": 460.5,
"y": 726
"y": 676
}
],
"animated": false,
@ -1239,11 +1247,11 @@
"route": [
{
"x": 460.5,
"y": 792
"y": 742
},
{
"x": 460.5,
"y": 872
"y": 822
}
],
"animated": false,
@ -1283,7 +1291,7 @@
},
{
"x": 593.8333333333334,
"y": 726
"y": 676
}
],
"animated": false,
@ -1331,7 +1339,7 @@
},
{
"x": 556.1666666666667,
"y": 726
"y": 676
}
],
"animated": false,
@ -1371,7 +1379,7 @@
},
{
"x": 749,
"y": 726
"y": 676
}
],
"animated": false,
@ -1407,11 +1415,11 @@
"route": [
{
"x": 749,
"y": 792
"y": 742
},
{
"x": 749,
"y": 872
"y": 822
}
],
"animated": false,
@ -1446,12 +1454,12 @@
"labelPercentage": 0,
"route": [
{
"x": 1010.3333333333333,
"x": 1010.3333333333334,
"y": 596
},
{
"x": 1010.3333333333333,
"y": 726
"x": 1010.3333333333334,
"y": 676
}
],
"animated": false,
@ -1486,11 +1494,11 @@
"labelPercentage": 0,
"route": [
{
"x": 845.1666666666666,
"x": 845.1666666666667,
"y": 596
},
{
"x": 845.1666666666666,
"x": 845.1666666666667,
"y": 636
},
{
@ -1499,7 +1507,7 @@
},
{
"x": 983,
"y": 726
"y": 676
}
],
"animated": false,
@ -1534,11 +1542,19 @@
"labelPercentage": 0,
"route": [
{
"x": 759.3333333333333,
"x": 793.25,
"y": 264
},
{
"x": 759.3333333333333,
"x": 793.25,
"y": 304
},
{
"x": 759.3333333333334,
"y": 304
},
{
"x": 759.3333333333334,
"y": 344
}
],
@ -1574,11 +1590,11 @@
"labelPercentage": 0,
"route": [
{
"x": 772.6666666666666,
"x": 806.5833333333334,
"y": 128
},
{
"x": 772.6666666666666,
"x": 806.5833333333334,
"y": 198
}
],
@ -1614,11 +1630,11 @@
"labelPercentage": 0,
"route": [
{
"x": 759.3333333333333,
"x": 759.3333333333334,
"y": 410
},
{
"x": 759.3333333333333,
"x": 759.3333333333334,
"y": 480
}
],
@ -1654,19 +1670,19 @@
"labelPercentage": 0,
"route": [
{
"x": 786,
"x": 819.9166666666667,
"y": 264
},
{
"x": 786,
"x": 819.9166666666667,
"y": 304
},
{
"x": 853.8333333333333,
"x": 853.8333333333334,
"y": 304
},
{
"x": 853.8333333333333,
"x": 853.8333333333334,
"y": 344
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 664 KiB

After

Width:  |  Height:  |  Size: 664 KiB

View file

@ -278,11 +278,11 @@
"labelPercentage": 0,
"route": [
{
"x": 117.83333333333334,
"x": 117.83333333333333,
"y": 78
},
{
"x": 117.83333333333334,
"x": 117.83333333333333,
"y": 118
},
{
@ -325,11 +325,11 @@
"labelPercentage": 0,
"route": [
{
"x": 151.16666666666669,
"x": 151.16666666666666,
"y": 78
},
{
"x": 151.16666666666669,
"x": 151.16666666666666,
"y": 168
},
{

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 332 KiB

View file

@ -7,7 +7,7 @@
"id": "aa",
"type": "step",
"pos": {
"x": 70,
"x": 195,
"y": 12
},
"width": 102,
@ -48,7 +48,7 @@
"id": "bb",
"type": "step",
"pos": {
"x": 155,
"x": 245,
"y": 193
},
"width": 103,
@ -89,7 +89,7 @@
"id": "cc",
"type": "step",
"pos": {
"x": 138,
"x": 185,
"y": 374
},
"width": 101,
@ -130,11 +130,11 @@
"id": "dd",
"type": "rectangle",
"pos": {
"x": 22,
"x": 68,
"y": 641
},
"width": 250,
"height": 272,
"height": 322,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -171,7 +171,7 @@
"id": "dd.ee",
"type": "diamond",
"pos": {
"x": 72,
"x": 118,
"y": 691
},
"width": 64,
@ -212,11 +212,11 @@
"id": "ff",
"type": "rectangle",
"pos": {
"x": 289,
"y": 1839
"x": 273,
"y": 1889
},
"width": 283,
"height": 338,
"width": 281,
"height": 388,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -253,8 +253,8 @@
"id": "ff.gg",
"type": "diamond",
"pos": {
"x": 342,
"y": 1889
"x": 323,
"y": 1939
},
"width": 80,
"height": 92,
@ -294,7 +294,7 @@
"id": "dd.hh",
"type": "diamond",
"pos": {
"x": 156,
"x": 202,
"y": 691
},
"width": 66,
@ -335,8 +335,8 @@
"id": "ii",
"type": "rectangle",
"pos": {
"x": 303,
"y": 998
"x": 208,
"y": 1048
},
"width": 54,
"height": 66,
@ -376,8 +376,8 @@
"id": "jj",
"type": "rectangle",
"pos": {
"x": 303,
"y": 1189
"x": 207,
"y": 1239
},
"width": 55,
"height": 66,
@ -417,8 +417,8 @@
"id": "kk",
"type": "rectangle",
"pos": {
"x": 290,
"y": 1451
"x": 195,
"y": 1501
},
"width": 80,
"height": 66,
@ -458,8 +458,8 @@
"id": "ll",
"type": "rectangle",
"pos": {
"x": 249,
"y": 2358
"x": 251,
"y": 2468
},
"width": 265,
"height": 317,
@ -499,8 +499,8 @@
"id": "ll.mm",
"type": "oval",
"pos": {
"x": 299,
"y": 2408
"x": 301,
"y": 2518
},
"width": 81,
"height": 81,
@ -540,8 +540,8 @@
"id": "ff.mm",
"type": "oval",
"pos": {
"x": 442,
"y": 1894
"x": 423,
"y": 1944
},
"width": 81,
"height": 81,
@ -581,8 +581,8 @@
"id": "nn",
"type": "cylinder",
"pos": {
"x": 12,
"y": 3259
"x": 79,
"y": 3469
},
"width": 327,
"height": 166,
@ -622,8 +622,8 @@
"id": "nn.oo",
"type": "rectangle",
"pos": {
"x": 62,
"y": 3309
"x": 129,
"y": 3519
},
"width": 63,
"height": 66,
@ -663,8 +663,8 @@
"id": "ff.pp",
"type": "rectangle",
"pos": {
"x": 350,
"y": 2061
"x": 402,
"y": 2161
},
"width": 63,
"height": 66,
@ -704,8 +704,8 @@
"id": "ll.qq",
"type": "rectangle",
"pos": {
"x": 400,
"y": 2415
"x": 402,
"y": 2525
},
"width": 64,
"height": 66,
@ -745,8 +745,8 @@
"id": "ll.rr",
"type": "rectangle",
"pos": {
"x": 403,
"y": 2559
"x": 405,
"y": 2669
},
"width": 58,
"height": 66,
@ -786,8 +786,8 @@
"id": "ss",
"type": "rectangle",
"pos": {
"x": 110,
"y": 1139
"x": 14,
"y": 1189
},
"width": 158,
"height": 166,
@ -827,8 +827,8 @@
"id": "ss.tt",
"type": "rectangle",
"pos": {
"x": 160,
"y": 1189
"x": 64,
"y": 1239
},
"width": 58,
"height": 66,
@ -868,8 +868,8 @@
"id": "uu",
"type": "rectangle",
"pos": {
"x": 107,
"y": 1385
"x": 12,
"y": 1435
},
"width": 163,
"height": 166,
@ -909,8 +909,8 @@
"id": "uu.vv",
"type": "rectangle",
"pos": {
"x": 157,
"y": 1435
"x": 62,
"y": 1485
},
"width": 63,
"height": 66,
@ -950,8 +950,8 @@
"id": "ww",
"type": "queue",
"pos": {
"x": 139,
"y": 1636
"x": 103,
"y": 1686
},
"width": 149,
"height": 118,
@ -1003,8 +1003,8 @@
"id": "rm",
"type": "rectangle",
"pos": {
"x": 149,
"y": 2525
"x": 113,
"y": 2635
},
"width": 80,
"height": 66,
@ -1044,8 +1044,8 @@
"id": "nn.xx",
"type": "rectangle",
"pos": {
"x": 145,
"y": 3309
"x": 212,
"y": 3519
},
"width": 62,
"height": 66,
@ -1085,8 +1085,8 @@
"id": "yy",
"type": "rectangle",
"pos": {
"x": 290,
"y": 2815
"x": 309,
"y": 2975
},
"width": 238,
"height": 354,
@ -1126,8 +1126,8 @@
"id": "yy.zz",
"type": "queue",
"pos": {
"x": 340,
"y": 2865
"x": 359,
"y": 3025
},
"width": 138,
"height": 118,
@ -1179,8 +1179,8 @@
"id": "yy.ab",
"type": "rectangle",
"pos": {
"x": 377,
"y": 3053
"x": 397,
"y": 3213
},
"width": 63,
"height": 66,
@ -1220,8 +1220,8 @@
"id": "nn.ac",
"type": "rectangle",
"pos": {
"x": 227,
"y": 3309
"x": 294,
"y": 3519
},
"width": 62,
"height": 66,
@ -1261,8 +1261,8 @@
"id": "ad",
"type": "parallelogram",
"pos": {
"x": 200,
"y": 3500
"x": 267,
"y": 3710
},
"width": 115,
"height": 66,
@ -1327,19 +1327,19 @@
"labelPercentage": 0,
"route": [
{
"x": 138,
"x": 263,
"y": 111
},
{
"x": 138.33333333333334,
"x": 263.08333333333337,
"y": 153
},
{
"x": 206.5,
"x": 297.16666666666663,
"y": 153
},
{
"x": 207,
"x": 297,
"y": 193
}
],
@ -1375,11 +1375,19 @@
"labelPercentage": 0,
"route": [
{
"x": 189,
"x": 280,
"y": 294
},
{
"x": 189,
"x": 280,
"y": 334
},
{
"x": 235.66666666666669,
"y": 334
},
{
"x": 236,
"y": 374
}
],
@ -1415,11 +1423,19 @@
"labelPercentage": 0,
"route": [
{
"x": 104,
"x": 229,
"y": 113
},
{
"x": 104,
"x": 229.08333333333334,
"y": 153
},
{
"x": 150.66666666666669,
"y": 153
},
{
"x": 151,
"y": 691
}
],
@ -1455,20 +1471,20 @@
"labelPercentage": 0,
"route": [
{
"x": 224,
"y": 293
"x": 314,
"y": 294
},
{
"x": 223.66666666666666,
"x": 314.33333333333337,
"y": 334
},
{
"x": 395.66666666666663,
"x": 376.5,
"y": 334
},
{
"x": 396,
"y": 1904
"x": 377,
"y": 1955
}
],
"animated": false,
@ -1503,11 +1519,11 @@
"labelPercentage": 0,
"route": [
{
"x": 189,
"x": 236,
"y": 475
},
{
"x": 189,
"x": 236,
"y": 691
}
],
@ -1543,28 +1559,28 @@
"labelPercentage": 0,
"route": [
{
"x": 104,
"x": 151,
"y": 783
},
{
"x": 104.33333333333334,
"y": 823
"x": 150.66666666666669,
"y": 873
},
{
"x": 199.33333333333334,
"y": 823
"x": 198.16666666666669,
"y": 873
},
{
"x": 199.33333333333334,
"y": 958
"x": 198.16666666666666,
"y": 1008
},
{
"x": 330.83333333333337,
"y": 958
"x": 235,
"y": 1008
},
{
"x": 330.83333333333337,
"y": 998
"x": 235,
"y": 1048
}
],
"animated": false,
@ -1599,12 +1615,12 @@
"labelPercentage": 0,
"route": [
{
"x": 330.83333333333337,
"y": 1064
"x": 235,
"y": 1114
},
{
"x": 330.83333333333337,
"y": 1189
"x": 235,
"y": 1239
}
],
"animated": false,
@ -1639,12 +1655,12 @@
"labelPercentage": 0,
"route": [
{
"x": 330.83333333333337,
"y": 1255
"x": 235,
"y": 1305
},
{
"x": 330.83333333333337,
"y": 1451.6666666666667
"x": 235,
"y": 1501.6666666666667
}
],
"animated": false,
@ -1679,20 +1695,28 @@
"labelPercentage": 0,
"route": [
{
"x": 344.1666666666667,
"y": 1517.6666666666667
"x": 248.33333333333334,
"y": 1567.6666666666667
},
{
"x": 344.1666666666667,
"y": 1596
"x": 248.33333333333334,
"y": 1646
},
{
"x": 482.8333333333333,
"y": 1596
"x": 442.58333333333337,
"y": 1646
},
{
"x": 483,
"y": 1895
"x": 442.58333333333337,
"y": 1844
},
{
"x": 463.66666666666663,
"y": 1844
},
{
"x": 464,
"y": 1945
}
],
"animated": false,
@ -1727,20 +1751,36 @@
"labelPercentage": 0,
"route": [
{
"x": 483,
"y": 1976
"x": 464,
"y": 2026
},
{
"x": 482.8333333333333,
"y": 2021
"x": 463.66666666666663,
"y": 2121
},
{
"x": 339.8333333333333,
"y": 2021
"x": 361.66666666666663,
"y": 2121
},
{
"x": 340,
"y": 2408
"x": 361.66666666666663,
"y": 2322
},
{
"x": 351.66666666666663,
"y": 2322
},
{
"x": 351.66666666666663,
"y": 2423
},
{
"x": 341.66666666666663,
"y": 2423
},
{
"x": 342,
"y": 2518
}
],
"animated": false,
@ -1775,20 +1815,28 @@
"labelPercentage": 0,
"route": [
{
"x": 340,
"y": 2489
"x": 342,
"y": 2599
},
{
"x": 339.8333333333333,
"y": 2720
"x": 341.66666666666663,
"y": 2880
},
{
"x": 93.5,
"y": 2720
"x": 94.66666666666666,
"y": 2880
},
{
"x": 93.5,
"y": 3309
"x": 94.66666666666666,
"y": 3424
},
{
"x": 160.58333333333331,
"y": 3424
},
{
"x": 160.58333333333331,
"y": 3519
}
],
"animated": false,
@ -1823,12 +1871,20 @@
"labelPercentage": 0,
"route": [
{
"x": 382,
"y": 1981
"x": 363,
"y": 2031
},
{
"x": 382.3333333333333,
"y": 2061
"x": 363.16666666666663,
"y": 2071
},
{
"x": 434.16666666666663,
"y": 2071
},
{
"x": 434.16666666666663,
"y": 2161
}
],
"animated": false,
@ -1863,20 +1919,12 @@
"labelPercentage": 0,
"route": [
{
"x": 382.3333333333333,
"y": 2127
"x": 434.16666666666663,
"y": 2227
},
{
"x": 382.3333333333333,
"y": 2222
},
{
"x": 432.3333333333333,
"y": 2222
},
{
"x": 432.3333333333333,
"y": 2415.5
"x": 434.16666666666663,
"y": 2525.5
}
],
"animated": false,
@ -1911,12 +1959,12 @@
"labelPercentage": 0,
"route": [
{
"x": 432.3333333333333,
"y": 2481.5
"x": 434.16666666666663,
"y": 2591.5
},
{
"x": 432.3333333333333,
"y": 2559
"x": 434.16666666666663,
"y": 2669
}
],
"animated": false,
@ -1951,12 +1999,28 @@
"labelPercentage": 0,
"route": [
{
"x": 189,
"x": 236,
"y": 783
},
{
"x": 189.33333333333334,
"y": 1189
"x": 235.66666666666669,
"y": 823
},
{
"x": 188.16666666666669,
"y": 823
},
{
"x": 188.16666666666666,
"y": 1008
},
{
"x": 93.49999999999999,
"y": 1008
},
{
"x": 93.5,
"y": 1239
}
],
"animated": false,
@ -1991,12 +2055,12 @@
"labelPercentage": 0,
"route": [
{
"x": 189.33333333333334,
"y": 1255
"x": 93.5,
"y": 1305
},
{
"x": 189.33333333333334,
"y": 1435
"x": 93.5,
"y": 1485
}
],
"animated": false,
@ -2031,20 +2095,20 @@
"labelPercentage": 0,
"route": [
{
"x": 317.50000000000006,
"y": 1517.6666666666667
"x": 221.66666666666669,
"y": 1567.6666666666667
},
{
"x": 317.50000000000006,
"y": 1596
"x": 221.66666666666669,
"y": 1646
},
{
"x": 239,
"y": 1596
"x": 202.66666666666669,
"y": 1646
},
{
"x": 239,
"y": 1636
"x": 203,
"y": 1686
}
],
"animated": false,
@ -2079,12 +2143,20 @@
"labelPercentage": 0,
"route": [
{
"x": 189.33333333333334,
"y": 1501
"x": 93.5,
"y": 1551
},
{
"x": 189,
"y": 1636
"x": 93.5,
"y": 1646
},
{
"x": 153.00000000000003,
"y": 1646
},
{
"x": 153,
"y": 1686
}
],
"animated": false,
@ -2119,12 +2191,12 @@
"labelPercentage": 0,
"route": [
{
"x": 189,
"y": 1754
"x": 153,
"y": 1804
},
{
"x": 189.33333333333331,
"y": 2525.3333333333335
"x": 153,
"y": 2635.3333333333335
}
],
"animated": false,
@ -2159,12 +2231,28 @@
"labelPercentage": 0,
"route": [
{
"x": 175.99999999999997,
"y": 2591.3333333333335
"x": 139.66666666666666,
"y": 2701.3333333333335
},
{
"x": 176,
"y": 3309
"x": 139.66666666666666,
"y": 2930
},
{
"x": 148.33333333333334,
"y": 2930
},
{
"x": 148.33333333333334,
"y": 3374
},
{
"x": 243.08333333333331,
"y": 3374
},
{
"x": 243.08333333333331,
"y": 3519
}
],
"animated": false,
@ -2199,12 +2287,20 @@
"labelPercentage": 0,
"route": [
{
"x": 432.3333333333333,
"y": 2625
"x": 434.16666666666663,
"y": 2735
},
{
"x": 432,
"y": 2865
"x": 434.16666666666663,
"y": 2830
},
{
"x": 451.8333333333333,
"y": 2830
},
{
"x": 452,
"y": 3025
}
],
"animated": false,
@ -2239,20 +2335,20 @@
"labelPercentage": 0,
"route": [
{
"x": 202.66666666666666,
"y": 2591.3333333333335
"x": 166.33333333333334,
"y": 2701.3333333333335
},
{
"x": 202.66666666666666,
"y": 2770
"x": 166.33333333333334,
"y": 2830
},
{
"x": 386.3333333333333,
"y": 2770
"x": 405.83333333333337,
"y": 2830
},
{
"x": 386,
"y": 2865
"x": 406,
"y": 3025
}
],
"animated": false,
@ -2287,12 +2383,12 @@
"labelPercentage": 0,
"route": [
{
"x": 409,
"y": 2983
"x": 429,
"y": 3143
},
{
"x": 409.3333333333333,
"y": 3053
"x": 428.83333333333337,
"y": 3213
}
],
"animated": false,
@ -2327,20 +2423,20 @@
"labelPercentage": 0,
"route": [
{
"x": 409.3333333333333,
"y": 3119
"x": 428.83333333333337,
"y": 3279
},
{
"x": 409.3333333333333,
"y": 3214
"x": 428.83333333333337,
"y": 3374
},
{
"x": 258,
"y": 3214
"x": 325.08333333333337,
"y": 3374
},
{
"x": 258,
"y": 3309
"x": 325.08333333333337,
"y": 3519
}
],
"animated": false,
@ -2375,12 +2471,12 @@
"labelPercentage": 0,
"route": [
{
"x": 258,
"y": 3375
"x": 325.0833333333333,
"y": 3585
},
{
"x": 258,
"y": 3500
"x": 325,
"y": 3710
}
],
"animated": false,
@ -2415,20 +2511,20 @@
"labelPercentage": 0,
"route": [
{
"x": 239,
"y": 1754
"x": 203,
"y": 1804
},
{
"x": 239,
"y": 1794
"x": 202.66666666666669,
"y": 1844
},
{
"x": 369,
"y": 1794
"x": 349.83333333333337,
"y": 1844
},
{
"x": 369,
"y": 1904
"x": 350,
"y": 1953
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 814 KiB

After

Width:  |  Height:  |  Size: 815 KiB

View file

@ -89,8 +89,8 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 322,
"y": 1768
"x": 417,
"y": 1718
},
"width": 53,
"height": 66,
@ -130,8 +130,8 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 395,
"y": 1768
"x": 490,
"y": 1718
},
"width": 54,
"height": 66,
@ -171,8 +171,8 @@
"id": "e",
"type": "rectangle",
"pos": {
"x": 395,
"y": 1904
"x": 490,
"y": 1854
},
"width": 53,
"height": 66,
@ -212,8 +212,8 @@
"id": "f",
"type": "rectangle",
"pos": {
"x": 469,
"y": 1768
"x": 564,
"y": 1718
},
"width": 51,
"height": 66,
@ -253,8 +253,8 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 198,
"y": 1768
"x": 170,
"y": 1718
},
"width": 80,
"height": 66,
@ -295,7 +295,7 @@
"type": "rectangle",
"pos": {
"x": 238,
"y": 1061
"y": 1011
},
"width": 53,
"height": 66,
@ -335,8 +335,8 @@
"id": "i",
"type": "rectangle",
"pos": {
"x": 311,
"y": 1061
"x": 403,
"y": 1011
},
"width": 546,
"height": 522,
@ -376,8 +376,8 @@
"id": "i.j",
"type": "rectangle",
"pos": {
"x": 583,
"y": 1111
"x": 675,
"y": 1061
},
"width": 222,
"height": 166,
@ -417,8 +417,8 @@
"id": "i.j.k",
"type": "rectangle",
"pos": {
"x": 633,
"y": 1161
"x": 725,
"y": 1111
},
"width": 53,
"height": 66,
@ -458,8 +458,8 @@
"id": "i.j.l",
"type": "rectangle",
"pos": {
"x": 706,
"y": 1161
"x": 798,
"y": 1111
},
"width": 49,
"height": 66,
@ -499,8 +499,8 @@
"id": "i.m",
"type": "rectangle",
"pos": {
"x": 361,
"y": 1427
"x": 453,
"y": 1377
},
"width": 200,
"height": 66,
@ -540,8 +540,8 @@
"id": "i.n",
"type": "rectangle",
"pos": {
"x": 581,
"y": 1467
"x": 673,
"y": 1417
},
"width": 53,
"height": 66,
@ -581,8 +581,8 @@
"id": "i.o",
"type": "rectangle",
"pos": {
"x": 654,
"y": 1367
"x": 746,
"y": 1317
},
"width": 153,
"height": 166,
@ -622,8 +622,8 @@
"id": "i.o.p",
"type": "rectangle",
"pos": {
"x": 704,
"y": 1417
"x": 796,
"y": 1367
},
"width": 53,
"height": 66,
@ -663,8 +663,8 @@
"id": "q",
"type": "rectangle",
"pos": {
"x": 807,
"y": 1768
"x": 895,
"y": 1718
},
"width": 80,
"height": 66,
@ -1385,20 +1385,20 @@
"labelPercentage": 0,
"route": [
{
"x": 660,
"y": 1227
"x": 751.5833333333333,
"y": 1177
},
{
"x": 660,
"y": 1322
"x": 751.5833333333333,
"y": 1272
},
{
"x": 511.5,
"y": 1322
"x": 603.0833333333333,
"y": 1272
},
{
"x": 511.5,
"y": 1427.625
"x": 603.0833333333333,
"y": 1377.625
}
],
"animated": false,
@ -1433,12 +1433,12 @@
"labelPercentage": 0,
"route": [
{
"x": 731,
"y": 1227
"x": 822.5833333333333,
"y": 1177
},
{
"x": 731,
"y": 1417
"x": 822.5833333333333,
"y": 1367
}
],
"animated": false,
@ -1473,20 +1473,28 @@
"labelPercentage": 0,
"route": [
{
"x": 867.5,
"y": 1768
"x": 955.75,
"y": 1718
},
{
"x": 867.5,
"y": 1016
"x": 955.75,
"y": 1578
},
{
"x": 461.5,
"y": 1016
"x": 989.0833333333333,
"y": 1578
},
{
"x": 461.5,
"y": 1427.625
"x": 989.0833333333333,
"y": 966
},
{
"x": 553.0833333333333,
"y": 966
},
{
"x": 553.0833333333333,
"y": 1377.625
}
],
"animated": false,
@ -1521,20 +1529,20 @@
"labelPercentage": 0,
"route": [
{
"x": 528.1666666666666,
"y": 1493.625
"x": 619.7499999999999,
"y": 1443.625
},
{
"x": 528.1666666666666,
"y": 1678
"x": 619.7499999999999,
"y": 1628
},
{
"x": 827.5,
"y": 1678
"x": 915.75,
"y": 1628
},
{
"x": 827.5,
"y": 1768
"x": 915.75,
"y": 1718
}
],
"animated": false,
@ -1569,20 +1577,20 @@
"labelPercentage": 0,
"route": [
{
"x": 608,
"y": 1533
"x": 699.5833333333333,
"y": 1483
},
{
"x": 608,
"y": 1628
"x": 699.5833333333333,
"y": 1578
},
{
"x": 847.5,
"y": 1628
"x": 935.75,
"y": 1578
},
{
"x": 847.5,
"y": 1768
"x": 935.75,
"y": 1718
}
],
"animated": false,
@ -1617,20 +1625,20 @@
"labelPercentage": 0,
"route": [
{
"x": 428.16666666666663,
"y": 1493.625
"x": 519.7499999999999,
"y": 1443.625
},
{
"x": 428.16666666666663,
"y": 1678
"x": 519.7499999999999,
"y": 1628
},
{
"x": 348.8333333333333,
"y": 1678
"x": 443.91666666666663,
"y": 1628
},
{
"x": 348.8333333333333,
"y": 1768
"x": 443.91666666666663,
"y": 1718
}
],
"animated": false,
@ -1665,20 +1673,20 @@
"labelPercentage": 0,
"route": [
{
"x": 461.5,
"y": 1493.625
"x": 553.0833333333333,
"y": 1443.625
},
{
"x": 461.5,
"y": 1728
"x": 553.0833333333333,
"y": 1678
},
{
"x": 422.3333333333333,
"y": 1728
"x": 517.4166666666666,
"y": 1678
},
{
"x": 422.3333333333333,
"y": 1768
"x": 517.4166666666666,
"y": 1718
}
],
"animated": false,
@ -1713,20 +1721,20 @@
"labelPercentage": 0,
"route": [
{
"x": 394.8333333333333,
"y": 1493.625
"x": 486.4166666666666,
"y": 1443.625
},
{
"x": 394.8333333333333,
"y": 1628
"x": 486.4166666666666,
"y": 1578
},
{
"x": 251.66666666666674,
"y": 1628
"x": 224.16666666666663,
"y": 1578
},
{
"x": 251.66666666666674,
"y": 1768
"x": 224.16666666666663,
"y": 1718
}
],
"animated": false,
@ -1761,12 +1769,20 @@
"labelPercentage": 0,
"route": [
{
"x": 494.8333333333333,
"y": 1493.625
"x": 586.4166666666665,
"y": 1443.625
},
{
"x": 494.8333333333333,
"y": 1768
"x": 586.4166666666665,
"y": 1578
},
{
"x": 589.9166666666666,
"y": 1578
},
{
"x": 589.9166666666666,
"y": 1718
}
],
"animated": false,
@ -1801,12 +1817,12 @@
"labelPercentage": 0,
"route": [
{
"x": 422.3333333333333,
"y": 1834
"x": 517.4166666666666,
"y": 1784
},
{
"x": 422.3333333333333,
"y": 1904
"x": 517.4166666666666,
"y": 1854
}
],
"animated": false,
@ -2065,12 +2081,12 @@
"y": 966
},
{
"x": 411.5,
"x": 503.08333333333326,
"y": 966
},
{
"x": 411.5,
"y": 1427.625
"x": 503.08333333333326,
"y": 1377.625
}
],
"animated": false,
@ -2110,7 +2126,15 @@
},
{
"x": 225,
"y": 1768
"y": 966
},
{
"x": 197.5,
"y": 966
},
{
"x": 197.4999999999999,
"y": 1718
}
],
"animated": false,
@ -2150,7 +2174,7 @@
},
{
"x": 265,
"y": 1061
"y": 1011
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 667 KiB

After

Width:  |  Height:  |  Size: 668 KiB

View file

@ -87,7 +87,7 @@
"id": "z",
"type": "text",
"pos": {
"x": 143,
"x": 235,
"y": 12
},
"width": 179,
@ -275,9 +275,17 @@
"labelPercentage": 0,
"route": [
{
"x": 203,
"x": 294.9166666666667,
"y": 63
},
{
"x": 294.9166666666667,
"y": 103
},
{
"x": 203,
"y": 103
},
{
"x": 203,
"y": 143
@ -315,11 +323,11 @@
"labelPercentage": 0,
"route": [
{
"x": 262.6666666666667,
"x": 354.5833333333333,
"y": 63
},
{
"x": 262.6666666666667,
"x": 354.5833333333333,
"y": 103
},
{

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 511 KiB

After

Width:  |  Height:  |  Size: 511 KiB

View file

@ -48,7 +48,7 @@
"id": "transmitter",
"type": "rectangle",
"pos": {
"x": 24,
"x": 17,
"y": 259
},
"width": 151,
@ -119,14 +119,22 @@
},
{
"x": 52.25,
"y": 118
},
{
"x": 44.5,
"y": 118
},
{
"x": 44.5,
"y": 219
},
{
"x": 62.5,
"x": 54.75,
"y": 219
},
{
"x": 62.5,
"x": 54.75,
"y": 259
}
],
@ -167,14 +175,6 @@
},
{
"x": 92.5,
"y": 118
},
{
"x": 100.25,
"y": 118
},
{
"x": 100.25,
"y": 259
}
],
@ -218,19 +218,19 @@
"y": 118
},
{
"x": 148.25,
"x": 140.5,
"y": 118
},
{
"x": 148.25,
"x": 140.5,
"y": 219
},
{
"x": 138,
"x": 130.25,
"y": 219
},
{
"x": 138,
"x": 130.25,
"y": 259
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 266 KiB

After

Width:  |  Height:  |  Size: 266 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 382,
"x": 310,
"y": 294
},
"width": 240,
@ -48,8 +48,8 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 46,
"y": 540
"x": 29,
"y": 590
},
"width": 120,
"height": 66,
@ -89,8 +89,8 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 186,
"y": 540
"x": 169,
"y": 590
},
"width": 80,
"height": 66,
@ -130,8 +130,8 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 333,
"y": 540
"x": 317,
"y": 590
},
"width": 80,
"height": 66,
@ -171,8 +171,8 @@
"id": "e",
"type": "rectangle",
"pos": {
"x": 479,
"y": 540
"x": 463,
"y": 590
},
"width": 80,
"height": 66,
@ -212,8 +212,8 @@
"id": "f",
"type": "rectangle",
"pos": {
"x": 623,
"y": 540
"x": 607,
"y": 590
},
"width": 80,
"height": 66,
@ -253,7 +253,7 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 462,
"x": 390,
"y": 158
},
"width": 80,
@ -294,8 +294,8 @@
"id": "h",
"type": "rectangle",
"pos": {
"x": 723,
"y": 540
"x": 707,
"y": 590
},
"width": 120,
"height": 66,
@ -417,7 +417,7 @@
"id": "k",
"type": "rectangle",
"pos": {
"x": 489,
"x": 439,
"y": 12
},
"width": 53,
@ -458,7 +458,7 @@
"id": "l",
"type": "rectangle",
"pos": {
"x": 420,
"x": 370,
"y": 12
},
"width": 49,
@ -499,8 +499,8 @@
"id": "m",
"type": "rectangle",
"pos": {
"x": 136,
"y": 686
"x": 143,
"y": 736
},
"width": 57,
"height": 66,
@ -540,8 +540,8 @@
"id": "n",
"type": "rectangle",
"pos": {
"x": 213,
"y": 686
"x": 220,
"y": 736
},
"width": 53,
"height": 66,
@ -581,8 +581,8 @@
"id": "o",
"type": "rectangle",
"pos": {
"x": 286,
"y": 686
"x": 293,
"y": 736
},
"width": 54,
"height": 66,
@ -622,8 +622,8 @@
"id": "p",
"type": "rectangle",
"pos": {
"x": 360,
"y": 686
"x": 367,
"y": 736
},
"width": 53,
"height": 66,
@ -663,8 +663,8 @@
"id": "q",
"type": "rectangle",
"pos": {
"x": 433,
"y": 686
"x": 440,
"y": 736
},
"width": 54,
"height": 66,
@ -704,8 +704,8 @@
"id": "r",
"type": "rectangle",
"pos": {
"x": 507,
"y": 686
"x": 514,
"y": 736
},
"width": 51,
"height": 66,
@ -745,8 +745,8 @@
"id": "s",
"type": "rectangle",
"pos": {
"x": 360,
"y": 822
"x": 367,
"y": 872
},
"width": 52,
"height": 66,
@ -786,8 +786,8 @@
"id": "t",
"type": "rectangle",
"pos": {
"x": 578,
"y": 686
"x": 585,
"y": 736
},
"width": 51,
"height": 66,
@ -827,8 +827,8 @@
"id": "u",
"type": "rectangle",
"pos": {
"x": 649,
"y": 686
"x": 656,
"y": 736
},
"width": 54,
"height": 66,
@ -868,7 +868,7 @@
"id": "v",
"type": "rectangle",
"pos": {
"x": 710,
"x": 717,
"y": 294
},
"width": 54,
@ -909,7 +909,7 @@
"id": "w",
"type": "rectangle",
"pos": {
"x": 784,
"x": 791,
"y": 294
},
"width": 58,
@ -975,20 +975,20 @@
"labelPercentage": 0,
"route": [
{
"x": 416.64285714285717,
"x": 344.2857142857143,
"y": 360
},
{
"x": 416.64285714285717,
"y": 400
"x": 344.2857142857143,
"y": 450
},
{
"x": 136.5,
"y": 400
"x": 119.25,
"y": 450
},
{
"x": 136.5,
"y": 540
"x": 119.25,
"y": 590
}
],
"animated": false,
@ -1023,20 +1023,20 @@
"labelPercentage": 0,
"route": [
{
"x": 450.92857142857144,
"x": 378.57142857142856,
"y": 360
},
{
"x": 450.92857142857144,
"y": 450
"x": 378.57142857142856,
"y": 500
},
{
"x": 226.5,
"y": 450
"x": 209.25,
"y": 500
},
{
"x": 226.5,
"y": 540
"x": 209.25,
"y": 590
}
],
"animated": false,
@ -1071,20 +1071,20 @@
"labelPercentage": 0,
"route": [
{
"x": 485.2142857142858,
"x": 412.8571428571429,
"y": 360
},
{
"x": 485.2142857142858,
"y": 500
"x": 412.8571428571429,
"y": 550
},
{
"x": 373.50000000000006,
"y": 500
"x": 357,
"y": 550
},
{
"x": 373.50000000000006,
"y": 540
"x": 357,
"y": 590
}
],
"animated": false,
@ -1119,12 +1119,20 @@
"labelPercentage": 0,
"route": [
{
"x": 519.5,
"x": 447.1428571428571,
"y": 360
},
{
"x": 519.5,
"y": 540
"x": 447.1428571428571,
"y": 550
},
{
"x": 503.5,
"y": 550
},
{
"x": 503.5,
"y": 590
}
],
"animated": false,
@ -1159,20 +1167,20 @@
"labelPercentage": 0,
"route": [
{
"x": 553.7857142857143,
"x": 481.42857142857144,
"y": 360
},
{
"x": 553.7857142857143,
"x": 481.42857142857144,
"y": 500
},
{
"x": 663,
"x": 647,
"y": 500
},
{
"x": 663,
"y": 540
"x": 647,
"y": 590
}
],
"animated": false,
@ -1207,11 +1215,11 @@
"labelPercentage": 0,
"route": [
{
"x": 502.3571428571429,
"x": 430,
"y": 224
},
{
"x": 502.3571428571429,
"x": 430,
"y": 294
}
],
@ -1247,20 +1255,20 @@
"labelPercentage": 0,
"route": [
{
"x": 588.0714285714286,
"x": 515.7142857142857,
"y": 360
},
{
"x": 588.0714285714286,
"x": 515.7142857142857,
"y": 450
},
{
"x": 753,
"x": 737,
"y": 450
},
{
"x": 753,
"y": 540
"x": 737,
"y": 590
}
],
"animated": false,
@ -1300,7 +1308,15 @@
},
{
"x": 106.5,
"y": 540
"y": 400
},
{
"x": 89.25,
"y": 400
},
{
"x": 89.25,
"y": 590
}
],
"animated": false,
@ -1343,12 +1359,12 @@
"y": 400
},
{
"x": 76.5,
"x": 59.25,
"y": 400
},
{
"x": 76.5,
"y": 540
"x": 59.25,
"y": 590
}
],
"animated": false,
@ -1383,11 +1399,19 @@
"labelPercentage": 0,
"route": [
{
"x": 515.6904761904763,
"x": 465.5,
"y": 78
},
{
"x": 515.6904761904763,
"x": 465.5,
"y": 118
},
{
"x": 443.3333333333333,
"y": 118
},
{
"x": 443.3333333333333,
"y": 158
}
],
@ -1423,19 +1447,19 @@
"labelPercentage": 0,
"route": [
{
"x": 444.69047619047626,
"x": 394.5,
"y": 78
},
{
"x": 444.69047619047626,
"x": 394.5,
"y": 118
},
{
"x": 489.0238095238095,
"x": 416.6666666666667,
"y": 118
},
{
"x": 489.0238095238095,
"x": 416.6666666666667,
"y": 158
}
],
@ -1471,20 +1495,20 @@
"labelPercentage": 0,
"route": [
{
"x": 213.16666666666669,
"y": 606
"x": 195.91666666666663,
"y": 656
},
{
"x": 213.16666666666669,
"y": 646
"x": 195.91666666666663,
"y": 696
},
{
"x": 164.83333333333326,
"y": 646
"x": 171.75,
"y": 696
},
{
"x": 164.83333333333326,
"y": 686
"x": 171.75,
"y": 736
}
],
"animated": false,
@ -1519,12 +1543,20 @@
"labelPercentage": 0,
"route": [
{
"x": 239.83333333333331,
"y": 606
"x": 222.58333333333331,
"y": 656
},
{
"x": 239.83333333333331,
"y": 686
"x": 222.58333333333331,
"y": 696
},
{
"x": 246.75,
"y": 696
},
{
"x": 246.75,
"y": 736
}
],
"animated": false,
@ -1559,20 +1591,20 @@
"labelPercentage": 0,
"route": [
{
"x": 360.16666666666674,
"y": 606
"x": 343.6666666666667,
"y": 656
},
{
"x": 360.16666666666674,
"y": 646
"x": 343.6666666666667,
"y": 696
},
{
"x": 313.33333333333337,
"y": 646
"x": 320.25,
"y": 696
},
{
"x": 313.33333333333337,
"y": 686
"x": 320.25,
"y": 736
}
],
"animated": false,
@ -1607,12 +1639,20 @@
"labelPercentage": 0,
"route": [
{
"x": 386.83333333333337,
"y": 606
"x": 370.3333333333333,
"y": 656
},
{
"x": 386.83333333333337,
"y": 686
"x": 370.3333333333333,
"y": 696
},
{
"x": 393.75,
"y": 696
},
{
"x": 393.75,
"y": 736
}
],
"animated": false,
@ -1647,20 +1687,20 @@
"labelPercentage": 0,
"route": [
{
"x": 506.1666666666667,
"y": 606
"x": 490.16666666666663,
"y": 656
},
{
"x": 506.1666666666667,
"y": 646
"x": 490.16666666666663,
"y": 696
},
{
"x": 460.33333333333337,
"y": 646
"x": 467.25,
"y": 696
},
{
"x": 460.33333333333337,
"y": 686
"x": 467.25,
"y": 736
}
],
"animated": false,
@ -1695,12 +1735,20 @@
"labelPercentage": 0,
"route": [
{
"x": 532.8333333333334,
"y": 606
"x": 516.8333333333334,
"y": 656
},
{
"x": 532.8333333333334,
"y": 686
"x": 516.8333333333334,
"y": 696
},
{
"x": 539.75,
"y": 696
},
{
"x": 539.75,
"y": 736
}
],
"animated": false,
@ -1735,12 +1783,12 @@
"labelPercentage": 0,
"route": [
{
"x": 386.83333333333337,
"y": 752
"x": 393.75,
"y": 802
},
{
"x": 386.83333333333337,
"y": 822
"x": 393.75,
"y": 872
}
],
"animated": false,
@ -1775,20 +1823,20 @@
"labelPercentage": 0,
"route": [
{
"x": 649.6666666666666,
"y": 606
"x": 633.6666666666666,
"y": 656
},
{
"x": 649.6666666666666,
"y": 646
"x": 633.6666666666666,
"y": 696
},
{
"x": 603.8333333333334,
"y": 646
"x": 610.75,
"y": 696
},
{
"x": 603.8333333333334,
"y": 686
"x": 610.75,
"y": 736
}
],
"animated": false,
@ -1823,12 +1871,20 @@
"labelPercentage": 0,
"route": [
{
"x": 676.3333333333334,
"y": 606
"x": 660.3333333333334,
"y": 656
},
{
"x": 676.3333333333334,
"y": 686
"x": 660.3333333333334,
"y": 696
},
{
"x": 683.25,
"y": 696
},
{
"x": 683.25,
"y": 736
}
],
"animated": false,
@ -1863,20 +1919,20 @@
"labelPercentage": 0,
"route": [
{
"x": 737,
"x": 744.5,
"y": 360
},
{
"x": 737,
"x": 744.5,
"y": 400
},
{
"x": 783,
"x": 767,
"y": 400
},
{
"x": 783,
"y": 540
"x": 767,
"y": 590
}
],
"animated": false,
@ -1911,12 +1967,20 @@
"labelPercentage": 0,
"route": [
{
"x": 813,
"x": 820.5,
"y": 360
},
{
"x": 813,
"y": 540
"x": 820.5,
"y": 400
},
{
"x": 797,
"y": 400
},
{
"x": 797,
"y": 590
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 341 KiB

After

Width:  |  Height:  |  Size: 342 KiB

View file

@ -7,8 +7,8 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 283,
"y": 832
"x": 413,
"y": 882
},
"width": 160,
"height": 66,
@ -48,8 +48,8 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 393,
"y": 1124
"x": 553,
"y": 1174
},
"width": 120,
"height": 66,
@ -89,7 +89,7 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 319,
"x": 464,
"y": 294
},
"width": 120,
@ -130,7 +130,7 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 393,
"x": 553,
"y": 686
},
"width": 120,
@ -171,8 +171,8 @@
"id": "e",
"type": "rectangle",
"pos": {
"x": 506,
"y": 832
"x": 666,
"y": 882
},
"width": 80,
"height": 66,
@ -212,8 +212,8 @@
"id": "f",
"type": "rectangle",
"pos": {
"x": 536,
"y": 978
"x": 726,
"y": 1028
},
"width": 120,
"height": 66,
@ -253,7 +253,7 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 352,
"x": 658,
"y": 12
},
"width": 80,
@ -294,7 +294,7 @@
"id": "h",
"type": "rectangle",
"pos": {
"x": 621,
"x": 840,
"y": 158
},
"width": 53,
@ -335,7 +335,7 @@
"id": "i",
"type": "rectangle",
"pos": {
"x": 623,
"x": 842,
"y": 294
},
"width": 49,
@ -376,7 +376,7 @@
"id": "j",
"type": "rectangle",
"pos": {
"x": 607,
"x": 827,
"y": 540
},
"width": 80,
@ -417,7 +417,7 @@
"id": "k",
"type": "rectangle",
"pos": {
"x": 533,
"x": 693,
"y": 686
},
"width": 53,
@ -458,8 +458,8 @@
"id": "l",
"type": "rectangle",
"pos": {
"x": 18,
"y": 832
"x": 12,
"y": 882
},
"width": 80,
"height": 66,
@ -499,8 +499,8 @@
"id": "m",
"type": "rectangle",
"pos": {
"x": 51,
"y": 1124
"x": 75,
"y": 1174
},
"width": 120,
"height": 66,
@ -540,7 +540,7 @@
"id": "n",
"type": "rectangle",
"pos": {
"x": 12,
"x": 22,
"y": 686
},
"width": 200,
@ -581,8 +581,8 @@
"id": "o",
"type": "rectangle",
"pos": {
"x": 156,
"y": 832
"x": 196,
"y": 882
},
"width": 80,
"height": 66,
@ -622,8 +622,8 @@
"id": "p",
"type": "rectangle",
"pos": {
"x": 136,
"y": 978
"x": 173,
"y": 1028
},
"width": 120,
"height": 66,
@ -663,7 +663,7 @@
"id": "q",
"type": "rectangle",
"pos": {
"x": 85,
"x": 217,
"y": 12
},
"width": 80,
@ -704,7 +704,7 @@
"id": "r",
"type": "rectangle",
"pos": {
"x": 234,
"x": 354,
"y": 158
},
"width": 51,
@ -745,7 +745,7 @@
"id": "s",
"type": "rectangle",
"pos": {
"x": 219,
"x": 340,
"y": 294
},
"width": 80,
@ -786,7 +786,7 @@
"id": "t",
"type": "rectangle",
"pos": {
"x": 219,
"x": 315,
"y": 540
},
"width": 80,
@ -827,7 +827,7 @@
"id": "u",
"type": "rectangle",
"pos": {
"x": 257,
"x": 357,
"y": 686
},
"width": 80,
@ -893,20 +893,20 @@
"labelPercentage": 0,
"route": [
{
"x": 363.3333333333333,
"y": 898
"x": 493.33333333333326,
"y": 948
},
{
"x": 363.3333333333333,
"y": 1084
"x": 493.33333333333326,
"y": 1134
},
{
"x": 423.3333333333333,
"y": 1084
"x": 583.3333333333333,
"y": 1134
},
{
"x": 423.3333333333333,
"y": 1124
"x": 583.3333333333333,
"y": 1174
}
],
"animated": false,
@ -941,20 +941,20 @@
"labelPercentage": 0,
"route": [
{
"x": 379.66666666666663,
"x": 524.3333333333333,
"y": 360
},
{
"x": 379.66666666666663,
"y": 792
"x": 524.3333333333333,
"y": 500
},
{
"x": 379.3333333333333,
"y": 792
"x": 509.33333333333326,
"y": 500
},
{
"x": 379.3333333333333,
"y": 832
"x": 509.33333333333326,
"y": 882
}
],
"animated": false,
@ -989,20 +989,20 @@
"labelPercentage": 0,
"route": [
{
"x": 423.3333333333333,
"x": 583.3333333333333,
"y": 752
},
{
"x": 423.3333333333333,
"x": 583.3333333333333,
"y": 792
},
{
"x": 411.3333333333333,
"x": 541.3333333333333,
"y": 792
},
{
"x": 411.3333333333333,
"y": 832
"x": 541.3333333333333,
"y": 882
}
],
"animated": false,
@ -1037,12 +1037,12 @@
"labelPercentage": 0,
"route": [
{
"x": 453.3333333333333,
"x": 613.3333333333333,
"y": 752
},
{
"x": 453.3333333333333,
"y": 1124
"x": 613.3333333333333,
"y": 1174
}
],
"animated": false,
@ -1077,20 +1077,20 @@
"labelPercentage": 0,
"route": [
{
"x": 483.3333333333333,
"x": 643.3333333333333,
"y": 752
},
{
"x": 483.3333333333333,
"x": 643.3333333333333,
"y": 792
},
{
"x": 533.1666666666666,
"x": 693.1666666666666,
"y": 792
},
{
"x": 533.1666666666666,
"y": 832
"x": 693.1666666666666,
"y": 882
}
],
"animated": false,
@ -1125,20 +1125,20 @@
"labelPercentage": 0,
"route": [
{
"x": 546.5,
"y": 898
"x": 706.5,
"y": 948
},
{
"x": 546.5,
"y": 938
"x": 706.5,
"y": 988
},
{
"x": 566.5,
"y": 938
"x": 756.4999999999999,
"y": 988
},
{
"x": 566.5,
"y": 978
"x": 756.4999999999999,
"y": 1028
}
],
"animated": false,
@ -1173,20 +1173,20 @@
"labelPercentage": 0,
"route": [
{
"x": 596.5,
"y": 1044
"x": 786.4999999999999,
"y": 1094
},
{
"x": 596.5,
"y": 1084
"x": 786.4999999999999,
"y": 1134
},
{
"x": 483.3333333333333,
"y": 1084
"x": 643.3333333333333,
"y": 1134
},
{
"x": 483.3333333333333,
"y": 1124
"x": 643.3333333333333,
"y": 1174
}
],
"animated": false,
@ -1221,20 +1221,20 @@
"labelPercentage": 0,
"route": [
{
"x": 409.66666666666663,
"x": 554.3333333333333,
"y": 360
},
{
"x": 409.66666666666663,
"x": 554.3333333333333,
"y": 400
},
{
"x": 596.5,
"x": 786.4999999999999,
"y": 400
},
{
"x": 596.5,
"y": 978
"x": 786.4999999999999,
"y": 1028
}
],
"animated": false,
@ -1269,11 +1269,19 @@
"labelPercentage": 0,
"route": [
{
"x": 379.66666666666663,
"x": 685.0833333333333,
"y": 78
},
{
"x": 379.66666666666663,
"x": 685.0833333333333,
"y": 118
},
{
"x": 524.3333333333333,
"y": 118
},
{
"x": 524.3333333333333,
"y": 294
}
],
@ -1309,19 +1317,19 @@
"labelPercentage": 0,
"route": [
{
"x": 406.33333333333326,
"x": 711.75,
"y": 78
},
{
"x": 406.33333333333326,
"x": 711.75,
"y": 118
},
{
"x": 647.5,
"x": 867.4999999999999,
"y": 118
},
{
"x": 647.5,
"x": 867.4999999999999,
"y": 158
}
],
@ -1357,11 +1365,11 @@
"labelPercentage": 0,
"route": [
{
"x": 647.5,
"x": 867.4999999999999,
"y": 224
},
{
"x": 647.5,
"x": 867.4999999999999,
"y": 294
}
],
@ -1397,11 +1405,11 @@
"labelPercentage": 0,
"route": [
{
"x": 647.5,
"x": 867.4999999999999,
"y": 360
},
{
"x": 647.5,
"x": 867.4999999999999,
"y": 540
}
],
@ -1437,19 +1445,19 @@
"labelPercentage": 0,
"route": [
{
"x": 634.1666666666666,
"x": 854.1666666666666,
"y": 606
},
{
"x": 634.1666666666666,
"x": 854.1666666666666,
"y": 646
},
{
"x": 559.8333333333333,
"x": 719.8333333333333,
"y": 646
},
{
"x": 559.8333333333333,
"x": 719.8333333333333,
"y": 686
}
],
@ -1485,12 +1493,12 @@
"labelPercentage": 0,
"route": [
{
"x": 559.8333333333333,
"x": 719.8333333333333,
"y": 752
},
{
"x": 559.8333333333333,
"y": 832
"x": 719.8333333333333,
"y": 882
}
],
"animated": false,
@ -1525,20 +1533,20 @@
"labelPercentage": 0,
"route": [
{
"x": 660.8333333333334,
"x": 880.8333333333333,
"y": 606
},
{
"x": 660.8333333333334,
"y": 938
"x": 880.8333333333333,
"y": 988
},
{
"x": 626.5,
"y": 938
"x": 816.4999999999999,
"y": 988
},
{
"x": 626.5,
"y": 978
"x": 816.4999999999999,
"y": 1028
}
],
"animated": false,
@ -1573,20 +1581,20 @@
"labelPercentage": 0,
"route": [
{
"x": 58.66666666666666,
"y": 898
"x": 52,
"y": 948
},
{
"x": 58.66666666666666,
"y": 1084
"x": 52,
"y": 1134
},
{
"x": 81.99999999999999,
"y": 1084
"x": 105.33333333333326,
"y": 1134
},
{
"x": 81.99999999999999,
"y": 1124
"x": 105.33333333333326,
"y": 1174
}
],
"animated": false,
@ -1621,12 +1629,20 @@
"labelPercentage": 0,
"route": [
{
"x": 45.33333333333333,
"x": 55.33333333333337,
"y": 752
},
{
"x": 45.33333333333333,
"y": 832
"x": 55.33333333333337,
"y": 792
},
{
"x": 38.66666666666663,
"y": 792
},
{
"x": 38.66666666666663,
"y": 882
}
],
"animated": false,
@ -1661,20 +1677,20 @@
"labelPercentage": 0,
"route": [
{
"x": 78.66666666666666,
"x": 88.66666666666663,
"y": 752
},
{
"x": 78.66666666666666,
"y": 792
"x": 88.66666666666663,
"y": 842
},
{
"x": 72,
"y": 792
"x": 65.33333333333337,
"y": 842
},
{
"x": 72,
"y": 832
"x": 65.33333333333337,
"y": 882
}
],
"animated": false,
@ -1709,12 +1725,28 @@
"labelPercentage": 0,
"route": [
{
"x": 111.99999999999999,
"x": 122,
"y": 752
},
{
"x": 111.99999999999999,
"y": 1124
"x": 122,
"y": 842
},
{
"x": 132,
"y": 842
},
{
"x": 132,
"y": 1134
},
{
"x": 135.33333333333326,
"y": 1134
},
{
"x": 135.33333333333326,
"y": 1174
}
],
"animated": false,
@ -1749,20 +1781,20 @@
"labelPercentage": 0,
"route": [
{
"x": 178.66666666666663,
"x": 188.66666666666663,
"y": 752
},
{
"x": 178.66666666666663,
"x": 188.66666666666663,
"y": 792
},
{
"x": 182.99999999999997,
"x": 222.9999999999999,
"y": 792
},
{
"x": 182.99999999999997,
"y": 832
"x": 222.9999999999999,
"y": 882
}
],
"animated": false,
@ -1797,12 +1829,20 @@
"labelPercentage": 0,
"route": [
{
"x": 196.33333333333331,
"y": 898
"x": 236.33333333333326,
"y": 948
},
{
"x": 196.33333333333331,
"y": 978
"x": 236.33333333333326,
"y": 988
},
{
"x": 233,
"y": 988
},
{
"x": 233,
"y": 1028
}
],
"animated": false,
@ -1837,20 +1877,20 @@
"labelPercentage": 0,
"route": [
{
"x": 196.33333333333331,
"y": 1044
"x": 233,
"y": 1094
},
{
"x": 196.33333333333331,
"y": 1084
"x": 233,
"y": 1134
},
{
"x": 142,
"y": 1084
"x": 165.33333333333326,
"y": 1134
},
{
"x": 142,
"y": 1124
"x": 165.33333333333326,
"y": 1174
}
],
"animated": false,
@ -1885,20 +1925,28 @@
"labelPercentage": 0,
"route": [
{
"x": 145.33333333333331,
"x": 155.33333333333326,
"y": 752
},
{
"x": 145.33333333333331,
"y": 938
"x": 155.33333333333326,
"y": 792
},
{
"x": 166.33333333333331,
"y": 938
"x": 150.83333333333326,
"y": 792
},
{
"x": 166.33333333333331,
"y": 978
"x": 150.83333333333326,
"y": 988
},
{
"x": 203,
"y": 988
},
{
"x": 203,
"y": 1028
}
],
"animated": false,
@ -1933,11 +1981,19 @@
"labelPercentage": 0,
"route": [
{
"x": 112,
"x": 243.9999999999999,
"y": 78
},
{
"x": 112,
"x": 243.9999999999999,
"y": 118
},
{
"x": 122,
"y": 118
},
{
"x": 122,
"y": 686
}
],
@ -1973,19 +2029,19 @@
"labelPercentage": 0,
"route": [
{
"x": 138.66666666666666,
"x": 270.66666666666663,
"y": 78
},
{
"x": 138.66666666666666,
"x": 270.66666666666663,
"y": 118
},
{
"x": 259.66666666666663,
"x": 380,
"y": 118
},
{
"x": 259.66666666666663,
"x": 380,
"y": 158
}
],
@ -2021,11 +2077,11 @@
"labelPercentage": 0,
"route": [
{
"x": 259.66666666666663,
"x": 380,
"y": 224
},
{
"x": 259.66666666666663,
"x": 380,
"y": 294
}
],
@ -2061,11 +2117,19 @@
"labelPercentage": 0,
"route": [
{
"x": 246.33333333333331,
"x": 366.6666666666667,
"y": 360
},
{
"x": 246.33333333333331,
"x": 366.6666666666667,
"y": 400
},
{
"x": 341.8333333333333,
"y": 400
},
{
"x": 341.8333333333333,
"y": 540
}
],
@ -2101,19 +2165,19 @@
"labelPercentage": 0,
"route": [
{
"x": 273,
"x": 368.49999999999994,
"y": 606
},
{
"x": 273,
"x": 368.49999999999994,
"y": 646
},
{
"x": 297.3333333333333,
"x": 397.33333333333326,
"y": 646
},
{
"x": 297.3333333333333,
"x": 397.33333333333326,
"y": 686
}
],
@ -2149,20 +2213,20 @@
"labelPercentage": 0,
"route": [
{
"x": 284,
"x": 383.99999999999994,
"y": 752
},
{
"x": 284,
"x": 383.99999999999994,
"y": 792
},
{
"x": 209.66666666666666,
"x": 249.66666666666663,
"y": 792
},
{
"x": 209.66666666666666,
"y": 832
"x": 249.66666666666663,
"y": 882
}
],
"animated": false,
@ -2197,20 +2261,28 @@
"labelPercentage": 0,
"route": [
{
"x": 246.33333333333331,
"x": 341.8333333333333,
"y": 606
},
{
"x": 246.33333333333331,
"y": 938
"x": 341.8333333333333,
"y": 646
},
{
"x": 226.33333333333331,
"y": 938
"x": 316.33333333333326,
"y": 646
},
{
"x": 226.33333333333331,
"y": 978
"x": 316.33333333333326,
"y": 988
},
{
"x": 263,
"y": 988
},
{
"x": 263,
"y": 1028
}
],
"animated": false,
@ -2245,19 +2317,19 @@
"labelPercentage": 0,
"route": [
{
"x": 349.66666666666663,
"x": 494.3333333333333,
"y": 360
},
{
"x": 349.66666666666663,
"x": 494.3333333333333,
"y": 450
},
{
"x": 273,
"x": 368.49999999999994,
"y": 450
},
{
"x": 273,
"x": 368.49999999999994,
"y": 540
}
],
@ -2293,28 +2365,20 @@
"labelPercentage": 0,
"route": [
{
"x": 273,
"x": 393.3333333333333,
"y": 360
},
{
"x": 273,
"y": 400
},
{
"x": 310.16666666666663,
"y": 400
},
{
"x": 310.16666666666663,
"x": 393.3333333333333,
"y": 500
},
{
"x": 347.3333333333333,
"x": 477.33333333333326,
"y": 500
},
{
"x": 347.3333333333333,
"y": 832
"x": 477.33333333333326,
"y": 882
}
],
"animated": false,
@ -2349,20 +2413,20 @@
"labelPercentage": 0,
"route": [
{
"x": 310.66666666666663,
"x": 410.6666666666666,
"y": 752
},
{
"x": 310.66666666666663,
"x": 410.6666666666666,
"y": 792
},
{
"x": 315.3333333333333,
"x": 445.33333333333326,
"y": 792
},
{
"x": 315.3333333333333,
"y": 832
"x": 445.33333333333326,
"y": 882
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 344 KiB

After

Width:  |  Height:  |  Size: 346 KiB

View file

@ -89,8 +89,8 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 39,
"y": 731
"x": 82,
"y": 781
},
"width": 120,
"height": 66,
@ -130,7 +130,7 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 72,
"x": 121,
"y": 585
},
"width": 54,
@ -171,7 +171,7 @@
"id": "e",
"type": "rectangle",
"pos": {
"x": 145,
"x": 194,
"y": 449
},
"width": 53,
@ -212,7 +212,7 @@
"id": "f",
"type": "rectangle",
"pos": {
"x": 74,
"x": 123,
"y": 449
},
"width": 51,
@ -253,7 +253,7 @@
"id": "g",
"type": "rectangle",
"pos": {
"x": 72,
"x": 121,
"y": 313
},
"width": 54,
@ -368,20 +368,20 @@
"y": 223
},
{
"x": 61.5,
"x": 78.25,
"y": 223
},
{
"x": 61.5,
"x": 78.25,
"y": 691
},
{
"x": 69.5,
"x": 112.5,
"y": 691
},
{
"x": 69.5,
"y": 731
"x": 112.5,
"y": 781
}
],
"animated": false,
@ -416,12 +416,20 @@
"labelPercentage": 0,
"route": [
{
"x": 99.5,
"x": 148.75,
"y": 651
},
{
"x": 99.5,
"y": 731
"x": 148.75,
"y": 691
},
{
"x": 142.5,
"y": 691
},
{
"x": 142.5,
"y": 781
}
],
"animated": false,
@ -456,20 +464,20 @@
"labelPercentage": 0,
"route": [
{
"x": 171.5,
"x": 220.75,
"y": 515
},
{
"x": 171.5,
"y": 691
"x": 220.75,
"y": 741
},
{
"x": 129.5,
"y": 691
"x": 172.5,
"y": 741
},
{
"x": 129.5,
"y": 731
"x": 172.5,
"y": 781
}
],
"animated": false,
@ -504,11 +512,11 @@
"labelPercentage": 0,
"route": [
{
"x": 99.5,
"x": 148.75,
"y": 515
},
{
"x": 99.5,
"x": 148.75,
"y": 585
}
],
@ -549,6 +557,14 @@
},
{
"x": 171.5,
"y": 223
},
{
"x": 220.75,
"y": 223
},
{
"x": 220.75,
"y": 449
}
],
@ -584,11 +600,11 @@
"labelPercentage": 0,
"route": [
{
"x": 99.5,
"x": 148.75,
"y": 379
},
{
"x": 99.5,
"x": 148.75,
"y": 449
}
],
@ -632,11 +648,11 @@
"y": 273
},
{
"x": 99.5,
"x": 148.75,
"y": 273
},
{
"x": 99.5,
"x": 148.75,
"y": 313
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 657 KiB

After

Width:  |  Height:  |  Size: 657 KiB

View file

@ -89,8 +89,8 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 65,
"y": 313
"x": 22,
"y": 263
},
"width": 53,
"height": 66,
@ -130,8 +130,8 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 138,
"y": 313
"x": 95,
"y": 263
},
"width": 53,
"height": 66,
@ -171,8 +171,8 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 211,
"y": 313
"x": 168,
"y": 263
},
"width": 53,
"height": 66,
@ -212,8 +212,8 @@
"id": "bottom",
"type": "rectangle",
"pos": {
"x": 55,
"y": 464
"x": 12,
"y": 414
},
"width": 220,
"height": 166,
@ -253,8 +253,8 @@
"id": "bottom.end",
"type": "rectangle",
"pos": {
"x": 105,
"y": 514
"x": 62,
"y": 464
},
"width": 120,
"height": 66,
@ -324,7 +324,15 @@
},
{
"x": 92,
"y": 313
"y": 223
},
{
"x": 49,
"y": 223
},
{
"x": 49,
"y": 263
}
],
"animated": false,
@ -364,15 +372,7 @@
},
{
"x": 122,
"y": 273
},
{
"x": 165,
"y": 273
},
{
"x": 165,
"y": 313
"y": 263
}
],
"animated": false,
@ -415,12 +415,12 @@
"y": 223
},
{
"x": 238,
"x": 195,
"y": 223
},
{
"x": 238,
"y": 313
"x": 195,
"y": 263
}
],
"animated": false,
@ -455,20 +455,20 @@
"labelPercentage": 0,
"route": [
{
"x": 92,
"y": 379
"x": 49,
"y": 329
},
{
"x": 49,
"y": 369
},
{
"x": 92,
"y": 419
"y": 369
},
{
"x": 135,
"y": 419
},
{
"x": 135,
"y": 514
"x": 92,
"y": 464
}
],
"animated": false,
@ -503,12 +503,12 @@
"labelPercentage": 0,
"route": [
{
"x": 165,
"y": 379
"x": 122,
"y": 329
},
{
"x": 165,
"y": 514
"x": 122,
"y": 464
}
],
"animated": false,
@ -543,20 +543,20 @@
"labelPercentage": 0,
"route": [
{
"x": 238,
"y": 379
},
{
"x": 238,
"y": 419
"x": 195,
"y": 329
},
{
"x": 195,
"y": 419
"y": 369
},
{
"x": 195,
"y": 514
"x": 152,
"y": 369
},
{
"x": 152,
"y": 464
}
],
"animated": false,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 656 KiB

After

Width:  |  Height:  |  Size: 656 KiB

View file

@ -7,7 +7,7 @@
"id": "root",
"type": "image",
"pos": {
"x": 204,
"x": 484,
"y": 12
},
"width": 128,
@ -64,7 +64,7 @@
"y": 241
},
"width": 1072,
"height": 1124,
"height": 1114,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -101,7 +101,7 @@
"id": "container.root",
"type": "image",
"pos": {
"x": 204,
"x": 484,
"y": 291
},
"width": 128,
@ -158,7 +158,7 @@
"y": 621
},
"width": 476,
"height": 694,
"height": 684,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -195,7 +195,7 @@
"id": "container.left2.root",
"type": "image",
"pos": {
"x": 183,
"x": 236,
"y": 671
},
"width": 128,
@ -249,7 +249,7 @@
"type": "rectangle",
"pos": {
"x": 112,
"y": 1011
"y": 1001
},
"width": 376,
"height": 254,
@ -290,7 +290,7 @@
"type": "image",
"pos": {
"x": 162,
"y": 1061
"y": 1051
},
"width": 128,
"height": 128,
@ -343,7 +343,7 @@
"type": "image",
"pos": {
"x": 310,
"y": 1061
"y": 1051
},
"width": 128,
"height": 128,
@ -399,7 +399,7 @@
"y": 621
},
"width": 476,
"height": 694,
"height": 684,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -436,7 +436,7 @@
"id": "container.right.root",
"type": "image",
"pos": {
"x": 679,
"x": 732,
"y": 671
},
"width": 128,
@ -490,7 +490,7 @@
"type": "rectangle",
"pos": {
"x": 608,
"y": 1011
"y": 1001
},
"width": 376,
"height": 254,
@ -531,7 +531,7 @@
"type": "image",
"pos": {
"x": 658,
"y": 1061
"y": 1051
},
"width": 128,
"height": 128,
@ -584,7 +584,7 @@
"type": "image",
"pos": {
"x": 806,
"y": 1061
"y": 1051
},
"width": 128,
"height": 128,
@ -661,11 +661,11 @@
"labelPercentage": 0,
"route": [
{
"x": 268.6666666666667,
"x": 548,
"y": 166
},
{
"x": 268.6666666666667,
"x": 548,
"y": 291
}
],
@ -701,12 +701,20 @@
"labelPercentage": 0,
"route": [
{
"x": 226,
"x": 278.6666666666667,
"y": 825
},
{
"x": 278.6666666666667,
"y": 865
},
{
"x": 226,
"y": 1061
"y": 865
},
{
"x": 226,
"y": 1051
}
],
"animated": false,
@ -741,28 +749,20 @@
"labelPercentage": 0,
"route": [
{
"x": 268.6666666666667,
"x": 321.33333333333337,
"y": 825
},
{
"x": 268.6666666666667,
"x": 321.33333333333337,
"y": 865
},
{
"x": 322,
"x": 374,
"y": 865
},
{
"x": 322,
"y": 966
},
{
"x": 374,
"y": 966
},
{
"x": 374,
"y": 1061
"y": 1051
}
],
"animated": false,
@ -797,12 +797,20 @@
"labelPercentage": 0,
"route": [
{
"x": 722,
"x": 774.6666666666667,
"y": 825
},
{
"x": 774.6666666666667,
"y": 865
},
{
"x": 722,
"y": 1061
"y": 865
},
{
"x": 722,
"y": 1051
}
],
"animated": false,
@ -837,28 +845,20 @@
"labelPercentage": 0,
"route": [
{
"x": 764.6666666666667,
"x": 817.3333333333334,
"y": 825
},
{
"x": 764.6666666666667,
"x": 817.3333333333334,
"y": 865
},
{
"x": 818,
"x": 870,
"y": 865
},
{
"x": 818,
"y": 966
},
{
"x": 870,
"y": 966
},
{
"x": 870,
"y": 1061
"y": 1051
}
],
"animated": false,
@ -893,11 +893,19 @@
"labelPercentage": 0,
"route": [
{
"x": 247.33333333333334,
"x": 526.6666666666667,
"y": 445
},
{
"x": 247.33333333333334,
"x": 526.6666666666667,
"y": 485
},
{
"x": 300,
"y": 485
},
{
"x": 300,
"y": 671
}
],
@ -933,19 +941,19 @@
"labelPercentage": 0,
"route": [
{
"x": 290,
"x": 569.3333333333334,
"y": 445
},
{
"x": 290,
"x": 569.3333333333334,
"y": 485
},
{
"x": 743.3333333333334,
"x": 796,
"y": 485
},
{
"x": 743.3333333333334,
"x": 796,
"y": 671
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 804 KiB

After

Width:  |  Height:  |  Size: 804 KiB

View file

@ -48,7 +48,7 @@
"id": "y",
"type": "rectangle",
"pos": {
"x": 105,
"x": 194,
"y": 158
},
"width": 80,
@ -256,6 +256,14 @@
},
{
"x": 132,
"y": 118
},
{
"x": 221.16666666666663,
"y": 118
},
{
"x": 221.16666666666663,
"y": 158
}
],
@ -299,11 +307,11 @@
"y": 118
},
{
"x": 158.66666666666666,
"x": 247.83333333333331,
"y": 118
},
{
"x": 158.66666666666666,
"x": 247.83333333333331,
"y": 158
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 474 KiB

After

Width:  |  Height:  |  Size: 474 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 829 KiB

After

Width:  |  Height:  |  Size: 830 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 135,
"x": 250,
"y": 12
},
"width": 53,
@ -48,7 +48,7 @@
"id": "c",
"type": "rectangle",
"pos": {
"x": 208,
"x": 323,
"y": 12
},
"width": 53,
@ -89,7 +89,7 @@
"id": "b",
"type": "rectangle",
"pos": {
"x": 62,
"x": 177,
"y": 12
},
"width": 53,
@ -130,11 +130,11 @@
"id": "l1",
"type": "rectangle",
"pos": {
"x": 12,
"x": 127,
"y": 153
},
"width": 299,
"height": 246,
"height": 296,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -171,7 +171,7 @@
"id": "l1.b",
"type": "rectangle",
"pos": {
"x": 62,
"x": 177,
"y": 203
},
"width": 53,
@ -212,7 +212,7 @@
"id": "l1.a",
"type": "rectangle",
"pos": {
"x": 135,
"x": 250,
"y": 203
},
"width": 53,
@ -253,7 +253,7 @@
"id": "l1.c",
"type": "rectangle",
"pos": {
"x": 208,
"x": 323,
"y": 203
},
"width": 53,
@ -294,7 +294,7 @@
"id": "l2c1",
"type": "rectangle",
"pos": {
"x": 85,
"x": 12,
"y": 539
},
"width": 153,
@ -335,7 +335,7 @@
"id": "l2c1.a",
"type": "rectangle",
"pos": {
"x": 135,
"x": 62,
"y": 589
},
"width": 53,
@ -376,7 +376,7 @@
"id": "l2c3",
"type": "rectangle",
"pos": {
"x": 431,
"x": 408,
"y": 539
},
"width": 153,
@ -417,7 +417,7 @@
"id": "l2c3.c",
"type": "rectangle",
"pos": {
"x": 481,
"x": 458,
"y": 589
},
"width": 53,
@ -458,7 +458,7 @@
"id": "l2c2",
"type": "rectangle",
"pos": {
"x": 258,
"x": 185,
"y": 539
},
"width": 153,
@ -499,7 +499,7 @@
"id": "l2c2.b",
"type": "rectangle",
"pos": {
"x": 308,
"x": 235,
"y": 589
},
"width": 53,
@ -540,7 +540,7 @@
"id": "l3c1",
"type": "rectangle",
"pos": {
"x": 85,
"x": 62,
"y": 795
},
"width": 226,
@ -581,7 +581,7 @@
"id": "l3c1.a",
"type": "rectangle",
"pos": {
"x": 135,
"x": 112,
"y": 845
},
"width": 53,
@ -622,7 +622,7 @@
"id": "l3c1.b",
"type": "rectangle",
"pos": {
"x": 208,
"x": 185,
"y": 845
},
"width": 53,
@ -663,7 +663,7 @@
"id": "l3c2",
"type": "rectangle",
"pos": {
"x": 431,
"x": 408,
"y": 795
},
"width": 153,
@ -704,7 +704,7 @@
"id": "l3c2.c",
"type": "rectangle",
"pos": {
"x": 481,
"x": 458,
"y": 845
},
"width": 53,
@ -745,7 +745,7 @@
"id": "l4",
"type": "rectangle",
"pos": {
"x": 35,
"x": 12,
"y": 1051
},
"width": 599,
@ -786,7 +786,7 @@
"id": "l4.c1",
"type": "rectangle",
"pos": {
"x": 85,
"x": 62,
"y": 1106
},
"width": 153,
@ -827,7 +827,7 @@
"id": "l4.c1.a",
"type": "rectangle",
"pos": {
"x": 135,
"x": 112,
"y": 1156
},
"width": 53,
@ -868,7 +868,7 @@
"id": "l4.c2",
"type": "rectangle",
"pos": {
"x": 258,
"x": 235,
"y": 1106
},
"width": 153,
@ -909,7 +909,7 @@
"id": "l4.c2.b",
"type": "rectangle",
"pos": {
"x": 308,
"x": 285,
"y": 1156
},
"width": 53,
@ -950,7 +950,7 @@
"id": "l4.c3",
"type": "rectangle",
"pos": {
"x": 431,
"x": 408,
"y": 1106
},
"width": 153,
@ -991,7 +991,7 @@
"id": "l4.c3.c",
"type": "rectangle",
"pos": {
"x": 481,
"x": 458,
"y": 1156
},
"width": 53,
@ -1057,11 +1057,11 @@
"labelPercentage": 0,
"route": [
{
"x": 88.5,
"x": 204.25,
"y": 78
},
{
"x": 88.5,
"x": 204.25,
"y": 203
}
],
@ -1097,11 +1097,11 @@
"labelPercentage": 0,
"route": [
{
"x": 161.5,
"x": 277.25,
"y": 78
},
{
"x": 161.5,
"x": 277.25,
"y": 203
}
],
@ -1137,11 +1137,11 @@
"labelPercentage": 0,
"route": [
{
"x": 234.5,
"x": 350.25,
"y": 78
},
{
"x": 234.5,
"x": 350.25,
"y": 203
}
],
@ -1177,11 +1177,27 @@
"labelPercentage": 0,
"route": [
{
"x": 161.5,
"x": 277.25,
"y": 269
},
{
"x": 161.5,
"x": 277.25,
"y": 309
},
{
"x": 235.75,
"y": 309
},
{
"x": 235.75,
"y": 494
},
{
"x": 88.5,
"y": 494
},
{
"x": 88.5,
"y": 589
}
],
@ -1217,19 +1233,19 @@
"labelPercentage": 0,
"route": [
{
"x": 234.5,
"x": 350.25,
"y": 269
},
{
"x": 234.5,
"y": 444
"x": 350.25,
"y": 494
},
{
"x": 507.5,
"y": 444
"x": 484.5,
"y": 494
},
{
"x": 507.5,
"x": 484.5,
"y": 589
}
],
@ -1265,27 +1281,27 @@
"labelPercentage": 0,
"route": [
{
"x": 88.5,
"x": 204.25,
"y": 269
},
{
"x": 88.5,
"y": 309
"x": 204.25,
"y": 359
},
{
"x": 171.5,
"y": 309
"x": 245.75,
"y": 359
},
{
"x": 171.5,
"x": 245.75,
"y": 494
},
{
"x": 334.5,
"x": 261.5,
"y": 494
},
{
"x": 334.5,
"x": 261.5,
"y": 589
}
],
@ -1321,11 +1337,19 @@
"labelPercentage": 0,
"route": [
{
"x": 161.5,
"x": 88.5,
"y": 655
},
{
"x": 161.5,
"x": 88.5,
"y": 750
},
{
"x": 138.5,
"y": 750
},
{
"x": 138.5,
"y": 845
}
],
@ -1361,19 +1385,19 @@
"labelPercentage": 0,
"route": [
{
"x": 334.5,
"x": 261.5,
"y": 655
},
{
"x": 334.5,
"x": 261.5,
"y": 750
},
{
"x": 234.5,
"x": 211.5,
"y": 750
},
{
"x": 234.5,
"x": 211.5,
"y": 845
}
],
@ -1409,11 +1433,11 @@
"labelPercentage": 0,
"route": [
{
"x": 507.5,
"x": 484.5,
"y": 655
},
{
"x": 507.5,
"x": 484.5,
"y": 845
}
],
@ -1449,11 +1473,11 @@
"labelPercentage": 0,
"route": [
{
"x": 161.5,
"x": 138.5,
"y": 911
},
{
"x": 161.5,
"x": 138.5,
"y": 1156
}
],
@ -1489,19 +1513,19 @@
"labelPercentage": 0,
"route": [
{
"x": 234.5,
"x": 211.5,
"y": 911
},
{
"x": 234.5,
"x": 211.5,
"y": 1006
},
{
"x": 334.5,
"x": 311.5,
"y": 1006
},
{
"x": 334.5,
"x": 311.5,
"y": 1156
}
],
@ -1537,11 +1561,11 @@
"labelPercentage": 0,
"route": [
{
"x": 507.5,
"x": 484.5,
"y": 911
},
{
"x": 507.5,
"x": 484.5,
"y": 1156
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 663 KiB

After

Width:  |  Height:  |  Size: 663 KiB

View file

@ -7,7 +7,7 @@
"id": "bear",
"type": "text",
"pos": {
"x": 52,
"x": 116,
"y": 133
},
"width": 80,
@ -157,6 +157,14 @@
},
{
"x": 79.5,
"y": 93
},
{
"x": 143.41666666666666,
"y": 93
},
{
"x": 143.41666666666666,
"y": 133
}
],
@ -200,11 +208,11 @@
"y": 93
},
{
"x": 106.16666666666666,
"x": 170.08333333333334,
"y": 93
},
{
"x": 106.16666666666666,
"x": 170.08333333333334,
"y": 133
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 808 KiB

After

Width:  |  Height:  |  Size: 808 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 373 KiB

After

Width:  |  Height:  |  Size: 376 KiB

View file

@ -48,7 +48,7 @@
"id": "b",
"type": "cloud",
"pos": {
"x": 70,
"x": 39,
"y": 213
},
"width": 180,
@ -89,7 +89,7 @@
"id": "b.c",
"type": "rectangle",
"pos": {
"x": 120,
"x": 89,
"y": 263
},
"width": 80,
@ -130,7 +130,7 @@
"id": "d",
"type": "rectangle",
"pos": {
"x": 133,
"x": 102,
"y": 454
},
"width": 54,
@ -327,11 +327,11 @@
"y": 168
},
{
"x": 146.83333333333331,
"x": 115.8333333333333,
"y": 168
},
{
"x": 146.83333333333331,
"x": 115.8333333333333,
"y": 263
}
],
@ -367,11 +367,11 @@
"labelPercentage": 0,
"route": [
{
"x": 160.16666666666666,
"x": 129.16666666666663,
"y": 329
},
{
"x": 160.16666666666669,
"x": 129.16666666666663,
"y": 454
}
],
@ -415,11 +415,11 @@
"y": 118
},
{
"x": 173.5,
"x": 142.49999999999997,
"y": 118
},
{
"x": 173.5,
"x": 142.49999999999997,
"y": 263
}
],
@ -459,7 +459,15 @@
"y": 78
},
{
"x": 184,
"x": 183.5,
"y": 118
},
{
"x": 152.49999999999997,
"y": 118
},
{
"x": 153,
"y": 214
}
],
@ -500,14 +508,14 @@
},
{
"x": 256,
"y": 118
"y": 168
},
{
"x": 193.5,
"y": 118
"x": 162.49999999999997,
"y": 168
},
{
"x": 194,
"x": 163,
"y": 219
}
],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 657 KiB

After

Width:  |  Height:  |  Size: 657 KiB

View file

@ -7,7 +7,7 @@
"id": "a",
"type": "rectangle",
"pos": {
"x": 93,
"x": 267,
"y": 12
},
"width": 428,
@ -154,9 +154,17 @@
"labelPercentage": 0,
"route": [
{
"x": 236,
"x": 409.66666666666674,
"y": 110
},
{
"x": 409.66666666666674,
"y": 150
},
{
"x": 236,
"y": 150
},
{
"x": 236,
"y": 190
@ -194,11 +202,11 @@
"labelPercentage": 0,
"route": [
{
"x": 378.66666666666663,
"x": 552.3333333333334,
"y": 110
},
{
"x": 378.66666666666663,
"x": 552.3333333333334,
"y": 150
},
{

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 665 KiB

After

Width:  |  Height:  |  Size: 666 KiB