Merge branch 'master' into actors-distance

This commit is contained in:
Júlio César Batista 2022-12-05 11:11:26 -08:00
commit fdf6699eb8
No known key found for this signature in database
GPG key ID: 10C4B861BF314878
111 changed files with 1802 additions and 1625 deletions

View file

@ -35,6 +35,8 @@
So you can run `go install oss.terrastruct.com/d2@latest` to install from source So you can run `go install oss.terrastruct.com/d2@latest` to install from source
now. now.
[#290](https://github.com/terrastruct/d2/pull/290) [#290](https://github.com/terrastruct/d2/pull/290)
- Container default font styling is no longer bold. Everything used to look too bold.
[#358](https://github.com/terrastruct/d2/pull/358)
- `BROWSER=0` now works to disable opening a browser on `--watch`. - `BROWSER=0` now works to disable opening a browser on `--watch`.
[#311](https://github.com/terrastruct/d2/pull/311) [#311](https://github.com/terrastruct/d2/pull/311)

View file

@ -95,6 +95,8 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
shape.Height = int(obj.Height) shape.Height = int(obj.Height)
text := obj.Text() text := obj.Text()
shape.Bold = text.IsBold
shape.Italic = text.IsItalic
shape.FontSize = text.FontSize shape.FontSize = text.FontSize
applyStyles(shape, obj) applyStyles(shape, obj)

View file

@ -336,7 +336,7 @@ func (obj *Object) GetFill(theme *d2themes.Theme) string {
} else if obj.IsSequenceDiagramNote() { } else if obj.IsSequenceDiagramNote() {
return theme.Colors.Neutrals.N7 return theme.Colors.Neutrals.N7
} else if obj.IsSequenceDiagramGroup() { } else if obj.IsSequenceDiagramGroup() {
sd := obj.outerSequenceDiagram() sd := obj.OuterSequenceDiagram()
// Alternate // Alternate
if (level-int(sd.Level()))%2 == 0 { if (level-int(sd.Level()))%2 == 0 {
return theme.Colors.Neutrals.N7 return theme.Colors.Neutrals.N7
@ -428,10 +428,14 @@ func (obj *Object) AbsIDArray() []string {
} }
func (obj *Object) Text() *d2target.MText { func (obj *Object) Text() *d2target.MText {
isBold := !obj.IsContainer()
fontSize := d2fonts.FONT_SIZE_M fontSize := d2fonts.FONT_SIZE_M
if obj.IsContainer() && !obj.Parent.IsSequenceDiagram() { if obj.OuterSequenceDiagram() == nil {
// sequence diagram children (aka, actors) shouldn't have the container font size if obj.IsContainer() {
fontSize = obj.Level().LabelSize() fontSize = obj.Level().LabelSize()
}
} else {
isBold = false
} }
if obj.Attributes.Style.FontSize != nil { if obj.Attributes.Style.FontSize != nil {
fontSize, _ = strconv.Atoi(obj.Attributes.Style.FontSize.Value) fontSize, _ = strconv.Atoi(obj.Attributes.Style.FontSize.Value)
@ -443,7 +447,7 @@ func (obj *Object) Text() *d2target.MText {
return &d2target.MText{ return &d2target.MText{
Text: obj.Attributes.Label.Value, Text: obj.Attributes.Label.Value,
FontSize: fontSize, FontSize: fontSize,
IsBold: !obj.IsContainer(), IsBold: isBold,
IsItalic: false, IsItalic: false,
Language: obj.Attributes.Language, Language: obj.Attributes.Language,
Shape: obj.Attributes.Shape.Value, Shape: obj.Attributes.Shape.Value,
@ -742,7 +746,7 @@ func (obj *Object) Connect(srcID, dstID []string, srcArrow, dstArrow bool, label
src := srcObj.EnsureChild(srcID) src := srcObj.EnsureChild(srcID)
dst := dstObj.EnsureChild(dstID) dst := dstObj.EnsureChild(dstID)
if src.outerSequenceDiagram() != dst.outerSequenceDiagram() { if src.OuterSequenceDiagram() != dst.OuterSequenceDiagram() {
return nil, errors.New("connections within sequence diagrams can connect only to other objects within the same sequence diagram") return nil, errors.New("connections within sequence diagrams can connect only to other objects within the same sequence diagram")
} }

View file

@ -6,7 +6,7 @@ func (obj *Object) IsSequenceDiagram() bool {
return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
} }
func (obj *Object) outerSequenceDiagram() *Object { func (obj *Object) OuterSequenceDiagram() *Object {
for obj != nil { for obj != nil {
obj = obj.Parent obj = obj.Parent
if obj.IsSequenceDiagram() { if obj.IsSequenceDiagram() {
@ -19,7 +19,7 @@ func (obj *Object) outerSequenceDiagram() *Object {
// groups are objects in sequence diagrams that have no messages connected // groups are objects in sequence diagrams that have no messages connected
// and does not have a note as a child (a note can appear within a group, but it's a child of an actor) // and does not have a note as a child (a note can appear within a group, but it's a child of an actor)
func (obj *Object) IsSequenceDiagramGroup() bool { func (obj *Object) IsSequenceDiagramGroup() bool {
if obj.outerSequenceDiagram() == nil { if obj.OuterSequenceDiagram() == nil {
return false return false
} }
for _, e := range obj.Graph.Edges { for _, e := range obj.Graph.Edges {
@ -38,7 +38,7 @@ func (obj *Object) IsSequenceDiagramGroup() bool {
// notes are descendant of actors with no edges and no children // notes are descendant of actors with no edges and no children
func (obj *Object) IsSequenceDiagramNote() bool { func (obj *Object) IsSequenceDiagramNote() bool {
if obj.outerSequenceDiagram() == nil { if obj.OuterSequenceDiagram() == nil {
return false return false
} }
return !obj.hasEdgeRef() && !obj.ContainsAnyEdge(obj.Graph.Edges) && len(obj.ChildrenArray) == 0 return !obj.hasEdgeRef() && !obj.ContainsAnyEdge(obj.Graph.Edges) && len(obj.ChildrenArray) == 0

View file

@ -6,6 +6,7 @@ import (
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"oss.terrastruct.com/d2/d2compiler" "oss.terrastruct.com/d2/d2compiler"
"oss.terrastruct.com/d2/d2graph" "oss.terrastruct.com/d2/d2graph"
"oss.terrastruct.com/d2/d2layouts/d2sequence" "oss.terrastruct.com/d2/d2layouts/d2sequence"

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 649 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 648 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 469 KiB

After

Width:  |  Height:  |  Size: 793 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 46, "labelWidth": 46,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 469 KiB

After

Width:  |  Height:  |  Size: 793 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 31, "labelHeight": 31,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
@ -342,7 +342,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 812 KiB

After

Width:  |  Height:  |  Size: 812 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 31, "labelHeight": 31,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 22, "labelWidth": 22,
"labelHeight": 26, "labelHeight": 26,
@ -342,7 +342,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 812 KiB

After

Width:  |  Height:  |  Size: 812 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 36, "labelHeight": 36,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 326 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 36, "labelHeight": 36,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 649 KiB

View file

@ -64,7 +64,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 150, "labelWidth": 150,
"labelHeight": 36, "labelHeight": 36,

View file

@ -64,7 +64,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 150, "labelWidth": 150,
"labelHeight": 36, "labelHeight": 36,

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 326 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 326 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View file

@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 328 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 334 KiB

After

Width:  |  Height:  |  Size: 658 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 334 KiB

After

Width:  |  Height:  |  Size: 658 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 331 KiB

After

Width:  |  Height:  |  Size: 654 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 330 KiB

After

Width:  |  Height:  |  Size: 654 KiB

View file

@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -305,7 +305,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 41, "labelHeight": 41,
@ -511,7 +511,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
@ -639,7 +639,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 33, "labelWidth": 33,
"labelHeight": 41, "labelHeight": 41,
@ -951,7 +951,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 28, "labelWidth": 28,
"labelHeight": 41, "labelHeight": 41,
@ -1029,7 +1029,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 489 KiB

After

Width:  |  Height:  |  Size: 813 KiB

View file

@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 34, "labelWidth": 34,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 18, "labelWidth": 18,
"labelHeight": 41, "labelHeight": 41,
@ -305,7 +305,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 23, "labelWidth": 23,
"labelHeight": 41, "labelHeight": 41,
@ -511,7 +511,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,
@ -639,7 +639,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 33, "labelWidth": 33,
"labelHeight": 41, "labelHeight": 41,
@ -951,7 +951,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 28, "labelWidth": 28,
"labelHeight": 41, "labelHeight": 41,
@ -1029,7 +1029,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 485 KiB

After

Width:  |  Height:  |  Size: 809 KiB

View file

@ -344,7 +344,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 41, "labelHeight": 41,
@ -383,7 +383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 36, "labelHeight": 36,
@ -578,7 +578,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
@ -695,7 +695,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 41, "labelHeight": 41,
@ -734,7 +734,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
@ -812,7 +812,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
@ -1085,7 +1085,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 340 KiB

After

Width:  |  Height:  |  Size: 664 KiB

View file

@ -344,7 +344,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 9, "labelWidth": 9,
"labelHeight": 41, "labelHeight": 41,
@ -383,7 +383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 36, "labelHeight": 36,
@ -578,7 +578,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 16, "labelWidth": 16,
"labelHeight": 36, "labelHeight": 36,
@ -695,7 +695,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 41, "labelHeight": 41,
@ -734,7 +734,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
@ -812,7 +812,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 31, "labelHeight": 31,
@ -1085,7 +1085,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 36, "labelHeight": 36,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 338 KiB

After

Width:  |  Height:  |  Size: 662 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 659 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 659 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 659 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 129, "labelWidth": 129,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 659 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 328 KiB

After

Width:  |  Height:  |  Size: 652 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 17, "labelWidth": 17,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 328 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 90, "labelWidth": 90,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 45,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 90, "labelWidth": 90,
"labelHeight": 41, "labelHeight": 41,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -8,7 +8,7 @@
"x": 0, "x": 0,
"y": 108 "y": 108
}, },
"width": 153, "width": 150,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -32,9 +32,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 50,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -44,11 +44,11 @@
"id": "b", "id": "b",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 259, "x": 220,
"y": 87 "y": 90
}, },
"width": 150, "width": 150,
"height": 147, "height": 144,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -71,9 +71,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 47, "labelWidth": 44,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "class", "type": "class",
"pos": { "pos": {
"x": 463, "x": 440,
"y": 50 "y": 50
}, },
"width": 241, "width": 241,
@ -121,9 +121,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 73, "labelWidth": 71,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -133,10 +133,10 @@
"id": "d", "id": "d",
"type": "cloud", "type": "cloud",
"pos": { "pos": {
"x": 754, "x": 751,
"y": 108 "y": 108
}, },
"width": 179, "width": 174,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -160,9 +160,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 79, "labelWidth": 74,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -172,7 +172,7 @@
"id": "e", "id": "e",
"type": "code", "type": "code",
"pos": { "pos": {
"x": 996, "x": 995,
"y": 164 "y": 164
}, },
"width": 196, "width": 196,
@ -199,7 +199,7 @@
"language": "golang", "language": "golang",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 196, "labelWidth": 196,
"labelHeight": 70, "labelHeight": 70,
@ -211,7 +211,7 @@
"id": "f", "id": "f",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 1269, "x": 1261,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -238,9 +238,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 26, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -250,7 +250,7 @@
"id": "g", "id": "g",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 1519, "x": 1481,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -277,9 +277,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 27, "labelWidth": 25,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -289,7 +289,7 @@
"id": "h", "id": "h",
"type": "document", "type": "document",
"pos": { "pos": {
"x": 1769, "x": 1701,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -316,9 +316,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 37,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -328,10 +328,10 @@
"id": "i", "id": "i",
"type": "hexagon", "type": "hexagon",
"pos": { "pos": {
"x": 2003, "x": 1921,
"y": 108 "y": 108
}, },
"width": 182, "width": 177,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -355,9 +355,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -367,7 +367,7 @@
"id": "j", "id": "j",
"type": "image", "type": "image",
"pos": { "pos": {
"x": 2269, "x": 2168,
"y": 85 "y": 85
}, },
"width": 150, "width": 150,
@ -405,9 +405,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 106, "labelWidth": 101,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "OUTSIDE_BOTTOM_CENTER", "labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0, "zIndex": 0,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 2519, "x": 2388,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -444,9 +444,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -456,7 +456,7 @@
"id": "l", "id": "l",
"type": "package", "type": "package",
"pos": { "pos": {
"x": 2769, "x": 2608,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -483,9 +483,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 37,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -495,10 +495,10 @@
"id": "m", "id": "m",
"type": "page", "type": "page",
"pos": { "pos": {
"x": 3006, "x": 2828,
"y": 108 "y": 108
}, },
"width": 175, "width": 173,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -522,9 +522,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 75, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -534,10 +534,10 @@
"id": "n", "id": "n",
"type": "parallelogram", "type": "parallelogram",
"pos": { "pos": {
"x": 3252, "x": 3071,
"y": 92 "y": 92
}, },
"width": 183, "width": 177,
"height": 142, "height": 142,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -561,9 +561,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 83, "labelWidth": 77,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -573,10 +573,10 @@
"id": "o", "id": "o",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 3517, "x": 3318,
"y": 55 "y": 55
}, },
"width": 154, "width": 151,
"height": 142, "height": 142,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -600,9 +600,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 51,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "OUTSIDE_BOTTOM_CENTER", "labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0, "zIndex": 0,
@ -612,10 +612,10 @@
"id": "p", "id": "p",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 3763, "x": 3539,
"y": 108 "y": 108
}, },
"width": 161, "width": 159,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -639,9 +639,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 61, "labelWidth": 59,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -651,11 +651,11 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 4011, "x": 3768,
"y": 69 "y": 71
}, },
"width": 165, "width": 163,
"height": 165, "height": 163,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -678,9 +678,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -690,10 +690,10 @@
"id": "r", "id": "r",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 4237, "x": 4001,
"y": 108 "y": 108
}, },
"width": 213, "width": 207,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -717,9 +717,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 113, "labelWidth": 107,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -729,7 +729,7 @@
"id": "s", "id": "s",
"type": "stored_data", "type": "stored_data",
"pos": { "pos": {
"x": 4519, "x": 4278,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -756,9 +756,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 37, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -768,7 +768,7 @@
"id": "t", "id": "t",
"type": "sql_table", "type": "sql_table",
"pos": { "pos": {
"x": 4739, "x": 4498,
"y": 126 "y": 126
}, },
"width": 210, "width": 210,
@ -808,9 +808,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 61, "labelWidth": 58,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -844,11 +844,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 76.5, "x": 75,
"y": 364 "y": 364
}, },
{ {
"x": 334, "x": 295,
"y": 364 "y": 364
} }
], ],
@ -883,11 +883,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 334, "x": 295,
"y": 494 "y": 494
}, },
{ {
"x": 583.5, "x": 560.5,
"y": 494 "y": 494
} }
], ],
@ -922,11 +922,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 583.5, "x": 560.5,
"y": 624 "y": 624
}, },
{ {
"x": 843.5, "x": 838,
"y": 624 "y": 624
} }
], ],
@ -961,11 +961,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 838,
"y": 754 "y": 754
}, },
{ {
"x": 1094, "x": 1093,
"y": 754 "y": 754
} }
], ],
@ -1000,11 +1000,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1094, "x": 1093,
"y": 884 "y": 884
}, },
{ {
"x": 1344, "x": 1336,
"y": 884 "y": 884
} }
], ],
@ -1039,11 +1039,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1344, "x": 1336,
"y": 1014 "y": 1014
}, },
{ {
"x": 1594, "x": 1556,
"y": 1014 "y": 1014
} }
], ],
@ -1078,11 +1078,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1594, "x": 1556,
"y": 1144 "y": 1144
}, },
{ {
"x": 1844, "x": 1776,
"y": 1144 "y": 1144
} }
], ],
@ -1117,11 +1117,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1844, "x": 1776,
"y": 1274 "y": 1274
}, },
{ {
"x": 2094, "x": 2009.5,
"y": 1274 "y": 1274
} }
], ],
@ -1156,11 +1156,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2094, "x": 2009.5,
"y": 1404 "y": 1404
}, },
{ {
"x": 2344, "x": 2243,
"y": 1404 "y": 1404
} }
], ],
@ -1195,11 +1195,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2344, "x": 2243,
"y": 1534 "y": 1534
}, },
{ {
"x": 2594, "x": 2463,
"y": 1534 "y": 1534
} }
], ],
@ -1234,11 +1234,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2594, "x": 2463,
"y": 1664 "y": 1664
}, },
{ {
"x": 2844, "x": 2683,
"y": 1664 "y": 1664
} }
], ],
@ -1273,11 +1273,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2844, "x": 2683,
"y": 1794 "y": 1794
}, },
{ {
"x": 3093.5, "x": 2914.5,
"y": 1794 "y": 1794
} }
], ],
@ -1312,11 +1312,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093.5, "x": 2914.5,
"y": 1924 "y": 1924
}, },
{ {
"x": 3343.5, "x": 3159.5,
"y": 1924 "y": 1924
} }
], ],
@ -1351,11 +1351,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3343.5, "x": 3159.5,
"y": 2054 "y": 2054
}, },
{ {
"x": 3594, "x": 3393.5,
"y": 2054 "y": 2054
} }
], ],
@ -1390,11 +1390,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3594, "x": 3393.5,
"y": 2184 "y": 2184
}, },
{ {
"x": 3843.5, "x": 3618.5,
"y": 2184 "y": 2184
} }
], ],
@ -1429,11 +1429,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3843.5, "x": 3618.5,
"y": 2314 "y": 2314
}, },
{ {
"x": 4093.5, "x": 3849.5,
"y": 2314 "y": 2314
} }
], ],
@ -1468,11 +1468,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4093.5, "x": 3849.5,
"y": 2444 "y": 2444
}, },
{ {
"x": 4343.5, "x": 4104.5,
"y": 2444 "y": 2444
} }
], ],
@ -1507,11 +1507,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4343.5, "x": 4104.5,
"y": 2574 "y": 2574
}, },
{ {
"x": 4594, "x": 4353,
"y": 2574 "y": 2574
} }
], ],
@ -1546,11 +1546,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4594, "x": 4353,
"y": 2704 "y": 2704
}, },
{ {
"x": 4844, "x": 4603,
"y": 2704 "y": 2704
} }
], ],
@ -1585,11 +1585,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 76.5, "x": 75,
"y": 234 "y": 234
}, },
{ {
"x": 76.5, "x": 75,
"y": 2834 "y": 2834
} }
], ],
@ -1624,11 +1624,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 334, "x": 295,
"y": 234 "y": 234
}, },
{ {
"x": 334, "x": 295,
"y": 2834 "y": 2834
} }
], ],
@ -1663,11 +1663,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 583.5, "x": 560.5,
"y": 234 "y": 234
}, },
{ {
"x": 583.5, "x": 560.5,
"y": 2834 "y": 2834
} }
], ],
@ -1702,11 +1702,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 838,
"y": 234 "y": 234
}, },
{ {
"x": 843.5, "x": 838,
"y": 2834 "y": 2834
} }
], ],
@ -1741,11 +1741,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1094, "x": 1093,
"y": 234 "y": 234
}, },
{ {
"x": 1094, "x": 1093,
"y": 2834 "y": 2834
} }
], ],
@ -1780,11 +1780,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1344, "x": 1336,
"y": 234 "y": 234
}, },
{ {
"x": 1344, "x": 1336,
"y": 2834 "y": 2834
} }
], ],
@ -1819,11 +1819,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1594, "x": 1556,
"y": 234 "y": 234
}, },
{ {
"x": 1594, "x": 1556,
"y": 2834 "y": 2834
} }
], ],
@ -1858,11 +1858,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1844, "x": 1776,
"y": 234 "y": 234
}, },
{ {
"x": 1844, "x": 1776,
"y": 2834 "y": 2834
} }
], ],
@ -1897,11 +1897,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2094, "x": 2009.5,
"y": 234 "y": 234
}, },
{ {
"x": 2094, "x": 2009.5,
"y": 2834 "y": 2834
} }
], ],
@ -1936,11 +1936,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2344, "x": 2243,
"y": 239 "y": 239
}, },
{ {
"x": 2344, "x": 2243,
"y": 2834 "y": 2834
} }
], ],
@ -1975,11 +1975,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2594, "x": 2463,
"y": 234 "y": 234
}, },
{ {
"x": 2594, "x": 2463,
"y": 2834 "y": 2834
} }
], ],
@ -2014,11 +2014,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2844, "x": 2683,
"y": 234 "y": 234
}, },
{ {
"x": 2844, "x": 2683,
"y": 2834 "y": 2834
} }
], ],
@ -2053,11 +2053,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093.5, "x": 2914.5,
"y": 234 "y": 234
}, },
{ {
"x": 3093.5, "x": 2914.5,
"y": 2834 "y": 2834
} }
], ],
@ -2092,11 +2092,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3343.5, "x": 3159.5,
"y": 234 "y": 234
}, },
{ {
"x": 3343.5, "x": 3159.5,
"y": 2834 "y": 2834
} }
], ],
@ -2131,11 +2131,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3594, "x": 3393.5,
"y": 239 "y": 239
}, },
{ {
"x": 3594, "x": 3393.5,
"y": 2834 "y": 2834
} }
], ],
@ -2170,11 +2170,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3843.5, "x": 3618.5,
"y": 234 "y": 234
}, },
{ {
"x": 3843.5, "x": 3618.5,
"y": 2834 "y": 2834
} }
], ],
@ -2209,11 +2209,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4093.5, "x": 3849.5,
"y": 234 "y": 234
}, },
{ {
"x": 4093.5, "x": 3849.5,
"y": 2834 "y": 2834
} }
], ],
@ -2248,11 +2248,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4343.5, "x": 4104.5,
"y": 234 "y": 234
}, },
{ {
"x": 4343.5, "x": 4104.5,
"y": 2834 "y": 2834
} }
], ],
@ -2287,11 +2287,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4594, "x": 4353,
"y": 234 "y": 234
}, },
{ {
"x": 4594, "x": 4353,
"y": 2834 "y": 2834
} }
], ],
@ -2326,11 +2326,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4844, "x": 4603,
"y": 234 "y": 234
}, },
{ {
"x": 4844, "x": 4603,
"y": 2834 "y": 2834
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 992 KiB

After

Width:  |  Height:  |  Size: 669 KiB

View file

@ -8,7 +8,7 @@
"x": 0, "x": 0,
"y": 108 "y": 108
}, },
"width": 153, "width": 150,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -32,9 +32,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 53, "labelWidth": 50,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -44,11 +44,11 @@
"id": "b", "id": "b",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 259, "x": 220,
"y": 87 "y": 90
}, },
"width": 150, "width": 150,
"height": 147, "height": 144,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -71,9 +71,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 47, "labelWidth": 44,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "class", "type": "class",
"pos": { "pos": {
"x": 463, "x": 440,
"y": 50 "y": 50
}, },
"width": 241, "width": 241,
@ -121,9 +121,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 73, "labelWidth": 71,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -133,10 +133,10 @@
"id": "d", "id": "d",
"type": "cloud", "type": "cloud",
"pos": { "pos": {
"x": 754, "x": 751,
"y": 108 "y": 108
}, },
"width": 179, "width": 174,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -160,9 +160,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 79, "labelWidth": 74,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -172,7 +172,7 @@
"id": "e", "id": "e",
"type": "code", "type": "code",
"pos": { "pos": {
"x": 996, "x": 995,
"y": 164 "y": 164
}, },
"width": 196, "width": 196,
@ -199,7 +199,7 @@
"language": "golang", "language": "golang",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 196, "labelWidth": 196,
"labelHeight": 70, "labelHeight": 70,
@ -211,7 +211,7 @@
"id": "f", "id": "f",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 1269, "x": 1261,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -238,9 +238,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 26, "labelWidth": 24,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -250,7 +250,7 @@
"id": "g", "id": "g",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 1519, "x": 1481,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -277,9 +277,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 27, "labelWidth": 25,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -289,7 +289,7 @@
"id": "h", "id": "h",
"type": "document", "type": "document",
"pos": { "pos": {
"x": 1769, "x": 1701,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -316,9 +316,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 37,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -328,10 +328,10 @@
"id": "i", "id": "i",
"type": "hexagon", "type": "hexagon",
"pos": { "pos": {
"x": 2003, "x": 1921,
"y": 108 "y": 108
}, },
"width": 182, "width": 177,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -355,9 +355,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 77,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -367,7 +367,7 @@
"id": "j", "id": "j",
"type": "image", "type": "image",
"pos": { "pos": {
"x": 2269, "x": 2168,
"y": 85 "y": 85
}, },
"width": 150, "width": 150,
@ -405,9 +405,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 106, "labelWidth": 101,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "OUTSIDE_BOTTOM_CENTER", "labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0, "zIndex": 0,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 2519, "x": 2388,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -444,9 +444,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 38, "labelWidth": 36,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -456,7 +456,7 @@
"id": "l", "id": "l",
"type": "package", "type": "package",
"pos": { "pos": {
"x": 2769, "x": 2608,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -483,9 +483,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 39, "labelWidth": 37,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -495,10 +495,10 @@
"id": "m", "id": "m",
"type": "page", "type": "page",
"pos": { "pos": {
"x": 3006, "x": 2828,
"y": 108 "y": 108
}, },
"width": 175, "width": 173,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -522,9 +522,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 75, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -534,10 +534,10 @@
"id": "n", "id": "n",
"type": "parallelogram", "type": "parallelogram",
"pos": { "pos": {
"x": 3252, "x": 3071,
"y": 92 "y": 92
}, },
"width": 183, "width": 177,
"height": 142, "height": 142,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -561,9 +561,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 83, "labelWidth": 77,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -573,10 +573,10 @@
"id": "o", "id": "o",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 3517, "x": 3318,
"y": 55 "y": 55
}, },
"width": 154, "width": 151,
"height": 142, "height": 142,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -600,9 +600,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 54, "labelWidth": 51,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "OUTSIDE_BOTTOM_CENTER", "labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0, "zIndex": 0,
@ -612,10 +612,10 @@
"id": "p", "id": "p",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 3763, "x": 3539,
"y": 108 "y": 108
}, },
"width": 161, "width": 159,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -639,9 +639,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 61, "labelWidth": 59,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -651,11 +651,11 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 4011, "x": 3768,
"y": 69 "y": 71
}, },
"width": 165, "width": 163,
"height": 165, "height": 163,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -678,9 +678,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 63,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -690,10 +690,10 @@
"id": "r", "id": "r",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 4237, "x": 4001,
"y": 108 "y": 108
}, },
"width": 213, "width": 207,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -717,9 +717,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 113, "labelWidth": 107,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -729,7 +729,7 @@
"id": "s", "id": "s",
"type": "stored_data", "type": "stored_data",
"pos": { "pos": {
"x": 4519, "x": 4278,
"y": 108 "y": 108
}, },
"width": 150, "width": 150,
@ -756,9 +756,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 37, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -768,7 +768,7 @@
"id": "t", "id": "t",
"type": "sql_table", "type": "sql_table",
"pos": { "pos": {
"x": 4739, "x": 4498,
"y": 126 "y": 126
}, },
"width": 210, "width": 210,
@ -808,9 +808,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 61, "labelWidth": 58,
"labelHeight": 36, "labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -844,11 +844,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 76.5, "x": 75,
"y": 364 "y": 364
}, },
{ {
"x": 334, "x": 295,
"y": 364 "y": 364
} }
], ],
@ -883,11 +883,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 334, "x": 295,
"y": 494 "y": 494
}, },
{ {
"x": 583.5, "x": 560.5,
"y": 494 "y": 494
} }
], ],
@ -922,11 +922,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 583.5, "x": 560.5,
"y": 624 "y": 624
}, },
{ {
"x": 843.5, "x": 838,
"y": 624 "y": 624
} }
], ],
@ -961,11 +961,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 838,
"y": 754 "y": 754
}, },
{ {
"x": 1094, "x": 1093,
"y": 754 "y": 754
} }
], ],
@ -1000,11 +1000,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1094, "x": 1093,
"y": 884 "y": 884
}, },
{ {
"x": 1344, "x": 1336,
"y": 884 "y": 884
} }
], ],
@ -1039,11 +1039,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1344, "x": 1336,
"y": 1014 "y": 1014
}, },
{ {
"x": 1594, "x": 1556,
"y": 1014 "y": 1014
} }
], ],
@ -1078,11 +1078,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1594, "x": 1556,
"y": 1144 "y": 1144
}, },
{ {
"x": 1844, "x": 1776,
"y": 1144 "y": 1144
} }
], ],
@ -1117,11 +1117,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1844, "x": 1776,
"y": 1274 "y": 1274
}, },
{ {
"x": 2094, "x": 2009.5,
"y": 1274 "y": 1274
} }
], ],
@ -1156,11 +1156,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2094, "x": 2009.5,
"y": 1404 "y": 1404
}, },
{ {
"x": 2344, "x": 2243,
"y": 1404 "y": 1404
} }
], ],
@ -1195,11 +1195,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2344, "x": 2243,
"y": 1534 "y": 1534
}, },
{ {
"x": 2594, "x": 2463,
"y": 1534 "y": 1534
} }
], ],
@ -1234,11 +1234,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2594, "x": 2463,
"y": 1664 "y": 1664
}, },
{ {
"x": 2844, "x": 2683,
"y": 1664 "y": 1664
} }
], ],
@ -1273,11 +1273,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2844, "x": 2683,
"y": 1794 "y": 1794
}, },
{ {
"x": 3093.5, "x": 2914.5,
"y": 1794 "y": 1794
} }
], ],
@ -1312,11 +1312,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093.5, "x": 2914.5,
"y": 1924 "y": 1924
}, },
{ {
"x": 3343.5, "x": 3159.5,
"y": 1924 "y": 1924
} }
], ],
@ -1351,11 +1351,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3343.5, "x": 3159.5,
"y": 2054 "y": 2054
}, },
{ {
"x": 3594, "x": 3393.5,
"y": 2054 "y": 2054
} }
], ],
@ -1390,11 +1390,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3594, "x": 3393.5,
"y": 2184 "y": 2184
}, },
{ {
"x": 3843.5, "x": 3618.5,
"y": 2184 "y": 2184
} }
], ],
@ -1429,11 +1429,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3843.5, "x": 3618.5,
"y": 2314 "y": 2314
}, },
{ {
"x": 4093.5, "x": 3849.5,
"y": 2314 "y": 2314
} }
], ],
@ -1468,11 +1468,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4093.5, "x": 3849.5,
"y": 2444 "y": 2444
}, },
{ {
"x": 4343.5, "x": 4104.5,
"y": 2444 "y": 2444
} }
], ],
@ -1507,11 +1507,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4343.5, "x": 4104.5,
"y": 2574 "y": 2574
}, },
{ {
"x": 4594, "x": 4353,
"y": 2574 "y": 2574
} }
], ],
@ -1546,11 +1546,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4594, "x": 4353,
"y": 2704 "y": 2704
}, },
{ {
"x": 4844, "x": 4603,
"y": 2704 "y": 2704
} }
], ],
@ -1585,11 +1585,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 76.5, "x": 75,
"y": 234 "y": 234
}, },
{ {
"x": 76.5, "x": 75,
"y": 2834 "y": 2834
} }
], ],
@ -1624,11 +1624,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 334, "x": 295,
"y": 234 "y": 234
}, },
{ {
"x": 334, "x": 295,
"y": 2834 "y": 2834
} }
], ],
@ -1663,11 +1663,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 583.5, "x": 560.5,
"y": 234 "y": 234
}, },
{ {
"x": 583.5, "x": 560.5,
"y": 2834 "y": 2834
} }
], ],
@ -1702,11 +1702,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 838,
"y": 234 "y": 234
}, },
{ {
"x": 843.5, "x": 838,
"y": 2834 "y": 2834
} }
], ],
@ -1741,11 +1741,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1094, "x": 1093,
"y": 234 "y": 234
}, },
{ {
"x": 1094, "x": 1093,
"y": 2834 "y": 2834
} }
], ],
@ -1780,11 +1780,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1344, "x": 1336,
"y": 234 "y": 234
}, },
{ {
"x": 1344, "x": 1336,
"y": 2834 "y": 2834
} }
], ],
@ -1819,11 +1819,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1594, "x": 1556,
"y": 234 "y": 234
}, },
{ {
"x": 1594, "x": 1556,
"y": 2834 "y": 2834
} }
], ],
@ -1858,11 +1858,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1844, "x": 1776,
"y": 234 "y": 234
}, },
{ {
"x": 1844, "x": 1776,
"y": 2834 "y": 2834
} }
], ],
@ -1897,11 +1897,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2094, "x": 2009.5,
"y": 234 "y": 234
}, },
{ {
"x": 2094, "x": 2009.5,
"y": 2834 "y": 2834
} }
], ],
@ -1936,11 +1936,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2344, "x": 2243,
"y": 239 "y": 239
}, },
{ {
"x": 2344, "x": 2243,
"y": 2834 "y": 2834
} }
], ],
@ -1975,11 +1975,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2594, "x": 2463,
"y": 234 "y": 234
}, },
{ {
"x": 2594, "x": 2463,
"y": 2834 "y": 2834
} }
], ],
@ -2014,11 +2014,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2844, "x": 2683,
"y": 234 "y": 234
}, },
{ {
"x": 2844, "x": 2683,
"y": 2834 "y": 2834
} }
], ],
@ -2053,11 +2053,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093.5, "x": 2914.5,
"y": 234 "y": 234
}, },
{ {
"x": 3093.5, "x": 2914.5,
"y": 2834 "y": 2834
} }
], ],
@ -2092,11 +2092,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3343.5, "x": 3159.5,
"y": 234 "y": 234
}, },
{ {
"x": 3343.5, "x": 3159.5,
"y": 2834 "y": 2834
} }
], ],
@ -2131,11 +2131,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3594, "x": 3393.5,
"y": 239 "y": 239
}, },
{ {
"x": 3594, "x": 3393.5,
"y": 2834 "y": 2834
} }
], ],
@ -2170,11 +2170,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3843.5, "x": 3618.5,
"y": 234 "y": 234
}, },
{ {
"x": 3843.5, "x": 3618.5,
"y": 2834 "y": 2834
} }
], ],
@ -2209,11 +2209,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4093.5, "x": 3849.5,
"y": 234 "y": 234
}, },
{ {
"x": 4093.5, "x": 3849.5,
"y": 2834 "y": 2834
} }
], ],
@ -2248,11 +2248,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4343.5, "x": 4104.5,
"y": 234 "y": 234
}, },
{ {
"x": 4343.5, "x": 4104.5,
"y": 2834 "y": 2834
} }
], ],
@ -2287,11 +2287,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4594, "x": 4353,
"y": 234 "y": 234
}, },
{ {
"x": 4594, "x": 4353,
"y": 2834 "y": 2834
} }
], ],
@ -2326,11 +2326,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4844, "x": 4603,
"y": 234 "y": 234
}, },
{ {
"x": 4844, "x": 4603,
"y": 2834 "y": 2834
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 992 KiB

After

Width:  |  Height:  |  Size: 669 KiB

View file

@ -32,9 +32,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -164,7 +164,7 @@
"x": 25, "x": 25,
"y": 396 "y": 396
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -188,9 +188,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 30,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 1 "level": 1
@ -199,10 +199,10 @@
"id": "group 1", "id": "group 1",
"type": "", "type": "",
"pos": { "pos": {
"x": 251, "x": 221,
"y": 526 "y": 526
}, },
"width": 398, "width": 368,
"height": 730, "height": 730,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -226,7 +226,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 57,
"labelHeight": 26, "labelHeight": 26,
@ -237,10 +237,10 @@
"id": "group 1.nested guy", "id": "group 1.nested guy",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 786 "y": 786
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -264,9 +264,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 78,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 2 "level": 2
@ -275,10 +275,10 @@
"id": "group b", "id": "group b",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 1306 "y": 1306
}, },
"width": 473, "width": 438,
"height": 466, "height": 466,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -302,9 +302,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 58,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 1 "level": 1
@ -313,10 +313,10 @@
"id": "c.what would arnold say", "id": "c.what would arnold say",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 442, "x": 386,
"y": 1476 "y": 1476
}, },
"width": 266, "width": 257,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -340,9 +340,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 166, "labelWidth": 157,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -352,10 +352,10 @@
"id": "choo", "id": "choo",
"type": "", "type": "",
"pos": { "pos": {
"x": 691, "x": 603,
"y": 1822 "y": 1822
}, },
"width": 258, "width": 254,
"height": 216, "height": 216,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -379,9 +379,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 38,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 1 "level": 1
@ -390,10 +390,10 @@
"id": "d.this note", "id": "d.this note",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 741, "x": 653,
"y": 1862 "y": 1862
}, },
"width": 168, "width": 164,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -417,9 +417,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -429,45 +429,7 @@
"id": "b.t1", "id": "b.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 940
},
"width": 12,
"height": 292,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#EDF0FD",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 25,
"labelHeight": 36,
"zIndex": 3,
"level": 2
},
{
"id": "c.t1",
"type": "rectangle",
"pos": {
"x": 569,
"y": 940 "y": 940
}, },
"width": 12, "width": 12,
@ -494,9 +456,47 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
{
"id": "c.t1",
"type": "rectangle",
"pos": {
"x": 509,
"y": 940
},
"width": 12,
"height": 292,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#EDF0FD",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": false,
"underline": false,
"labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -505,7 +505,7 @@
"id": "b.t1.t2", "id": "b.t1.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 315, "x": 285,
"y": 1070 "y": 1070
}, },
"width": 20, "width": 20,
@ -532,9 +532,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -571,7 +571,7 @@
"y": 306 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 306 "y": 306
} }
], ],
@ -610,7 +610,7 @@
"y": 436 "y": 436
}, },
{ {
"x": 325, "x": 295,
"y": 436 "y": 436
} }
], ],
@ -645,11 +645,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 566 "y": 566
}, },
{ {
"x": 575, "x": 515,
"y": 566 "y": 566
} }
], ],
@ -684,11 +684,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 696 "y": 696
}, },
{ {
"x": 325, "x": 295,
"y": 696 "y": 696
} }
], ],
@ -723,11 +723,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 826 "y": 826
}, },
{ {
"x": 325, "x": 295,
"y": 826 "y": 826
} }
], ],
@ -762,11 +762,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 301,
"y": 956 "y": 956
}, },
{ {
"x": 569, "x": 509,
"y": 956 "y": 956
} }
], ],
@ -801,11 +801,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335, "x": 305,
"y": 1086 "y": 1086
}, },
{ {
"x": 569, "x": 509,
"y": 1086 "y": 1086
} }
], ],
@ -840,11 +840,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 569, "x": 509,
"y": 1216 "y": 1216
}, },
{ {
"x": 331, "x": 301,
"y": 1216 "y": 1216
} }
], ],
@ -879,11 +879,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 1346 "y": 1346
}, },
{ {
"x": 575, "x": 515,
"y": 1346 "y": 1346
} }
], ],
@ -918,11 +918,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1732 "y": 1732
}, },
{ {
"x": 325, "x": 295,
"y": 1732 "y": 1732
} }
], ],
@ -996,11 +996,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 176 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 2118 "y": 2118
} }
], ],
@ -1035,11 +1035,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 176 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 2118 "y": 2118
} }
], ],
@ -1074,11 +1074,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 176 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 2118 "y": 2118
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 474 KiB

