fix bolding

This commit is contained in:
Alexander Wang 2022-12-05 10:46:06 -08:00
parent 361ae15140
commit e0d91d3c15
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE
109 changed files with 1453 additions and 1279 deletions

View file

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

View file

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

View file

@ -6,7 +6,7 @@ func (obj *Object) IsSequenceDiagram() bool {
return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
}
func (obj *Object) outerSequenceDiagram() *Object {
func (obj *Object) OuterSequenceDiagram() *Object {
for obj != nil {
obj = obj.Parent
if obj.IsSequenceDiagram() {
@ -19,7 +19,7 @@ func (obj *Object) outerSequenceDiagram() *Object {
// 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)
func (obj *Object) IsSequenceDiagramGroup() bool {
if obj.outerSequenceDiagram() == nil {
if obj.OuterSequenceDiagram() == nil {
return false
}
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
func (obj *Object) IsSequenceDiagramNote() bool {
if obj.outerSequenceDiagram() == nil {
if obj.OuterSequenceDiagram() == nil {
return false
}
return !obj.hasEdgeRef() && !obj.ContainsAnyEdge(obj.Graph.Edges) && len(obj.ChildrenArray) == 0

View file

@ -32,7 +32,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 46,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 46,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 24,
"labelHeight": 31,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
@ -342,7 +342,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 24,
"labelHeight": 31,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
@ -342,7 +342,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 36,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 36,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 150,
"labelHeight": 36,

View file

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

View file

@ -32,7 +32,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 77,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 77,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 34,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -305,7 +305,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 23,
"labelHeight": 41,
@ -511,7 +511,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
@ -639,7 +639,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 33,
"labelHeight": 41,
@ -951,7 +951,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 28,
"labelHeight": 41,
@ -1029,7 +1029,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 34,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
@ -305,7 +305,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 23,
"labelHeight": 41,
@ -511,7 +511,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
@ -639,7 +639,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 33,
"labelHeight": 41,
@ -951,7 +951,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 28,
"labelHeight": 41,
@ -1029,7 +1029,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 9,
"labelHeight": 41,
@ -383,7 +383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 36,
@ -578,7 +578,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
@ -695,7 +695,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 41,
@ -734,7 +734,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
@ -812,7 +812,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
@ -1085,7 +1085,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 9,
"labelHeight": 41,
@ -383,7 +383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 36,
@ -578,7 +578,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
@ -695,7 +695,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 41,
@ -734,7 +734,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
@ -812,7 +812,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
@ -1085,7 +1085,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 129,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 129,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 129,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 129,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 17,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 45,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 90,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 45,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 90,
"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,
"y": 108
},
"width": 153,
"width": 150,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -32,9 +32,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 53,
"labelWidth": 50,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -44,11 +44,11 @@
"id": "b",
"type": "oval",
"pos": {
"x": 223,
"y": 87
"x": 220,
"y": 90
},
"width": 150,
"height": 147,
"height": 144,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -71,9 +71,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 47,
"labelWidth": 44,
"labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -83,7 +83,7 @@
"id": "c",
"type": "class",
"pos": {
"x": 443,
"x": 440,
"y": 50
},
"width": 241,
@ -121,9 +121,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 73,
"labelWidth": 71,
"labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -133,10 +133,10 @@
"id": "d",
"type": "cloud",
"pos": {
"x": 754,
"x": 751,
"y": 108
},
"width": 179,
"width": 174,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -160,9 +160,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 79,
"labelWidth": 74,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -172,7 +172,7 @@
"id": "e",
"type": "code",
"pos": {
"x": 1003,
"x": 995,
"y": 164
},
"width": 196,
@ -199,7 +199,7 @@
"language": "golang",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 196,
"labelHeight": 70,
@ -211,7 +211,7 @@
"id": "f",
"type": "cylinder",
"pos": {
"x": 1269,
"x": 1261,
"y": 108
},
"width": 150,
@ -238,9 +238,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 26,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -250,7 +250,7 @@
"id": "g",
"type": "diamond",
"pos": {
"x": 1489,
"x": 1481,
"y": 108
},
"width": 150,
@ -277,9 +277,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 27,
"labelWidth": 25,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -289,7 +289,7 @@
"id": "h",
"type": "document",
"pos": {
"x": 1709,
"x": 1701,
"y": 108
},
"width": 150,
@ -316,9 +316,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 38,
"labelWidth": 37,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -328,10 +328,10 @@
"id": "i",
"type": "hexagon",
"pos": {
"x": 1929,
"x": 1921,
"y": 108
},
"width": 182,
"width": 177,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -355,9 +355,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 82,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -367,7 +367,7 @@
"id": "j",
"type": "image",
"pos": {
"x": 2181,
"x": 2168,
"y": 85
},
"width": 150,
@ -405,9 +405,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 106,
"labelWidth": 101,
"labelHeight": 26,
"labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0,
@ -417,7 +417,7 @@
"id": "k",
"type": "oval",
"pos": {
"x": 2401,
"x": 2388,
"y": 108
},
"width": 150,
@ -444,9 +444,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 38,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -456,7 +456,7 @@
"id": "l",
"type": "package",
"pos": {
"x": 2621,
"x": 2608,
"y": 108
},
"width": 150,
@ -483,9 +483,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 39,
"labelWidth": 37,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -495,10 +495,10 @@
"id": "m",
"type": "page",
"pos": {
"x": 2841,
"x": 2828,
"y": 108
},
"width": 175,
"width": 173,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -522,9 +522,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 75,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -534,10 +534,10 @@
"id": "n",
"type": "parallelogram",
"pos": {
"x": 3086,
"x": 3071,
"y": 92
},
"width": 183,
"width": 177,
"height": 142,
"opacity": 1,
"strokeDash": 0,
@ -561,9 +561,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 83,
"labelWidth": 77,
"labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -573,10 +573,10 @@
"id": "o",
"type": "person",
"pos": {
"x": 3339,
"x": 3318,
"y": 55
},
"width": 154,
"width": 151,
"height": 142,
"opacity": 1,
"strokeDash": 0,
@ -600,9 +600,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 54,
"labelWidth": 51,
"labelHeight": 42,
"labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0,
@ -612,10 +612,10 @@
"id": "p",
"type": "queue",
"pos": {
"x": 3563,
"x": 3539,
"y": 108
},
"width": 161,
"width": 159,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -639,9 +639,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 61,
"labelWidth": 59,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -651,11 +651,11 @@
"id": "q",
"type": "rectangle",
"pos": {
"x": 3794,
"y": 69
"x": 3768,
"y": 71
},
"width": 165,
"height": 165,
"width": 163,
"height": 163,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -678,9 +678,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 65,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -690,10 +690,10 @@
"id": "r",
"type": "step",
"pos": {
"x": 4029,
"x": 4001,
"y": 108
},
"width": 213,
"width": 207,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -717,9 +717,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 113,
"labelWidth": 107,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -729,7 +729,7 @@
"id": "s",
"type": "stored_data",
"pos": {
"x": 4312,
"x": 4278,
"y": 108
},
"width": 150,
@ -756,9 +756,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 37,
"labelWidth": 35,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -768,7 +768,7 @@
"id": "t",
"type": "sql_table",
"pos": {
"x": 4532,
"x": 4498,
"y": 126
},
"width": 210,
@ -808,9 +808,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 61,
"labelWidth": 58,
"labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -844,11 +844,11 @@
"labelPercentage": 0,
"route": [
{
"x": 76.5,
"x": 75,
"y": 364
},
{
"x": 298,
"x": 295,
"y": 364
}
],
@ -883,11 +883,11 @@
"labelPercentage": 0,
"route": [
{
"x": 298,
"x": 295,
"y": 494
},
{
"x": 563.5,
"x": 560.5,
"y": 494
}
],
@ -922,11 +922,11 @@
"labelPercentage": 0,
"route": [
{
"x": 563.5,
"x": 560.5,
"y": 624
},
{
"x": 843.5,
"x": 838,
"y": 624
}
],
@ -961,11 +961,11 @@
"labelPercentage": 0,
"route": [
{
"x": 843.5,
"x": 838,
"y": 754
},
{
"x": 1101,
"x": 1093,
"y": 754
}
],
@ -1000,11 +1000,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1101,
"x": 1093,
"y": 884
},
{
"x": 1344,
"x": 1336,
"y": 884
}
],
@ -1039,11 +1039,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1344,
"x": 1336,
"y": 1014
},
{
"x": 1564,
"x": 1556,
"y": 1014
}
],
@ -1078,11 +1078,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1564,
"x": 1556,
"y": 1144
},
{
"x": 1784,
"x": 1776,
"y": 1144
}
],
@ -1117,11 +1117,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1784,
"x": 1776,
"y": 1274
},
{
"x": 2020,
"x": 2009.5,
"y": 1274
}
],
@ -1156,11 +1156,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2020,
"x": 2009.5,
"y": 1404
},
{
"x": 2256,
"x": 2243,
"y": 1404
}
],
@ -1195,11 +1195,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2256,
"x": 2243,
"y": 1534
},
{
"x": 2476,
"x": 2463,
"y": 1534
}
],
@ -1234,11 +1234,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2476,
"x": 2463,
"y": 1664
},
{
"x": 2696,
"x": 2683,
"y": 1664
}
],
@ -1273,11 +1273,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2696,
"x": 2683,
"y": 1794
},
{
"x": 2928.5,
"x": 2914.5,
"y": 1794
}
],
@ -1312,11 +1312,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2928.5,
"x": 2914.5,
"y": 1924
},
{
"x": 3177.5,
"x": 3159.5,
"y": 1924
}
],
@ -1351,11 +1351,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3177.5,
"x": 3159.5,
"y": 2054
},
{
"x": 3416,
"x": 3393.5,
"y": 2054
}
],
@ -1390,11 +1390,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3416,
"x": 3393.5,
"y": 2184
},
{
"x": 3643.5,
"x": 3618.5,
"y": 2184
}
],
@ -1429,11 +1429,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3643.5,
"x": 3618.5,
"y": 2314
},
{
"x": 3876.5,
"x": 3849.5,
"y": 2314
}
],
@ -1468,11 +1468,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3876.5,
"x": 3849.5,
"y": 2444
},
{
"x": 4135.5,
"x": 4104.5,
"y": 2444
}
],
@ -1507,11 +1507,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4135.5,
"x": 4104.5,
"y": 2574
},
{
"x": 4387,
"x": 4353,
"y": 2574
}
],
@ -1546,11 +1546,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4387,
"x": 4353,
"y": 2704
},
{
"x": 4637,
"x": 4603,
"y": 2704
}
],
@ -1585,11 +1585,11 @@
"labelPercentage": 0,
"route": [
{
"x": 76.5,
"x": 75,
"y": 234
},
{
"x": 76.5,
"x": 75,
"y": 2834
}
],
@ -1624,11 +1624,11 @@
"labelPercentage": 0,
"route": [
{
"x": 298,
"x": 295,
"y": 234
},
{
"x": 298,
"x": 295,
"y": 2834
}
],
@ -1663,11 +1663,11 @@
"labelPercentage": 0,
"route": [
{
"x": 563.5,
"x": 560.5,
"y": 234
},
{
"x": 563.5,
"x": 560.5,
"y": 2834
}
],
@ -1702,11 +1702,11 @@
"labelPercentage": 0,
"route": [
{
"x": 843.5,
"x": 838,
"y": 234
},
{
"x": 843.5,
"x": 838,
"y": 2834
}
],
@ -1741,11 +1741,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1101,
"x": 1093,
"y": 234
},
{
"x": 1101,
"x": 1093,
"y": 2834
}
],
@ -1780,11 +1780,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1344,
"x": 1336,
"y": 234
},
{
"x": 1344,
"x": 1336,
"y": 2834
}
],
@ -1819,11 +1819,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1564,
"x": 1556,
"y": 234
},
{
"x": 1564,
"x": 1556,
"y": 2834
}
],
@ -1858,11 +1858,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1784,
"x": 1776,
"y": 234
},
{
"x": 1784,
"x": 1776,
"y": 2834
}
],
@ -1897,11 +1897,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2020,
"x": 2009.5,
"y": 234
},
{
"x": 2020,
"x": 2009.5,
"y": 2834
}
],
@ -1936,11 +1936,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2256,
"x": 2243,
"y": 239
},
{
"x": 2256,
"x": 2243,
"y": 2834
}
],
@ -1975,11 +1975,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2476,
"x": 2463,
"y": 234
},
{
"x": 2476,
"x": 2463,
"y": 2834
}
],
@ -2014,11 +2014,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2696,
"x": 2683,
"y": 234
},
{
"x": 2696,
"x": 2683,
"y": 2834
}
],
@ -2053,11 +2053,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2928.5,
"x": 2914.5,
"y": 234
},
{
"x": 2928.5,
"x": 2914.5,
"y": 2834
}
],
@ -2092,11 +2092,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3177.5,
"x": 3159.5,
"y": 234
},
{
"x": 3177.5,
"x": 3159.5,
"y": 2834
}
],
@ -2131,11 +2131,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3416,
"x": 3393.5,
"y": 239
},
{
"x": 3416,
"x": 3393.5,
"y": 2834
}
],
@ -2170,11 +2170,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3643.5,
"x": 3618.5,
"y": 234
},
{
"x": 3643.5,
"x": 3618.5,
"y": 2834
}
],
@ -2209,11 +2209,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3876.5,
"x": 3849.5,
"y": 234
},
{
"x": 3876.5,
"x": 3849.5,
"y": 2834
}
],
@ -2248,11 +2248,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4135.5,
"x": 4104.5,
"y": 234
},
{
"x": 4135.5,
"x": 4104.5,
"y": 2834
}
],
@ -2287,11 +2287,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4387,
"x": 4353,
"y": 234
},
{
"x": 4387,
"x": 4353,
"y": 2834
}
],
@ -2326,11 +2326,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4637,
"x": 4603,
"y": 234
},
{
"x": 4637,
"x": 4603,
"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,
"y": 108
},
"width": 153,
"width": 150,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -32,9 +32,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 53,
"labelWidth": 50,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -44,11 +44,11 @@
"id": "b",
"type": "oval",
"pos": {
"x": 223,
"y": 87
"x": 220,
"y": 90
},
"width": 150,
"height": 147,
"height": 144,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -71,9 +71,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 47,
"labelWidth": 44,
"labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -83,7 +83,7 @@
"id": "c",
"type": "class",
"pos": {
"x": 443,
"x": 440,
"y": 50
},
"width": 241,
@ -121,9 +121,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 73,
"labelWidth": 71,
"labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -133,10 +133,10 @@
"id": "d",
"type": "cloud",
"pos": {
"x": 754,
"x": 751,
"y": 108
},
"width": 179,
"width": 174,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -160,9 +160,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 79,
"labelWidth": 74,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -172,7 +172,7 @@
"id": "e",
"type": "code",
"pos": {
"x": 1003,
"x": 995,
"y": 164
},
"width": 196,
@ -199,7 +199,7 @@
"language": "golang",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 196,
"labelHeight": 70,
@ -211,7 +211,7 @@
"id": "f",
"type": "cylinder",
"pos": {
"x": 1269,
"x": 1261,
"y": 108
},
"width": 150,
@ -238,9 +238,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 26,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -250,7 +250,7 @@
"id": "g",
"type": "diamond",
"pos": {
"x": 1489,
"x": 1481,
"y": 108
},
"width": 150,
@ -277,9 +277,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 27,
"labelWidth": 25,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -289,7 +289,7 @@
"id": "h",
"type": "document",
"pos": {
"x": 1709,
"x": 1701,
"y": 108
},
"width": 150,
@ -316,9 +316,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 38,
"labelWidth": 37,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -328,10 +328,10 @@
"id": "i",
"type": "hexagon",
"pos": {
"x": 1929,
"x": 1921,
"y": 108
},
"width": 182,
"width": 177,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -355,9 +355,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 82,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -367,7 +367,7 @@
"id": "j",
"type": "image",
"pos": {
"x": 2181,
"x": 2168,
"y": 85
},
"width": 150,
@ -405,9 +405,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 106,
"labelWidth": 101,
"labelHeight": 26,
"labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0,
@ -417,7 +417,7 @@
"id": "k",
"type": "oval",
"pos": {
"x": 2401,
"x": 2388,
"y": 108
},
"width": 150,
@ -444,9 +444,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 38,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -456,7 +456,7 @@
"id": "l",
"type": "package",
"pos": {
"x": 2621,
"x": 2608,
"y": 108
},
"width": 150,
@ -483,9 +483,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 39,
"labelWidth": 37,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -495,10 +495,10 @@
"id": "m",
"type": "page",
"pos": {
"x": 2841,
"x": 2828,
"y": 108
},
"width": 175,
"width": 173,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -522,9 +522,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 75,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -534,10 +534,10 @@
"id": "n",
"type": "parallelogram",
"pos": {
"x": 3086,
"x": 3071,
"y": 92
},
"width": 183,
"width": 177,
"height": 142,
"opacity": 1,
"strokeDash": 0,
@ -561,9 +561,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 83,
"labelWidth": 77,
"labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -573,10 +573,10 @@
"id": "o",
"type": "person",
"pos": {
"x": 3339,
"x": 3318,
"y": 55
},
"width": 154,
"width": 151,
"height": 142,
"opacity": 1,
"strokeDash": 0,
@ -600,9 +600,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 54,
"labelWidth": 51,
"labelHeight": 42,
"labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0,
@ -612,10 +612,10 @@
"id": "p",
"type": "queue",
"pos": {
"x": 3563,
"x": 3539,
"y": 108
},
"width": 161,
"width": 159,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -639,9 +639,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 61,
"labelWidth": 59,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -651,11 +651,11 @@
"id": "q",
"type": "rectangle",
"pos": {
"x": 3794,
"y": 69
"x": 3768,
"y": 71
},
"width": 165,
"height": 165,
"width": 163,
"height": 163,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -678,9 +678,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 65,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -690,10 +690,10 @@
"id": "r",
"type": "step",
"pos": {
"x": 4029,
"x": 4001,
"y": 108
},
"width": 213,
"width": 207,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -717,9 +717,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 113,
"labelWidth": 107,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -729,7 +729,7 @@
"id": "s",
"type": "stored_data",
"pos": {
"x": 4312,
"x": 4278,
"y": 108
},
"width": 150,
@ -756,9 +756,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 37,
"labelWidth": 35,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -768,7 +768,7 @@
"id": "t",
"type": "sql_table",
"pos": {
"x": 4532,
"x": 4498,
"y": 126
},
"width": 210,
@ -808,9 +808,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 61,
"labelWidth": 58,
"labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -844,11 +844,11 @@
"labelPercentage": 0,
"route": [
{
"x": 76.5,
"x": 75,
"y": 364
},
{
"x": 298,
"x": 295,
"y": 364
}
],
@ -883,11 +883,11 @@
"labelPercentage": 0,
"route": [
{
"x": 298,
"x": 295,
"y": 494
},
{
"x": 563.5,
"x": 560.5,
"y": 494
}
],
@ -922,11 +922,11 @@
"labelPercentage": 0,
"route": [
{
"x": 563.5,
"x": 560.5,
"y": 624
},
{
"x": 843.5,
"x": 838,
"y": 624
}
],
@ -961,11 +961,11 @@
"labelPercentage": 0,
"route": [
{
"x": 843.5,
"x": 838,
"y": 754
},
{
"x": 1101,
"x": 1093,
"y": 754
}
],
@ -1000,11 +1000,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1101,
"x": 1093,
"y": 884
},
{
"x": 1344,
"x": 1336,
"y": 884
}
],
@ -1039,11 +1039,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1344,
"x": 1336,
"y": 1014
},
{
"x": 1564,
"x": 1556,
"y": 1014
}
],
@ -1078,11 +1078,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1564,
"x": 1556,
"y": 1144
},
{
"x": 1784,
"x": 1776,
"y": 1144
}
],
@ -1117,11 +1117,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1784,
"x": 1776,
"y": 1274
},
{
"x": 2020,
"x": 2009.5,
"y": 1274
}
],
@ -1156,11 +1156,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2020,
"x": 2009.5,
"y": 1404
},
{
"x": 2256,
"x": 2243,
"y": 1404
}
],
@ -1195,11 +1195,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2256,
"x": 2243,
"y": 1534
},
{
"x": 2476,
"x": 2463,
"y": 1534
}
],
@ -1234,11 +1234,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2476,
"x": 2463,
"y": 1664
},
{
"x": 2696,
"x": 2683,
"y": 1664
}
],
@ -1273,11 +1273,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2696,
"x": 2683,
"y": 1794
},
{
"x": 2928.5,
"x": 2914.5,
"y": 1794
}
],
@ -1312,11 +1312,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2928.5,
"x": 2914.5,
"y": 1924
},
{
"x": 3177.5,
"x": 3159.5,
"y": 1924
}
],
@ -1351,11 +1351,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3177.5,
"x": 3159.5,
"y": 2054
},
{
"x": 3416,
"x": 3393.5,
"y": 2054
}
],
@ -1390,11 +1390,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3416,
"x": 3393.5,
"y": 2184
},
{
"x": 3643.5,
"x": 3618.5,
"y": 2184
}
],
@ -1429,11 +1429,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3643.5,
"x": 3618.5,
"y": 2314
},
{
"x": 3876.5,
"x": 3849.5,
"y": 2314
}
],
@ -1468,11 +1468,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3876.5,
"x": 3849.5,
"y": 2444
},
{
"x": 4135.5,
"x": 4104.5,
"y": 2444
}
],
@ -1507,11 +1507,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4135.5,
"x": 4104.5,
"y": 2574
},
{
"x": 4387,
"x": 4353,
"y": 2574
}
],
@ -1546,11 +1546,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4387,
"x": 4353,
"y": 2704
},
{
"x": 4637,
"x": 4603,
"y": 2704
}
],
@ -1585,11 +1585,11 @@
"labelPercentage": 0,
"route": [
{
"x": 76.5,
"x": 75,
"y": 234
},
{
"x": 76.5,
"x": 75,
"y": 2834
}
],
@ -1624,11 +1624,11 @@
"labelPercentage": 0,
"route": [
{
"x": 298,
"x": 295,
"y": 234
},
{
"x": 298,
"x": 295,
"y": 2834
}
],
@ -1663,11 +1663,11 @@
"labelPercentage": 0,
"route": [
{
"x": 563.5,
"x": 560.5,
"y": 234
},
{
"x": 563.5,
"x": 560.5,
"y": 2834
}
],
@ -1702,11 +1702,11 @@
"labelPercentage": 0,
"route": [
{
"x": 843.5,
"x": 838,
"y": 234
},
{
"x": 843.5,
"x": 838,
"y": 2834
}
],
@ -1741,11 +1741,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1101,
"x": 1093,
"y": 234
},
{
"x": 1101,
"x": 1093,
"y": 2834
}
],
@ -1780,11 +1780,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1344,
"x": 1336,
"y": 234
},
{
"x": 1344,
"x": 1336,
"y": 2834
}
],
@ -1819,11 +1819,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1564,
"x": 1556,
"y": 234
},
{
"x": 1564,
"x": 1556,
"y": 2834
}
],
@ -1858,11 +1858,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1784,
"x": 1776,
"y": 234
},
{
"x": 1784,
"x": 1776,
"y": 2834
}
],
@ -1897,11 +1897,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2020,
"x": 2009.5,
"y": 234
},
{
"x": 2020,
"x": 2009.5,
"y": 2834
}
],
@ -1936,11 +1936,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2256,
"x": 2243,
"y": 239
},
{
"x": 2256,
"x": 2243,
"y": 2834
}
],
@ -1975,11 +1975,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2476,
"x": 2463,
"y": 234
},
{
"x": 2476,
"x": 2463,
"y": 2834
}
],
@ -2014,11 +2014,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2696,
"x": 2683,
"y": 234
},
{
"x": 2696,
"x": 2683,
"y": 2834
}
],
@ -2053,11 +2053,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2928.5,
"x": 2914.5,
"y": 234
},
{
"x": 2928.5,
"x": 2914.5,
"y": 2834
}
],
@ -2092,11 +2092,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3177.5,
"x": 3159.5,
"y": 234
},
{
"x": 3177.5,
"x": 3159.5,
"y": 2834
}
],
@ -2131,11 +2131,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3416,
"x": 3393.5,
"y": 239
},
{
"x": 3416,
"x": 3393.5,
"y": 2834
}
],
@ -2170,11 +2170,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3643.5,
"x": 3618.5,
"y": 234
},
{
"x": 3643.5,
"x": 3618.5,
"y": 2834
}
],
@ -2209,11 +2209,11 @@
"labelPercentage": 0,
"route": [
{
"x": 3876.5,
"x": 3849.5,
"y": 234
},
{
"x": 3876.5,
"x": 3849.5,
"y": 2834
}
],
@ -2248,11 +2248,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4135.5,
"x": 4104.5,
"y": 234
},
{
"x": 4135.5,
"x": 4104.5,
"y": 2834
}
],
@ -2287,11 +2287,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4387,
"x": 4353,
"y": 234
},
{
"x": 4387,
"x": 4353,
"y": 2834
}
],
@ -2326,11 +2326,11 @@
"labelPercentage": 0,
"route": [
{
"x": 4637,
"x": 4603,
"y": 234
},
{
"x": 4637,
"x": 4603,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -188,9 +188,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelWidth": 30,
"labelHeight": 26,
"zIndex": 1,
"level": 1
@ -226,7 +226,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 57,
"labelHeight": 26,
@ -264,9 +264,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 82,
"labelWidth": 78,
"labelHeight": 26,
"zIndex": 1,
"level": 2
@ -278,7 +278,7 @@
"x": 245,
"y": 1306
},
"width": 443,
"width": 438,
"height": 466,
"opacity": 1,
"strokeDash": 0,
@ -302,9 +302,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelWidth": 58,
"labelHeight": 26,
"zIndex": 1,
"level": 1
@ -313,10 +313,10 @@
"id": "c.what would arnold say",
"type": "rectangle",
"pos": {
"x": 382,
"x": 386,
"y": 1476
},
"width": 266,
"width": 257,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -340,9 +340,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 166,
"labelWidth": 157,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -352,10 +352,10 @@
"id": "choo",
"type": "",
"pos": {
"x": 601,
"x": 603,
"y": 1822
},
"width": 258,
"width": 254,
"height": 216,
"opacity": 1,
"strokeDash": 0,
@ -379,9 +379,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 40,
"labelWidth": 38,
"labelHeight": 26,
"zIndex": 1,
"level": 1
@ -390,10 +390,10 @@
"id": "d.this note",
"type": "rectangle",
"pos": {
"x": 651,
"x": 653,
"y": 1862
},
"width": 168,
"width": 164,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -417,9 +417,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 68,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -451,15 +451,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 25,
"labelHeight": 36,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -494,9 +494,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -532,9 +532,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3

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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -188,9 +188,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelWidth": 30,
"labelHeight": 26,
"zIndex": 1,
"level": 1
@ -226,7 +226,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 57,
"labelHeight": 26,
@ -264,9 +264,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 82,
"labelWidth": 78,
"labelHeight": 26,
"zIndex": 1,
"level": 2
@ -278,7 +278,7 @@
"x": 245,
"y": 1306
},
"width": 443,
"width": 438,
"height": 466,
"opacity": 1,
"strokeDash": 0,
@ -302,9 +302,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelWidth": 58,
"labelHeight": 26,
"zIndex": 1,
"level": 1
@ -313,10 +313,10 @@
"id": "c.what would arnold say",
"type": "rectangle",
"pos": {
"x": 382,
"x": 386,
"y": 1476
},
"width": 266,
"width": 257,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -340,9 +340,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 166,
"labelWidth": 157,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -352,10 +352,10 @@
"id": "choo",
"type": "",
"pos": {
"x": 601,
"x": 603,
"y": 1822
},
"width": 258,
"width": 254,
"height": 216,
"opacity": 1,
"strokeDash": 0,
@ -379,9 +379,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 40,
"labelWidth": 38,
"labelHeight": 26,
"zIndex": 1,
"level": 1
@ -390,10 +390,10 @@
"id": "d.this note",
"type": "rectangle",
"pos": {
"x": 651,
"x": 653,
"y": 1862
},
"width": 168,
"width": 164,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -417,9 +417,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 68,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -451,15 +451,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 25,
"labelHeight": 36,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -494,9 +494,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -532,9 +532,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3

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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -71,9 +71,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"labelWidth": 29,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -109,7 +109,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -148,9 +148,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -186,7 +186,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -220,15 +220,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -263,7 +263,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -301,7 +301,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -335,15 +335,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -373,15 +373,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 31,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -416,9 +416,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -454,7 +454,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -488,15 +488,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -526,15 +526,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 31,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -569,7 +569,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -607,9 +607,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 5
@ -645,7 +645,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -679,15 +679,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -717,15 +717,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 31,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -760,7 +760,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -798,7 +798,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -836,7 +836,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -874,9 +874,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -71,9 +71,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"labelWidth": 29,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -109,7 +109,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -148,9 +148,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -186,7 +186,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -220,15 +220,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -263,7 +263,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -301,7 +301,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -335,15 +335,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -373,15 +373,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 31,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -416,9 +416,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -454,7 +454,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -488,15 +488,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -526,15 +526,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 31,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -569,7 +569,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -607,9 +607,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 5
@ -645,7 +645,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -679,15 +679,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -717,15 +717,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 31,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -760,7 +760,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -798,7 +798,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -836,7 +836,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -874,9 +874,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -110,9 +110,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -161,10 +161,10 @@
"id": "a.explanation",
"type": "rectangle",
"pos": {
"x": -20,
"x": -17,
"y": 436
},
"width": 190,
"width": 184,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -188,9 +188,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 90,
"labelWidth": 84,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -200,10 +200,10 @@
"id": "a.another explanation",
"type": "rectangle",
"pos": {
"x": -50,
"x": -45,
"y": 692
},
"width": 250,
"width": 241,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -227,9 +227,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 150,
"labelWidth": 141,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -239,10 +239,10 @@
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
"type": "rectangle",
"pos": {
"x": 98,
"x": 106,
"y": 1078
},
"width": 393,
"width": 378,
"height": 142,
"opacity": 1,
"strokeDash": 0,
@ -266,9 +266,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 293,
"labelWidth": 278,
"labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -278,10 +278,10 @@
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
"type": "rectangle",
"pos": {
"x": 464,
"x": 477,
"y": 1480
},
"width": 541,
"width": 516,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -305,9 +305,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 441,
"labelWidth": 416,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,

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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -110,9 +110,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -161,10 +161,10 @@
"id": "a.explanation",
"type": "rectangle",
"pos": {
"x": -20,
"x": -17,
"y": 436
},
"width": 190,
"width": 184,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -188,9 +188,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 90,
"labelWidth": 84,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -200,10 +200,10 @@
"id": "a.another explanation",
"type": "rectangle",
"pos": {
"x": -50,
"x": -45,
"y": 692
},
"width": 250,
"width": 241,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -227,9 +227,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 150,
"labelWidth": 141,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -239,10 +239,10 @@
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
"type": "rectangle",
"pos": {
"x": 98,
"x": 106,
"y": 1078
},
"width": 393,
"width": 378,
"height": 142,
"opacity": 1,
"strokeDash": 0,
@ -266,9 +266,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 293,
"labelWidth": 278,
"labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -278,10 +278,10 @@
"id": "d.The earth is like a tiny grain of sand, only much, much heavier",
"type": "rectangle",
"pos": {
"x": 464,
"x": 477,
"y": 1480
},
"width": 541,
"width": 516,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -305,9 +305,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 441,
"labelWidth": 416,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,

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,
"y": 0
},
"width": 2193,
"width": 2174,
"height": 2288,
"opacity": 1,
"strokeDash": 0,
@ -32,7 +32,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 242,
"labelHeight": 41,
@ -71,9 +71,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 27,
"labelWidth": 25,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -110,9 +110,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 45,
"labelWidth": 43,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 82,
"labelHeight": 26,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 80,
"labelHeight": 26,
@ -242,7 +242,7 @@
"x": 1177,
"y": 86
},
"width": 176,
"width": 173,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -266,9 +266,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 76,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -278,10 +278,10 @@
"id": "How this is rendered.d2renderer",
"type": "",
"pos": {
"x": 1423,
"x": 1420,
"y": 86
},
"width": 186,
"width": 181,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -305,9 +305,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelWidth": 81,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -317,10 +317,10 @@
"id": "How this is rendered.d2compiler.measurements also take place",
"type": "rectangle",
"pos": {
"x": 372,
"x": 377,
"y": 732
},
"width": 318,
"width": 307,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -344,9 +344,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 218,
"labelWidth": 207,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -359,7 +359,7 @@
"x": 730,
"y": 1338
},
"width": 1408,
"width": 1391,
"height": 80,
"opacity": 1,
"strokeDash": 0,
@ -383,9 +383,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 195,
"labelWidth": 185,
"labelHeight": 26,
"zIndex": 1,
"level": 2
@ -421,9 +421,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelWidth": 47,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -432,10 +432,10 @@
"id": "How this is rendered.d2sequencelayout",
"type": "",
"pos": {
"x": 1679,
"x": 1671,
"y": 86
},
"width": 235,
"width": 229,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -459,9 +459,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 135,
"labelWidth": 129,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -471,10 +471,10 @@
"id": "How this is rendered.d2dagrelayout",
"type": "",
"pos": {
"x": 1984,
"x": 1970,
"y": 86
},
"width": 209,
"width": 204,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -498,9 +498,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 109,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -537,9 +537,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 52,
"labelWidth": 50,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -771,7 +771,7 @@
"y": 1248
},
{
"x": 1796.5,
"x": 1785.5,
"y": 1248
}
],
@ -810,7 +810,7 @@
"y": 1378
},
{
"x": 2088.5,
"x": 2072,
"y": 1378
}
],
@ -849,7 +849,7 @@
"y": 1508
},
{
"x": 1796.5,
"x": 1785.5,
"y": 1508
}
],
@ -966,7 +966,7 @@
"y": 1898
},
{
"x": 1265,
"x": 1263.5,
"y": 1898
}
],
@ -1005,7 +1005,7 @@
"y": 2028
},
{
"x": 1516,
"x": 1510.5,
"y": 2028
}
],
@ -1274,11 +1274,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1265,
"x": 1263.5,
"y": 212
},
{
"x": 1265,
"x": 1263.5,
"y": 2288
}
],
@ -1313,11 +1313,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1516,
"x": 1510.5,
"y": 212
},
{
"x": 1516,
"x": 1510.5,
"y": 2288
}
],
@ -1352,11 +1352,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1796.5,
"x": 1785.5,
"y": 212
},
{
"x": 1796.5,
"x": 1785.5,
"y": 2288
}
],
@ -1391,11 +1391,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2088.5,
"x": 2072,
"y": 212
},
{
"x": 2088.5,
"x": 2072,
"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,
"y": 12
},
"width": 2193,
"width": 2174,
"height": 2288,
"opacity": 1,
"strokeDash": 0,
@ -32,7 +32,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 242,
"labelHeight": 41,
@ -71,9 +71,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 27,
"labelWidth": 25,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -110,9 +110,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 45,
"labelWidth": 43,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 82,
"labelHeight": 26,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 80,
"labelHeight": 26,
@ -242,7 +242,7 @@
"x": 1189,
"y": 98
},
"width": 176,
"width": 173,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -266,9 +266,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 76,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -278,10 +278,10 @@
"id": "How this is rendered.d2renderer",
"type": "",
"pos": {
"x": 1435,
"x": 1432,
"y": 98
},
"width": 186,
"width": 181,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -305,9 +305,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelWidth": 81,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -317,10 +317,10 @@
"id": "How this is rendered.d2compiler.measurements also take place",
"type": "rectangle",
"pos": {
"x": 372,
"x": 377,
"y": 732
},
"width": 318,
"width": 307,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -344,9 +344,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 218,
"labelWidth": 207,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 5,
@ -359,7 +359,7 @@
"x": 730,
"y": 1338
},
"width": 1408,
"width": 1391,
"height": 80,
"opacity": 1,
"strokeDash": 0,
@ -383,9 +383,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 195,
"labelWidth": 185,
"labelHeight": 26,
"zIndex": 1,
"level": 2
@ -421,9 +421,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelWidth": 47,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -432,10 +432,10 @@
"id": "How this is rendered.d2sequencelayout",
"type": "",
"pos": {
"x": 1691,
"x": 1683,
"y": 98
},
"width": 235,
"width": 229,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -459,9 +459,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 135,
"labelWidth": 129,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -471,10 +471,10 @@
"id": "How this is rendered.d2dagrelayout",
"type": "",
"pos": {
"x": 1996,
"x": 1982,
"y": 98
},
"width": 209,
"width": 204,
"height": 126,
"opacity": 1,
"strokeDash": 0,
@ -498,9 +498,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 109,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -537,9 +537,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 52,
"labelWidth": 50,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -771,7 +771,7 @@
"y": 1260
},
{
"x": 1808.5,
"x": 1797.5,
"y": 1260
}
],
@ -810,7 +810,7 @@
"y": 1390
},
{
"x": 2100.5,
"x": 2084,
"y": 1390
}
],
@ -849,7 +849,7 @@
"y": 1520
},
{
"x": 1808.5,
"x": 1797.5,
"y": 1520
}
],
@ -966,7 +966,7 @@
"y": 1910
},
{
"x": 1277,
"x": 1275.5,
"y": 1910
}
],
@ -1005,7 +1005,7 @@
"y": 2040
},
{
"x": 1528,
"x": 1522.5,
"y": 2040
}
],
@ -1274,11 +1274,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1277,
"x": 1275.5,
"y": 224
},
{
"x": 1277,
"x": 1275.5,
"y": 2300
}
],
@ -1313,11 +1313,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1528,
"x": 1522.5,
"y": 224
},
{
"x": 1528,
"x": 1522.5,
"y": 2300
}
],
@ -1352,11 +1352,11 @@
"labelPercentage": 0,
"route": [
{
"x": 1808.5,
"x": 1797.5,
"y": 224
},
{
"x": 1808.5,
"x": 1797.5,
"y": 2300
}
],
@ -1391,11 +1391,11 @@
"labelPercentage": 0,
"route": [
{
"x": 2100.5,
"x": 2084,
"y": 224
},
{
"x": 2100.5,
"x": 2084,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -105,15 +105,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -148,7 +148,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -181,15 +181,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -224,7 +224,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -262,7 +262,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -105,15 +105,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -148,7 +148,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -181,15 +181,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -224,7 +224,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -262,7 +262,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"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,
"y": 77
},
"width": 163,
"width": 158,
"height": 158,
"opacity": 1,
"strokeDash": 0,
@ -32,9 +32,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 63,
"labelWidth": 58,
"labelHeight": 58,
"labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0,
@ -44,7 +44,7 @@
"id": "bob",
"type": "person",
"pos": {
"x": 233,
"x": 228,
"y": 141
},
"width": 150,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
@ -83,7 +83,7 @@
"id": "db",
"type": "cylinder",
"pos": {
"x": 453,
"x": 448,
"y": 162
},
"width": 150,
@ -110,9 +110,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 24,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -122,7 +122,7 @@
"id": "queue",
"type": "queue",
"pos": {
"x": 673,
"x": 668,
"y": 162
},
"width": 150,
@ -149,9 +149,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 49,
"labelWidth": 48,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -161,10 +161,10 @@
"id": "service",
"type": "",
"pos": {
"x": 893,
"x": 888,
"y": 50
},
"width": 202,
"width": 197,
"height": 238,
"opacity": 1,
"strokeDash": 0,
@ -188,9 +188,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 102,
"labelWidth": 97,
"labelHeight": 138,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -224,11 +224,11 @@
"labelPercentage": 0,
"route": [
{
"x": 81.5,
"x": 79,
"y": 418
},
{
"x": 308,
"x": 303,
"y": 418
}
],
@ -263,11 +263,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 548
},
{
"x": 994,
"x": 986.5,
"y": 548
}
],
@ -302,11 +302,11 @@
"labelPercentage": 0,
"route": [
{
"x": 994,
"x": 986.5,
"y": 678
},
{
"x": 528,
"x": 523,
"y": 678
}
],
@ -341,11 +341,11 @@
"labelPercentage": 0,
"route": [
{
"x": 528,
"x": 523,
"y": 808
},
{
"x": 994,
"x": 986.5,
"y": 808
}
],
@ -380,11 +380,11 @@
"labelPercentage": 0,
"route": [
{
"x": 994,
"x": 986.5,
"y": 938
},
{
"x": 308,
"x": 303,
"y": 938
}
],
@ -419,11 +419,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 1068
},
{
"x": 81.5,
"x": 79,
"y": 1068
}
],
@ -458,11 +458,11 @@
"labelPercentage": 0,
"route": [
{
"x": 81.5,
"x": 79,
"y": 1198
},
{
"x": 308,
"x": 303,
"y": 1198
}
],
@ -497,11 +497,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 1328
},
{
"x": 748,
"x": 743,
"y": 1328
}
],
@ -536,11 +536,11 @@
"labelPercentage": 0,
"route": [
{
"x": 748,
"x": 743,
"y": 1458
},
{
"x": 308,
"x": 303,
"y": 1458
}
],
@ -575,11 +575,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 1588
},
{
"x": 81.5,
"x": 79,
"y": 1588
}
],
@ -614,11 +614,11 @@
"labelPercentage": 0,
"route": [
{
"x": 81.5,
"x": 79,
"y": 293
},
{
"x": 81.5,
"x": 79,
"y": 1718
}
],
@ -653,11 +653,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 293
},
{
"x": 308,
"x": 303,
"y": 1718
}
],
@ -692,11 +692,11 @@
"labelPercentage": 0,
"route": [
{
"x": 528,
"x": 523,
"y": 288
},
{
"x": 528,
"x": 523,
"y": 1718
}
],
@ -731,11 +731,11 @@
"labelPercentage": 0,
"route": [
{
"x": 748,
"x": 743,
"y": 288
},
{
"x": 748,
"x": 743,
"y": 1718
}
],
@ -770,11 +770,11 @@
"labelPercentage": 0,
"route": [
{
"x": 994,
"x": 986.5,
"y": 288
},
{
"x": 994,
"x": 986.5,
"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,
"y": 77
},
"width": 163,
"width": 158,
"height": 158,
"opacity": 1,
"strokeDash": 0,
@ -32,9 +32,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 63,
"labelWidth": 58,
"labelHeight": 58,
"labelPosition": "OUTSIDE_BOTTOM_CENTER",
"zIndex": 0,
@ -44,7 +44,7 @@
"id": "bob",
"type": "person",
"pos": {
"x": 233,
"x": 228,
"y": 141
},
"width": 150,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
@ -83,7 +83,7 @@
"id": "db",
"type": "cylinder",
"pos": {
"x": 453,
"x": 448,
"y": 162
},
"width": 150,
@ -110,9 +110,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 24,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -122,7 +122,7 @@
"id": "queue",
"type": "queue",
"pos": {
"x": 673,
"x": 668,
"y": 162
},
"width": 150,
@ -149,9 +149,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 49,
"labelWidth": 48,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -161,10 +161,10 @@
"id": "service",
"type": "",
"pos": {
"x": 893,
"x": 888,
"y": 50
},
"width": 202,
"width": 197,
"height": 238,
"opacity": 1,
"strokeDash": 0,
@ -188,9 +188,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 102,
"labelWidth": 97,
"labelHeight": 138,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
@ -224,11 +224,11 @@
"labelPercentage": 0,
"route": [
{
"x": 81.5,
"x": 79,
"y": 418
},
{
"x": 308,
"x": 303,
"y": 418
}
],
@ -263,11 +263,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 548
},
{
"x": 994,
"x": 986.5,
"y": 548
}
],
@ -302,11 +302,11 @@
"labelPercentage": 0,
"route": [
{
"x": 994,
"x": 986.5,
"y": 678
},
{
"x": 528,
"x": 523,
"y": 678
}
],
@ -341,11 +341,11 @@
"labelPercentage": 0,
"route": [
{
"x": 528,
"x": 523,
"y": 808
},
{
"x": 994,
"x": 986.5,
"y": 808
}
],
@ -380,11 +380,11 @@
"labelPercentage": 0,
"route": [
{
"x": 994,
"x": 986.5,
"y": 938
},
{
"x": 308,
"x": 303,
"y": 938
}
],
@ -419,11 +419,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 1068
},
{
"x": 81.5,
"x": 79,
"y": 1068
}
],
@ -458,11 +458,11 @@
"labelPercentage": 0,
"route": [
{
"x": 81.5,
"x": 79,
"y": 1198
},
{
"x": 308,
"x": 303,
"y": 1198
}
],
@ -497,11 +497,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 1328
},
{
"x": 748,
"x": 743,
"y": 1328
}
],
@ -536,11 +536,11 @@
"labelPercentage": 0,
"route": [
{
"x": 748,
"x": 743,
"y": 1458
},
{
"x": 308,
"x": 303,
"y": 1458
}
],
@ -575,11 +575,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 1588
},
{
"x": 81.5,
"x": 79,
"y": 1588
}
],
@ -614,11 +614,11 @@
"labelPercentage": 0,
"route": [
{
"x": 81.5,
"x": 79,
"y": 293
},
{
"x": 81.5,
"x": 79,
"y": 1718
}
],
@ -653,11 +653,11 @@
"labelPercentage": 0,
"route": [
{
"x": 308,
"x": 303,
"y": 293
},
{
"x": 308,
"x": 303,
"y": 1718
}
],
@ -692,11 +692,11 @@
"labelPercentage": 0,
"route": [
{
"x": 528,
"x": 523,
"y": 288
},
{
"x": 528,
"x": 523,
"y": 1718
}
],
@ -731,11 +731,11 @@
"labelPercentage": 0,
"route": [
{
"x": 748,
"x": 743,
"y": 288
},
{
"x": 748,
"x": 743,
"y": 1718
}
],
@ -770,11 +770,11 @@
"labelPercentage": 0,
"route": [
{
"x": 994,
"x": 986.5,
"y": 288
},
{
"x": 994,
"x": 986.5,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -109,7 +109,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -148,7 +148,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -186,7 +186,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -225,9 +225,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -263,7 +263,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -297,15 +297,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 36,
"labelWidth": 11,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -340,9 +340,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -378,7 +378,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -417,7 +417,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -455,7 +455,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -494,9 +494,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -532,9 +532,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -570,9 +570,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -608,9 +608,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -646,9 +646,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -71,7 +71,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -109,7 +109,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -148,7 +148,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -186,7 +186,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -225,9 +225,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -263,7 +263,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -297,15 +297,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 24,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 36,
"labelWidth": 11,
"labelHeight": 26,
"zIndex": 3,
"level": 2
},
@ -340,9 +340,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -378,7 +378,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -417,7 +417,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -455,7 +455,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -494,9 +494,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -532,9 +532,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -570,9 +570,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -608,9 +608,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 2
@ -646,9 +646,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 144,
"labelHeight": 41,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 98,
"labelHeight": 41,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 101,
"labelHeight": 36,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 77,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 101,
"labelHeight": 36,
@ -266,7 +266,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -305,7 +305,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -344,7 +344,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -383,7 +383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -422,7 +422,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -461,7 +461,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -500,7 +500,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -539,7 +539,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -577,7 +577,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -616,7 +616,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -654,7 +654,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -693,9 +693,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -731,7 +731,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -765,15 +765,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 31,
"labelWidth": 11,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -808,9 +808,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -846,7 +846,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -885,7 +885,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -923,7 +923,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -962,9 +962,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1000,9 +1000,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1038,9 +1038,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1076,9 +1076,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1114,9 +1114,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1152,7 +1152,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -1191,7 +1191,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1229,7 +1229,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -1268,7 +1268,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1306,7 +1306,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -1345,9 +1345,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1383,7 +1383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -1422,7 +1422,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1460,9 +1460,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 5
@ -1498,7 +1498,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -1537,7 +1537,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1575,7 +1575,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -1614,9 +1614,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1652,9 +1652,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1690,9 +1690,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1728,9 +1728,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1766,9 +1766,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1843,9 +1843,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1881,7 +1881,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -1919,7 +1919,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -1957,7 +1957,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -1995,7 +1995,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2033,9 +2033,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 6
@ -2071,7 +2071,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2109,7 +2109,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2147,7 +2147,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2185,9 +2185,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 7
@ -2223,7 +2223,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2261,7 +2261,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2299,7 +2299,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2337,7 +2337,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2375,7 +2375,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2413,9 +2413,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"labelWidth": 29,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -2451,9 +2451,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 144,
"labelHeight": 41,
@ -110,7 +110,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 98,
"labelHeight": 41,
@ -149,7 +149,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 101,
"labelHeight": 36,
@ -188,7 +188,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 77,
"labelHeight": 41,
@ -227,7 +227,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 101,
"labelHeight": 36,
@ -266,7 +266,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -305,7 +305,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -344,7 +344,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -383,7 +383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -422,7 +422,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -461,7 +461,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -500,7 +500,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -539,7 +539,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -577,7 +577,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -616,7 +616,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -654,7 +654,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -693,9 +693,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -731,7 +731,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -765,15 +765,15 @@
"methods": null,
"columns": null,
"label": "",
"fontSize": 20,
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 31,
"labelWidth": 11,
"labelHeight": 26,
"zIndex": 3,
"level": 3
},
@ -808,9 +808,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -846,7 +846,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -885,7 +885,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -923,7 +923,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -962,9 +962,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1000,9 +1000,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1038,9 +1038,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1076,9 +1076,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1114,9 +1114,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 3
@ -1152,7 +1152,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
@ -1191,7 +1191,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1229,7 +1229,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 100,
"labelHeight": 26,
@ -1268,7 +1268,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1306,7 +1306,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
@ -1345,9 +1345,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1383,7 +1383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 86,
"labelHeight": 26,
@ -1422,7 +1422,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1460,9 +1460,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 5
@ -1498,7 +1498,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 60,
"labelHeight": 26,
@ -1537,7 +1537,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
@ -1575,7 +1575,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 97,
"labelHeight": 26,
@ -1614,9 +1614,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1652,9 +1652,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1690,9 +1690,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1728,9 +1728,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1766,9 +1766,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 20,
"labelWidth": 19,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1843,9 +1843,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -1881,7 +1881,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -1919,7 +1919,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -1957,7 +1957,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -1995,7 +1995,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2033,9 +2033,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"level": 6
@ -2071,7 +2071,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2109,7 +2109,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2147,7 +2147,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2185,9 +2185,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 14,
"labelWidth": 13,
"labelHeight": 26,
"zIndex": 3,
"level": 7
@ -2223,7 +2223,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2261,7 +2261,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2299,7 +2299,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
@ -2337,7 +2337,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2375,7 +2375,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
@ -2413,9 +2413,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 31,
"labelWidth": 29,
"labelHeight": 26,
"zIndex": 3,
"level": 4
@ -2451,9 +2451,9 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 13,
"labelWidth": 12,
"labelHeight": 26,
"zIndex": 3,
"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": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 24,
"labelHeight": 41,
@ -305,7 +305,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
@ -383,7 +383,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
@ -461,7 +461,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
@ -539,7 +539,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
@ -656,7 +656,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 50,
"labelHeight": 41,
@ -734,7 +734,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 25,
"labelHeight": 41,
@ -773,7 +773,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
@ -851,7 +851,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 26,
"labelHeight": 36,
@ -929,7 +929,7 @@
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"bold": false,
"underline": false,
"labelWidth": 26,
"labelHeight": 36,

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

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

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