After

Width:  |  Height:  |  Size: 475 KiB

View file

@ -32,9 +32,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -164,7 +164,7 @@
"x": 25, "x": 25,
"y": 396 "y": 396
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -188,9 +188,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 30,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 1 "level": 1
@ -199,10 +199,10 @@
"id": "group 1", "id": "group 1",
"type": "", "type": "",
"pos": { "pos": {
"x": 251, "x": 221,
"y": 526 "y": 526
}, },
"width": 398, "width": 368,
"height": 730, "height": 730,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -226,7 +226,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 57,
"labelHeight": 26, "labelHeight": 26,
@ -237,10 +237,10 @@
"id": "group 1.nested guy", "id": "group 1.nested guy",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 786 "y": 786
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -264,9 +264,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 78,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 2 "level": 2
@ -275,10 +275,10 @@
"id": "group b", "id": "group b",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 1306 "y": 1306
}, },
"width": 473, "width": 438,
"height": 466, "height": 466,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -302,9 +302,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 58,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 1 "level": 1
@ -313,10 +313,10 @@
"id": "c.what would arnold say", "id": "c.what would arnold say",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 442, "x": 386,
"y": 1476 "y": 1476
}, },
"width": 266, "width": 257,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -340,9 +340,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 166, "labelWidth": 157,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -352,10 +352,10 @@
"id": "choo", "id": "choo",
"type": "", "type": "",
"pos": { "pos": {
"x": 691, "x": 603,
"y": 1822 "y": 1822
}, },
"width": 258, "width": 254,
"height": 216, "height": 216,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -379,9 +379,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 38,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 1 "level": 1
@ -390,10 +390,10 @@
"id": "d.this note", "id": "d.this note",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 741, "x": 653,
"y": 1862 "y": 1862
}, },
"width": 168, "width": 164,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -417,9 +417,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 68, "labelWidth": 64,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -429,45 +429,7 @@
"id": "b.t1", "id": "b.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 940
},
"width": 12,
"height": 292,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#EDF0FD",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 25,
"labelHeight": 36,
"zIndex": 3,
"level": 2
},
{
"id": "c.t1",
"type": "rectangle",
"pos": {
"x": 569,
"y": 940 "y": 940
}, },
"width": 12, "width": 12,
@ -494,9 +456,47 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
{
"id": "c.t1",
"type": "rectangle",
"pos": {
"x": 509,
"y": 940
},
"width": 12,
"height": 292,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#EDF0FD",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": false,
"underline": false,
"labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -505,7 +505,7 @@
"id": "b.t1.t2", "id": "b.t1.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 315, "x": 285,
"y": 1070 "y": 1070
}, },
"width": 20, "width": 20,
@ -532,9 +532,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -571,7 +571,7 @@
"y": 306 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 306 "y": 306
} }
], ],
@ -610,7 +610,7 @@
"y": 436 "y": 436
}, },
{ {
"x": 325, "x": 295,
"y": 436 "y": 436
} }
], ],
@ -645,11 +645,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 566 "y": 566
}, },
{ {
"x": 575, "x": 515,
"y": 566 "y": 566
} }
], ],
@ -684,11 +684,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 696 "y": 696
}, },
{ {
"x": 325, "x": 295,
"y": 696 "y": 696
} }
], ],
@ -723,11 +723,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 826 "y": 826
}, },
{ {
"x": 325, "x": 295,
"y": 826 "y": 826
} }
], ],
@ -762,11 +762,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 301,
"y": 956 "y": 956
}, },
{ {
"x": 569, "x": 509,
"y": 956 "y": 956
} }
], ],
@ -801,11 +801,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335, "x": 305,
"y": 1086 "y": 1086
}, },
{ {
"x": 569, "x": 509,
"y": 1086 "y": 1086
} }
], ],
@ -840,11 +840,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 569, "x": 509,
"y": 1216 "y": 1216
}, },
{ {
"x": 331, "x": 301,
"y": 1216 "y": 1216
} }
], ],
@ -879,11 +879,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 1346 "y": 1346
}, },
{ {
"x": 575, "x": 515,
"y": 1346 "y": 1346
} }
], ],
@ -918,11 +918,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1732 "y": 1732
}, },
{ {
"x": 325, "x": 295,
"y": 1732 "y": 1732
} }
], ],
@ -996,11 +996,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 176 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 2118 "y": 2118
} }
], ],
@ -1035,11 +1035,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 176 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 2118 "y": 2118
} }
], ],
@ -1074,11 +1074,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 176 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 2118 "y": 2118
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 474 KiB

After

Width:  |  Height:  |  Size: 475 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -71,9 +71,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 29,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -109,7 +109,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -148,9 +148,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -186,7 +186,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -220,15 +220,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -263,7 +263,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -301,7 +301,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -335,15 +335,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -373,15 +373,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 13,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -416,9 +416,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -454,7 +454,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -488,15 +488,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -526,15 +526,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 13,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -569,7 +569,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -607,9 +607,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 5 "level": 5
@ -645,7 +645,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -679,15 +679,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -717,15 +717,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 13,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -760,7 +760,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -798,7 +798,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -836,7 +836,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -874,9 +874,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 333 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -71,9 +71,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 29,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -109,7 +109,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -148,9 +148,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -186,7 +186,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -220,15 +220,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -263,7 +263,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -301,7 +301,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -335,15 +335,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -373,15 +373,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 13,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -416,9 +416,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -454,7 +454,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -488,15 +488,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -526,15 +526,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 13,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -569,7 +569,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -607,9 +607,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 5 "level": 5
@ -645,7 +645,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -679,15 +679,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -717,15 +717,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 13,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -760,7 +760,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -798,7 +798,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -836,7 +836,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -874,9 +874,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 333 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -110,9 +110,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -161,10 +161,10 @@
"id": "a.explanation", "id": "a.explanation",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -20, "x": -17,
"y": 436 "y": 436
}, },
"width": 190, "width": 184,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -188,9 +188,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 90, "labelWidth": 84,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -200,10 +200,10 @@
"id": "a.another explanation", "id": "a.another explanation",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -50, "x": -45,
"y": 692 "y": 692
}, },
"width": 250, "width": 241,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -227,9 +227,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 150, "labelWidth": 141,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -239,10 +239,10 @@
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"", "id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 128, "x": 106,
"y": 1078 "y": 1078
}, },
"width": 393, "width": 378,
"height": 142, "height": 142,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -266,9 +266,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 293, "labelWidth": 278,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -278,10 +278,10 @@
"id": "d.The earth is like a tiny grain of sand, only much, much heavier", "id": "d.The earth is like a tiny grain of sand, only much, much heavier",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 554, "x": 477,
"y": 1480 "y": 1480
}, },
"width": 541, "width": 516,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -305,9 +305,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 441, "labelWidth": 416,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -345,7 +345,7 @@
"y": 306 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 306 "y": 306
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 948 "y": 948
}, },
{ {
"x": 575, "x": 515,
"y": 948 "y": 948
} }
], ],
@ -419,11 +419,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1350 "y": 1350
}, },
{ {
"x": 325, "x": 295,
"y": 1350 "y": 1350
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 176 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 1736 "y": 1736
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 176 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 1736 "y": 1736
} }
], ],
@ -575,11 +575,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 176 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 1736 "y": 1736
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -110,9 +110,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -161,10 +161,10 @@
"id": "a.explanation", "id": "a.explanation",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -20, "x": -17,
"y": 436 "y": 436
}, },
"width": 190, "width": 184,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -188,9 +188,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 90, "labelWidth": 84,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -200,10 +200,10 @@
"id": "a.another explanation", "id": "a.another explanation",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -50, "x": -45,
"y": 692 "y": 692
}, },
"width": 250, "width": 241,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -227,9 +227,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 150, "labelWidth": 141,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -239,10 +239,10 @@
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"", "id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 128, "x": 106,
"y": 1078 "y": 1078
}, },
"width": 393, "width": 378,
"height": 142, "height": 142,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -266,9 +266,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 293, "labelWidth": 278,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -278,10 +278,10 @@
"id": "d.The earth is like a tiny grain of sand, only much, much heavier", "id": "d.The earth is like a tiny grain of sand, only much, much heavier",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 554, "x": 477,
"y": 1480 "y": 1480
}, },
"width": 541, "width": 516,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -305,9 +305,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 441, "labelWidth": 416,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -345,7 +345,7 @@
"y": 306 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 306 "y": 306
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 948 "y": 948
}, },
{ {
"x": 575, "x": 515,
"y": 948 "y": 948
} }
], ],
@ -419,11 +419,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1350 "y": 1350
}, },
{ {
"x": 325, "x": 295,
"y": 1350 "y": 1350
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 176 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 1736 "y": 1736
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 176 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 1736 "y": 1736
} }
], ],
@ -575,11 +575,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 176 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 1736 "y": 1736
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -8,7 +8,7 @@
"x": 0, "x": 0,
"y": 0 "y": 0
}, },
"width": 2212, "width": 2174,
"height": 2288, "height": 2288,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 242, "labelWidth": 242,
"labelHeight": 41, "labelHeight": 41,
@ -71,9 +71,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 27, "labelWidth": 25,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -83,7 +83,7 @@
"id": "How this is rendered.d2ast", "id": "How this is rendered.d2ast",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 86 "y": 86
}, },
"width": 150, "width": 150,
@ -110,9 +110,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 43,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -122,7 +122,7 @@
"id": "How this is rendered.d2compiler", "id": "How this is rendered.d2compiler",
"type": "", "type": "",
"pos": { "pos": {
"x": 484, "x": 440,
"y": 86 "y": 86
}, },
"width": 182, "width": 182,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 82,
"labelHeight": 26, "labelHeight": 26,
@ -161,7 +161,7 @@
"id": "How this is rendered.d2layout", "id": "How this is rendered.d2layout",
"type": "", "type": "",
"pos": { "pos": {
"x": 743, "x": 692,
"y": 86 "y": 86
}, },
"width": 165, "width": 165,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
@ -200,7 +200,7 @@
"id": "How this is rendered.d2exporter", "id": "How this is rendered.d2exporter",
"type": "", "type": "",
"pos": { "pos": {
"x": 985, "x": 927,
"y": 86 "y": 86
}, },
"width": 180, "width": 180,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 80, "labelWidth": 80,
"labelHeight": 26, "labelHeight": 26,
@ -239,10 +239,10 @@
"id": "How this is rendered.d2themes", "id": "How this is rendered.d2themes",
"type": "", "type": "",
"pos": { "pos": {
"x": 1237, "x": 1177,
"y": 86 "y": 86
}, },
"width": 176, "width": 173,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -266,9 +266,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 76, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -278,10 +278,10 @@
"id": "How this is rendered.d2renderer", "id": "How this is rendered.d2renderer",
"type": "", "type": "",
"pos": { "pos": {
"x": 1482, "x": 1420,
"y": 86 "y": 86
}, },
"width": 186, "width": 181,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -305,9 +305,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 81,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -317,10 +317,10 @@
"id": "How this is rendered.d2compiler.measurements also take place", "id": "How this is rendered.d2compiler.measurements also take place",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 416, "x": 377,
"y": 732 "y": 732
}, },
"width": 318, "width": 307,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -344,9 +344,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 218, "labelWidth": 207,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -356,10 +356,10 @@
"id": "How this is rendered.only if root is not sequence", "id": "How this is rendered.only if root is not sequence",
"type": "", "type": "",
"pos": { "pos": {
"x": 781, "x": 730,
"y": 1338 "y": 1338
}, },
"width": 1376, "width": 1391,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -383,9 +383,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 195, "labelWidth": 185,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 2 "level": 2
@ -394,7 +394,7 @@
"id": "How this is rendered.d2layout.layout", "id": "How this is rendered.d2layout.layout",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 819, "x": 768,
"y": 1102 "y": 1102
}, },
"width": 12, "width": 12,
@ -421,9 +421,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 47,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -432,10 +432,10 @@
"id": "How this is rendered.d2sequencelayout", "id": "How this is rendered.d2sequencelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1718, "x": 1671,
"y": 86 "y": 86
}, },
"width": 235, "width": 229,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -459,9 +459,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 135, "labelWidth": 129,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -471,10 +471,10 @@
"id": "How this is rendered.d2dagrelayout", "id": "How this is rendered.d2dagrelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 2003, "x": 1970,
"y": 86 "y": 86
}, },
"width": 209, "width": 204,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -498,9 +498,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 109, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -510,7 +510,7 @@
"id": "How this is rendered.d2exporter.export", "id": "How this is rendered.d2exporter.export",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1069, "x": 1011,
"y": 1882 "y": 1882
}, },
"width": 12, "width": 12,
@ -537,9 +537,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 52, "labelWidth": 50,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -576,7 +576,7 @@
"y": 342 "y": 342
}, },
{ {
"x": 325, "x": 295,
"y": 342 "y": 342
} }
], ],
@ -611,7 +611,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 472 "y": 472
}, },
{ {
@ -654,7 +654,7 @@
"y": 602 "y": 602
}, },
{ {
"x": 575, "x": 531,
"y": 602 "y": 602
} }
], ],
@ -689,7 +689,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 531,
"y": 988 "y": 988
}, },
{ {
@ -732,7 +732,7 @@
"y": 1118 "y": 1118
}, },
{ {
"x": 819.5, "x": 768.5,
"y": 1118 "y": 1118
} }
], ],
@ -767,11 +767,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 831.5, "x": 780.5,
"y": 1248 "y": 1248
}, },
{ {
"x": 1835.5, "x": 1785.5,
"y": 1248 "y": 1248
} }
], ],
@ -806,11 +806,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 831.5, "x": 780.5,
"y": 1378 "y": 1378
}, },
{ {
"x": 2107.5, "x": 2072,
"y": 1378 "y": 1378
} }
], ],
@ -845,11 +845,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 831.5, "x": 780.5,
"y": 1508 "y": 1508
}, },
{ {
"x": 1835.5, "x": 1785.5,
"y": 1508 "y": 1508
} }
], ],
@ -884,7 +884,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825.5, "x": 774.5,
"y": 1638 "y": 1638
}, },
{ {
@ -927,7 +927,7 @@
"y": 1768 "y": 1768
}, },
{ {
"x": 1075, "x": 1017,
"y": 1768 "y": 1768
} }
], ],
@ -962,11 +962,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1081, "x": 1023,
"y": 1898 "y": 1898
}, },
{ {
"x": 1325, "x": 1263.5,
"y": 1898 "y": 1898
} }
], ],
@ -1001,11 +1001,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1081, "x": 1023,
"y": 2028 "y": 2028
}, },
{ {
"x": 1575, "x": 1510.5,
"y": 2028 "y": 2028
} }
], ],
@ -1040,7 +1040,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1069, "x": 1011,
"y": 2158 "y": 2158
}, },
{ {
@ -1118,11 +1118,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 212 "y": 212
}, },
{ {
"x": 325, "x": 295,
"y": 2288 "y": 2288
} }
], ],
@ -1157,11 +1157,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 531,
"y": 212 "y": 212
}, },
{ {
"x": 575, "x": 531,
"y": 2288 "y": 2288
} }
], ],
@ -1196,11 +1196,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825.5, "x": 774.5,
"y": 212 "y": 212
}, },
{ {
"x": 825.5, "x": 774.5,
"y": 2288 "y": 2288
} }
], ],
@ -1235,11 +1235,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1075, "x": 1017,
"y": 212 "y": 212
}, },
{ {
"x": 1075, "x": 1017,
"y": 2288 "y": 2288
} }
], ],
@ -1274,11 +1274,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1325, "x": 1263.5,
"y": 212 "y": 212
}, },
{ {
"x": 1325, "x": 1263.5,
"y": 2288 "y": 2288
} }
], ],
@ -1313,11 +1313,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1575, "x": 1510.5,
"y": 212 "y": 212
}, },
{ {
"x": 1575, "x": 1510.5,
"y": 2288 "y": 2288
} }
], ],
@ -1352,11 +1352,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1835.5, "x": 1785.5,
"y": 212 "y": 212
}, },
{ {
"x": 1835.5, "x": 1785.5,
"y": 2288 "y": 2288
} }
], ],
@ -1391,11 +1391,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2107.5, "x": 2072,
"y": 212 "y": 212
}, },
{ {
"x": 2107.5, "x": 2072,
"y": 2288 "y": 2288
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 479 KiB

After

Width:  |  Height:  |  Size: 480 KiB

View file

@ -8,7 +8,7 @@
"x": 12, "x": 12,
"y": 12 "y": 12
}, },
"width": 2212, "width": 2174,
"height": 2288, "height": 2288,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 242, "labelWidth": 242,
"labelHeight": 41, "labelHeight": 41,
@ -71,9 +71,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 27, "labelWidth": 25,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -83,7 +83,7 @@
"id": "How this is rendered.d2ast", "id": "How this is rendered.d2ast",
"type": "", "type": "",
"pos": { "pos": {
"x": 262, "x": 232,
"y": 98 "y": 98
}, },
"width": 150, "width": 150,
@ -110,9 +110,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 45, "labelWidth": 43,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -122,7 +122,7 @@
"id": "How this is rendered.d2compiler", "id": "How this is rendered.d2compiler",
"type": "", "type": "",
"pos": { "pos": {
"x": 496, "x": 452,
"y": 98 "y": 98
}, },
"width": 182, "width": 182,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 82,
"labelHeight": 26, "labelHeight": 26,
@ -161,7 +161,7 @@
"id": "How this is rendered.d2layout", "id": "How this is rendered.d2layout",
"type": "", "type": "",
"pos": { "pos": {
"x": 755, "x": 704,
"y": 98 "y": 98
}, },
"width": 165, "width": 165,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 65, "labelWidth": 65,
"labelHeight": 26, "labelHeight": 26,
@ -200,7 +200,7 @@
"id": "How this is rendered.d2exporter", "id": "How this is rendered.d2exporter",
"type": "", "type": "",
"pos": { "pos": {
"x": 997, "x": 939,
"y": 98 "y": 98
}, },
"width": 180, "width": 180,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 80, "labelWidth": 80,
"labelHeight": 26, "labelHeight": 26,
@ -239,10 +239,10 @@
"id": "How this is rendered.d2themes", "id": "How this is rendered.d2themes",
"type": "", "type": "",
"pos": { "pos": {
"x": 1249, "x": 1189,
"y": 98 "y": 98
}, },
"width": 176, "width": 173,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -266,9 +266,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 76, "labelWidth": 73,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -278,10 +278,10 @@
"id": "How this is rendered.d2renderer", "id": "How this is rendered.d2renderer",
"type": "", "type": "",
"pos": { "pos": {
"x": 1494, "x": 1432,
"y": 98 "y": 98
}, },
"width": 186, "width": 181,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -305,9 +305,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 81,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -317,10 +317,10 @@
"id": "How this is rendered.d2compiler.measurements also take place", "id": "How this is rendered.d2compiler.measurements also take place",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 416, "x": 377,
"y": 732 "y": 732
}, },
"width": 318, "width": 307,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -344,9 +344,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 218, "labelWidth": 207,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5, "zIndex": 5,
@ -356,10 +356,10 @@
"id": "How this is rendered.only if root is not sequence", "id": "How this is rendered.only if root is not sequence",
"type": "", "type": "",
"pos": { "pos": {
"x": 781, "x": 730,
"y": 1338 "y": 1338
}, },
"width": 1376, "width": 1391,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -383,9 +383,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 195, "labelWidth": 185,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 1,
"level": 2 "level": 2
@ -394,7 +394,7 @@
"id": "How this is rendered.d2layout.layout", "id": "How this is rendered.d2layout.layout",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 831, "x": 780,
"y": 1114 "y": 1114
}, },
"width": 12, "width": 12,
@ -421,9 +421,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 47,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -432,10 +432,10 @@
"id": "How this is rendered.d2sequencelayout", "id": "How this is rendered.d2sequencelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1730, "x": 1683,
"y": 98 "y": 98
}, },
"width": 235, "width": 229,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -459,9 +459,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 135, "labelWidth": 129,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -471,10 +471,10 @@
"id": "How this is rendered.d2dagrelayout", "id": "How this is rendered.d2dagrelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 2015, "x": 1982,
"y": 98 "y": 98
}, },
"width": 209, "width": 204,
"height": 126, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -498,9 +498,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 109, "labelWidth": 104,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -510,7 +510,7 @@
"id": "How this is rendered.d2exporter.export", "id": "How this is rendered.d2exporter.export",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1081, "x": 1023,
"y": 1894 "y": 1894
}, },
"width": 12, "width": 12,
@ -537,9 +537,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 52, "labelWidth": 50,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -576,7 +576,7 @@
"y": 354 "y": 354
}, },
{ {
"x": 337, "x": 307,
"y": 354 "y": 354
} }
], ],
@ -611,7 +611,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 337, "x": 307,
"y": 484 "y": 484
}, },
{ {
@ -654,7 +654,7 @@
"y": 614 "y": 614
}, },
{ {
"x": 587, "x": 543,
"y": 614 "y": 614
} }
], ],
@ -689,7 +689,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 587, "x": 543,
"y": 1000 "y": 1000
}, },
{ {
@ -732,7 +732,7 @@
"y": 1130 "y": 1130
}, },
{ {
"x": 831.5, "x": 780.5,
"y": 1130 "y": 1130
} }
], ],
@ -767,11 +767,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 792.5,
"y": 1260 "y": 1260
}, },
{ {
"x": 1847.5, "x": 1797.5,
"y": 1260 "y": 1260
} }
], ],
@ -806,11 +806,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 792.5,
"y": 1390 "y": 1390
}, },
{ {
"x": 2119.5, "x": 2084,
"y": 1390 "y": 1390
} }
], ],
@ -845,11 +845,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 843.5, "x": 792.5,
"y": 1520 "y": 1520
}, },
{ {
"x": 1847.5, "x": 1797.5,
"y": 1520 "y": 1520
} }
], ],
@ -884,7 +884,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 837.5, "x": 786.5,
"y": 1650 "y": 1650
}, },
{ {
@ -927,7 +927,7 @@
"y": 1780 "y": 1780
}, },
{ {
"x": 1087, "x": 1029,
"y": 1780 "y": 1780
} }
], ],
@ -962,11 +962,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1093, "x": 1035,
"y": 1910 "y": 1910
}, },
{ {
"x": 1337, "x": 1275.5,
"y": 1910 "y": 1910
} }
], ],
@ -1001,11 +1001,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1093, "x": 1035,
"y": 2040 "y": 2040
}, },
{ {
"x": 1587, "x": 1522.5,
"y": 2040 "y": 2040
} }
], ],
@ -1040,7 +1040,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1081, "x": 1023,
"y": 2170 "y": 2170
}, },
{ {
@ -1118,11 +1118,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 337, "x": 307,
"y": 224 "y": 224
}, },
{ {
"x": 337, "x": 307,
"y": 2300 "y": 2300
} }
], ],
@ -1157,11 +1157,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 587, "x": 543,
"y": 224 "y": 224
}, },
{ {
"x": 587, "x": 543,
"y": 2300 "y": 2300
} }
], ],
@ -1196,11 +1196,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 837.5, "x": 786.5,
"y": 224 "y": 224
}, },
{ {
"x": 837.5, "x": 786.5,
"y": 2300 "y": 2300
} }
], ],
@ -1235,11 +1235,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1087, "x": 1029,
"y": 224 "y": 224
}, },
{ {
"x": 1087, "x": 1029,
"y": 2300 "y": 2300
} }
], ],
@ -1274,11 +1274,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1337, "x": 1275.5,
"y": 224 "y": 224
}, },
{ {
"x": 1337, "x": 1275.5,
"y": 2300 "y": 2300
} }
], ],
@ -1313,11 +1313,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1587, "x": 1522.5,
"y": 224 "y": 224
}, },
{ {
"x": 1587, "x": 1522.5,
"y": 2300 "y": 2300
} }
], ],
@ -1352,11 +1352,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1847.5, "x": 1797.5,
"y": 224 "y": 224
}, },
{ {
"x": 1847.5, "x": 1797.5,
"y": 2300 "y": 2300
} }
], ],
@ -1391,11 +1391,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2119.5, "x": 2084,
"y": 224 "y": 224
}, },
{ {
"x": 2119.5, "x": 2084,
"y": 2300 "y": 2300
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 479 KiB

After

Width:  |  Height:  |  Size: 480 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -105,15 +105,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -148,7 +148,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -181,15 +181,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -224,7 +224,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -262,7 +262,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 472 KiB

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -105,15 +105,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -148,7 +148,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -181,15 +181,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 12,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -224,7 +224,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -262,7 +262,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 472 KiB

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -8,7 +8,7 @@
"x": 0, "x": 0,
"y": 77 "y": 77
}, },
"width": 163, "width": 158,
"height": 158, "height": 158,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -32,9 +32,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 58,
"labelHeight": 58, "labelHeight": 58,
"labelPosition": "OUTSIDE_BOTTOM_CENTER", "labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0, "zIndex": 0,
@ -44,7 +44,7 @@
"id": "bob", "id": "bob",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 267, "x": 228,
"y": 141 "y": 141
}, },
"width": 150, "width": 150,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
@ -83,7 +83,7 @@
"id": "db", "id": "db",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 584, "x": 448,
"y": 162 "y": 162
}, },
"width": 150, "width": 150,
@ -110,9 +110,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -122,7 +122,7 @@
"id": "queue", "id": "queue",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 901, "x": 668,
"y": 162 "y": 162
}, },
"width": 150, "width": 150,
@ -149,9 +149,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -161,10 +161,10 @@
"id": "service", "id": "service",
"type": "", "type": "",
"pos": { "pos": {
"x": 1192, "x": 888,
"y": 50 "y": 50
}, },
"width": 202, "width": 197,
"height": 238, "height": 238,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -188,9 +188,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 102, "labelWidth": 97,
"labelHeight": 138, "labelHeight": 138,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -224,11 +224,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 81.5, "x": 79,
"y": 418 "y": 418
}, },
{ {
"x": 342, "x": 303,
"y": 418 "y": 418
} }
], ],
@ -263,11 +263,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 548 "y": 548
}, },
{ {
"x": 1293, "x": 986.5,
"y": 548 "y": 548
} }
], ],
@ -302,11 +302,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 986.5,
"y": 678 "y": 678
}, },
{ {
"x": 659, "x": 523,
"y": 678 "y": 678
} }
], ],
@ -341,11 +341,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 523,
"y": 808 "y": 808
}, },
{ {
"x": 1293, "x": 986.5,
"y": 808 "y": 808
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 986.5,
"y": 938 "y": 938
}, },
{ {
"x": 342, "x": 303,
"y": 938 "y": 938
} }
], ],
@ -419,11 +419,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 1068 "y": 1068
}, },
{ {
"x": 81.5, "x": 79,
"y": 1068 "y": 1068
} }
], ],
@ -458,11 +458,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 81.5, "x": 79,
"y": 1198 "y": 1198
}, },
{ {
"x": 342, "x": 303,
"y": 1198 "y": 1198
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 1328 "y": 1328
}, },
{ {
"x": 976, "x": 743,
"y": 1328 "y": 1328
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 743,
"y": 1458 "y": 1458
}, },
{ {
"x": 342, "x": 303,
"y": 1458 "y": 1458
} }
], ],
@ -575,11 +575,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 1588 "y": 1588
}, },
{ {
"x": 81.5, "x": 79,
"y": 1588 "y": 1588
} }
], ],
@ -614,11 +614,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 81.5, "x": 79,
"y": 293 "y": 293
}, },
{ {
"x": 81.5, "x": 79,
"y": 1718 "y": 1718
} }
], ],
@ -653,11 +653,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 293 "y": 293
}, },
{ {
"x": 342, "x": 303,
"y": 1718 "y": 1718
} }
], ],
@ -692,11 +692,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 523,
"y": 288 "y": 288
}, },
{ {
"x": 659, "x": 523,
"y": 1718 "y": 1718
} }
], ],
@ -731,11 +731,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 743,
"y": 288 "y": 288
}, },
{ {
"x": 976, "x": 743,
"y": 1718 "y": 1718
} }
], ],
@ -770,11 +770,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 986.5,
"y": 288 "y": 288
}, },
{ {
"x": 1293, "x": 986.5,
"y": 1718 "y": 1718
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 475 KiB

After

Width:  |  Height:  |  Size: 476 KiB

View file

@ -8,7 +8,7 @@
"x": 0, "x": 0,
"y": 77 "y": 77
}, },
"width": 163, "width": 158,
"height": 158, "height": 158,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -32,9 +32,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 63, "labelWidth": 58,
"labelHeight": 58, "labelHeight": 58,
"labelPosition": "OUTSIDE_BOTTOM_CENTER", "labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0, "zIndex": 0,
@ -44,7 +44,7 @@
"id": "bob", "id": "bob",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 267, "x": 228,
"y": 141 "y": 141
}, },
"width": 150, "width": 150,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
@ -83,7 +83,7 @@
"id": "db", "id": "db",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 584, "x": 448,
"y": 162 "y": 162
}, },
"width": 150, "width": 150,
@ -110,9 +110,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 23,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -122,7 +122,7 @@
"id": "queue", "id": "queue",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 901, "x": 668,
"y": 162 "y": 162
}, },
"width": 150, "width": 150,
@ -149,9 +149,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 49, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -161,10 +161,10 @@
"id": "service", "id": "service",
"type": "", "type": "",
"pos": { "pos": {
"x": 1192, "x": 888,
"y": 50 "y": 50
}, },
"width": 202, "width": 197,
"height": 238, "height": 238,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -188,9 +188,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 102, "labelWidth": 97,
"labelHeight": 138, "labelHeight": 138,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0, "zIndex": 0,
@ -224,11 +224,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 81.5, "x": 79,
"y": 418 "y": 418
}, },
{ {
"x": 342, "x": 303,
"y": 418 "y": 418
} }
], ],
@ -263,11 +263,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 548 "y": 548
}, },
{ {
"x": 1293, "x": 986.5,
"y": 548 "y": 548
} }
], ],
@ -302,11 +302,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 986.5,
"y": 678 "y": 678
}, },
{ {
"x": 659, "x": 523,
"y": 678 "y": 678
} }
], ],
@ -341,11 +341,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 523,
"y": 808 "y": 808
}, },
{ {
"x": 1293, "x": 986.5,
"y": 808 "y": 808
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 986.5,
"y": 938 "y": 938
}, },
{ {
"x": 342, "x": 303,
"y": 938 "y": 938
} }
], ],
@ -419,11 +419,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 1068 "y": 1068
}, },
{ {
"x": 81.5, "x": 79,
"y": 1068 "y": 1068
} }
], ],
@ -458,11 +458,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 81.5, "x": 79,
"y": 1198 "y": 1198
}, },
{ {
"x": 342, "x": 303,
"y": 1198 "y": 1198
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 1328 "y": 1328
}, },
{ {
"x": 976, "x": 743,
"y": 1328 "y": 1328
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 743,
"y": 1458 "y": 1458
}, },
{ {
"x": 342, "x": 303,
"y": 1458 "y": 1458
} }
], ],
@ -575,11 +575,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 1588 "y": 1588
}, },
{ {
"x": 81.5, "x": 79,
"y": 1588 "y": 1588
} }
], ],
@ -614,11 +614,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 81.5, "x": 79,
"y": 293 "y": 293
}, },
{ {
"x": 81.5, "x": 79,
"y": 1718 "y": 1718
} }
], ],
@ -653,11 +653,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 303,
"y": 293 "y": 293
}, },
{ {
"x": 342, "x": 303,
"y": 1718 "y": 1718
} }
], ],
@ -692,11 +692,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 523,
"y": 288 "y": 288
}, },
{ {
"x": 659, "x": 523,
"y": 1718 "y": 1718
} }
], ],
@ -731,11 +731,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 743,
"y": 288 "y": 288
}, },
{ {
"x": 976, "x": 743,
"y": 1718 "y": 1718
} }
], ],
@ -770,11 +770,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 986.5,
"y": 288 "y": 288
}, },
{ {
"x": 1293, "x": 986.5,
"y": 1718 "y": 1718
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 475 KiB

After

Width:  |  Height:  |  Size: 476 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -109,7 +109,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -148,7 +148,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -186,7 +186,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -225,9 +225,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -263,7 +263,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -297,15 +297,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 11,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -340,9 +340,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -378,7 +378,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -417,7 +417,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -455,7 +455,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -494,9 +494,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -532,9 +532,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -570,9 +570,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -608,9 +608,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -646,9 +646,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 477 KiB

After

Width:  |  Height:  |  Size: 478 KiB

View file

@ -32,7 +32,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -109,7 +109,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -148,7 +148,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -186,7 +186,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -225,9 +225,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -263,7 +263,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -297,15 +297,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 24, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 11,
"labelHeight": 36, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
}, },
@ -340,9 +340,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -378,7 +378,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -417,7 +417,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -455,7 +455,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -494,9 +494,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -532,9 +532,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -570,9 +570,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -608,9 +608,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2
@ -646,9 +646,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 2 "level": 2

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 477 KiB

After

Width:  |  Height:  |  Size: 478 KiB

View file

@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 144, "labelWidth": 144,
"labelHeight": 41, "labelHeight": 41,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 98, "labelWidth": 98,
"labelHeight": 41, "labelHeight": 41,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 101, "labelWidth": 101,
"labelHeight": 36, "labelHeight": 36,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 101, "labelWidth": 101,
"labelHeight": 36, "labelHeight": 36,
@ -266,7 +266,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -305,7 +305,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -344,7 +344,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -383,7 +383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -422,7 +422,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -461,7 +461,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -500,7 +500,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -539,7 +539,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -577,7 +577,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -616,7 +616,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -654,7 +654,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -693,9 +693,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -731,7 +731,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -765,15 +765,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 11,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -808,9 +808,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -846,7 +846,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -885,7 +885,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -923,7 +923,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -962,9 +962,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1000,9 +1000,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1038,9 +1038,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1076,9 +1076,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1114,9 +1114,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1152,7 +1152,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -1191,7 +1191,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1229,7 +1229,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -1268,7 +1268,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1306,7 +1306,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -1345,9 +1345,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1383,7 +1383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -1422,7 +1422,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1460,9 +1460,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 5 "level": 5
@ -1498,7 +1498,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -1537,7 +1537,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1575,7 +1575,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -1614,9 +1614,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1652,9 +1652,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1690,9 +1690,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1728,9 +1728,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1766,9 +1766,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1843,9 +1843,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1881,7 +1881,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -1919,7 +1919,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -1957,7 +1957,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -1995,7 +1995,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2033,9 +2033,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 6 "level": 6
@ -2071,7 +2071,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2109,7 +2109,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2147,7 +2147,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2185,9 +2185,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 7 "level": 7
@ -2223,7 +2223,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2261,7 +2261,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2299,7 +2299,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2337,7 +2337,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2375,7 +2375,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2413,9 +2413,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 29,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -2451,9 +2451,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 824 KiB

View file

@ -71,7 +71,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 144, "labelWidth": 144,
"labelHeight": 41, "labelHeight": 41,
@ -110,7 +110,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 98, "labelWidth": 98,
"labelHeight": 41, "labelHeight": 41,
@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 101, "labelWidth": 101,
"labelHeight": 36, "labelHeight": 36,
@ -188,7 +188,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 77, "labelWidth": 77,
"labelHeight": 41, "labelHeight": 41,
@ -227,7 +227,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 101, "labelWidth": 101,
"labelHeight": 36, "labelHeight": 36,
@ -266,7 +266,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -305,7 +305,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -344,7 +344,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -383,7 +383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -422,7 +422,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -461,7 +461,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -500,7 +500,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -539,7 +539,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -577,7 +577,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -616,7 +616,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -654,7 +654,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -693,9 +693,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -731,7 +731,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -765,15 +765,15 @@
"methods": null, "methods": null,
"columns": null, "columns": null,
"label": "", "label": "",
"fontSize": 20, "fontSize": 16,
"fontFamily": "DEFAULT", "fontFamily": "DEFAULT",
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 11,
"labelHeight": 31, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
}, },
@ -808,9 +808,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -846,7 +846,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -885,7 +885,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -923,7 +923,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -962,9 +962,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1000,9 +1000,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1038,9 +1038,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1076,9 +1076,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1114,9 +1114,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 3 "level": 3
@ -1152,7 +1152,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 48, "labelWidth": 48,
"labelHeight": 26, "labelHeight": 26,
@ -1191,7 +1191,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1229,7 +1229,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 100, "labelWidth": 100,
"labelHeight": 26, "labelHeight": 26,
@ -1268,7 +1268,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1306,7 +1306,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 35, "labelWidth": 35,
"labelHeight": 26, "labelHeight": 26,
@ -1345,9 +1345,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1383,7 +1383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 86, "labelWidth": 86,
"labelHeight": 26, "labelHeight": 26,
@ -1422,7 +1422,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1460,9 +1460,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 5 "level": 5
@ -1498,7 +1498,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
@ -1537,7 +1537,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
@ -1575,7 +1575,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 97, "labelWidth": 97,
"labelHeight": 26, "labelHeight": 26,
@ -1614,9 +1614,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1652,9 +1652,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1690,9 +1690,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1728,9 +1728,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1766,9 +1766,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 19,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1843,9 +1843,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -1881,7 +1881,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -1919,7 +1919,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -1957,7 +1957,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -1995,7 +1995,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2033,9 +2033,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 6 "level": 6
@ -2071,7 +2071,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2109,7 +2109,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2147,7 +2147,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2185,9 +2185,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 7 "level": 7
@ -2223,7 +2223,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2261,7 +2261,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2299,7 +2299,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
@ -2337,7 +2337,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2375,7 +2375,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
@ -2413,9 +2413,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 29,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4
@ -2451,9 +2451,9 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 3, "zIndex": 3,
"level": 4 "level": 4

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 824 KiB

View file

@ -149,7 +149,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 24, "labelWidth": 24,
"labelHeight": 41, "labelHeight": 41,
@ -305,7 +305,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 41, "labelHeight": 41,
@ -383,7 +383,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 41, "labelHeight": 41,
@ -461,7 +461,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 41, "labelHeight": 41,
@ -539,7 +539,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 41, "labelHeight": 41,
@ -656,7 +656,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 41, "labelHeight": 41,
@ -734,7 +734,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 25, "labelWidth": 25,
"labelHeight": 41, "labelHeight": 41,
@ -773,7 +773,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 26, "labelWidth": 26,
"labelHeight": 36, "labelHeight": 36,
@ -851,7 +851,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 26, "labelWidth": 26,
"labelHeight": 36, "labelHeight": 36,
@ -929,7 +929,7 @@
"language": "", "language": "",
"color": "#0A0F25", "color": "#0A0F25",
"italic": false, "italic": false,
"bold": true, "bold": false,
"underline": false, "underline": false,
"labelWidth": 26, "labelWidth": 26,
"labelHeight": 36, "labelHeight": 36,

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