diff --git a/ci/release/changelogs/next.md b/ci/release/changelogs/next.md index 80e1dfdc8..22c5210c2 100644 --- a/ci/release/changelogs/next.md +++ b/ci/release/changelogs/next.md @@ -8,6 +8,7 @@ - ELK self loops get distributed around the object instead of stacking [#1232](https://github.com/terrastruct/d2/pull/1232) - ELK preserves order of objects in cycles [#1235](https://github.com/terrastruct/d2/pull/1235) - Improper usages of `class` and `style` get error messages [#1254](https://github.com/terrastruct/d2/pull/1254) +- Improves scaling of object widths/heights in grid diagrams [#1263](https://github.com/terrastruct/d2/pull/1263) #### Bugfixes ⛑️ @@ -15,3 +16,4 @@ - ELK self loops always have enough space for long labels [#1232](https://github.com/terrastruct/d2/pull/1232) - Fixes panic when setting `shape` to be `class` or `sql_table` within a class [#1251](https://github.com/terrastruct/d2/pull/1251) - Fixes rare panic exporting to gifs [#1257](https://github.com/terrastruct/d2/pull/1257) +- Fixes bad performance in large grid diagrams [#1263](https://github.com/terrastruct/d2/pull/1263) diff --git a/d2layouts/d2grid/layout.go b/d2layouts/d2grid/layout.go index 7d0834edd..dd87f4cb6 100644 --- a/d2layouts/d2grid/layout.go +++ b/d2layouts/d2grid/layout.go @@ -2,6 +2,7 @@ package d2grid import ( "context" + "fmt" "math" "sort" @@ -266,40 +267,17 @@ func (gd *gridDiagram) layoutDynamic(g *d2graph.Graph, obj *d2graph.Object) { cursor := geo.NewPoint(0, 0) var maxY, maxX float64 if gd.rowDirected { - // if we have 2 rows, then each row's objects should have the same height - // . ┌A─────────────┐ ┌B──┐ ┌C─────────┐ ┬ maxHeight(A,B,C) - // . ├ ─ ─ ─ ─ ─ ─ ─┤ │ │ │ │ │ - // . │ │ │ │ ├ ─ ─ ─ ─ ─┤ │ - // . │ │ │ │ │ │ │ - // . └──────────────┘ └───┘ └──────────┘ ┴ - // . ┌D────────┐ ┌E────────────────┐ ┬ maxHeight(D,E) - // . │ │ │ │ │ - // . │ │ │ │ │ - // . │ │ ├ ─ ─ ─ ─ ─ ─ ─ ─ ┤ │ - // . │ │ │ │ │ - // . └─────────┘ └─────────────────┘ ┴ + // measure row widths rowWidths := []float64{} for _, row := range layout { - rowHeight := 0. + x := 0. for _, o := range row { - o.TopLeft = cursor.Copy() - cursor.X += o.Width + horizontalGap - rowHeight = math.Max(rowHeight, o.Height) + x += o.Width + horizontalGap } - rowWidth := cursor.X - horizontalGap + rowWidth := x - horizontalGap rowWidths = append(rowWidths, rowWidth) maxX = math.Max(maxX, rowWidth) - - // set all objects in row to the same height - for _, o := range row { - o.Height = rowHeight - } - - // new row - cursor.X = 0 - cursor.Y += rowHeight + verticalGap } - maxY = cursor.Y - horizontalGap // then expand thinnest objects to make each row the same width // . ┌A─────────────┐ ┌B──┐ ┌C─────────┐ ┬ maxHeight(A,B,C) @@ -319,80 +297,79 @@ func (gd *gridDiagram) layoutDynamic(g *d2graph.Graph, obj *d2graph.Object) { continue } delta := maxX - rowWidth - objects := []*d2graph.Object{} var widest float64 for _, o := range row { widest = math.Max(widest, o.Width) - objects = append(objects, o) } - sort.Slice(objects, func(i, j int) bool { - return objects[i].Width < objects[j].Width - }) - // expand smaller objects to fill remaining space - for _, o := range objects { - if o.Width < widest { - var index int - for i, rowObj := range row { - if o == rowObj { - index = i - break - } - } - grow := math.Min(widest-o.Width, delta) - o.Width += grow - // shift following objects - for i := index + 1; i < len(row); i++ { - row[i].TopLeft.X += grow - } - delta -= grow - if delta <= 0 { - break - } + diffs := make([]float64, len(row)) + totalDiff := 0. + for i, o := range row { + diffs[i] = widest - o.Width + totalDiff += diffs[i] + } + if totalDiff > 0 { + // expand smaller nodes up to the size of the larger ones with delta + // percentage diff + for i := range diffs { + diffs[i] /= totalDiff + } + growth := math.Min(delta, totalDiff) + // expand smaller objects to fill remaining space + for i, o := range row { + o.Width += diffs[i] * growth } } - if delta > 0 { - grow := delta / float64(len(row)) - for i := len(row) - 1; i >= 0; i-- { - o := row[i] - o.TopLeft.X += grow * float64(i) - o.Width += grow - delta -= grow + if delta > totalDiff { + growth := (delta - totalDiff) / float64(len(row)) + for _, o := range row { + o.Width += growth } } } - } else { - // if we have 3 columns, then each column's objects should have the same width - // . ├maxWidth(A,B)─┤ ├maxW(C,D)─┤ ├maxWidth(E)──────┤ - // . ┌A─────────────┐ ┌C─────────┐ ┌E────────────────┐ - // . └──────────────┘ │ │ │ │ - // . ┌B──┬──────────┐ └──────────┘ │ │ - // . │ │ ┌D────────┬┐ └─────────────────┘ - // . │ │ │ │ │ - // . │ │ │ ││ - // . └───┴──────────┘ │ │ - // . │ ││ - // . └─────────┴┘ - colHeights := []float64{} - for _, column := range layout { - colWidth := 0. - for _, o := range column { + + // if we have 2 rows, then each row's objects should have the same height + // . ┌A─────────────┐ ┌B──┐ ┌C─────────┐ ┬ maxHeight(A,B,C) + // . ├ ─ ─ ─ ─ ─ ─ ─┤ │ │ │ │ │ + // . │ │ │ │ ├ ─ ─ ─ ─ ─┤ │ + // . │ │ │ │ │ │ │ + // . └──────────────┘ └───┘ └──────────┘ ┴ + // . ┌D────────┐ ┌E────────────────┐ ┬ maxHeight(D,E) + // . │ │ │ │ │ + // . │ │ │ │ │ + // . │ │ ├ ─ ─ ─ ─ ─ ─ ─ ─ ┤ │ + // . │ │ │ │ │ + // . └─────────┘ └─────────────────┘ ┴ + for _, row := range layout { + rowHeight := 0. + for _, o := range row { o.TopLeft = cursor.Copy() - cursor.Y += o.Height + verticalGap - colWidth = math.Max(colWidth, o.Width) - } - colHeight := cursor.Y - verticalGap - colHeights = append(colHeights, colHeight) - maxY = math.Max(maxY, colHeight) - // set all objects in column to the same width - for _, o := range column { - o.Width = colWidth + cursor.X += o.Width + horizontalGap + rowHeight = math.Max(rowHeight, o.Height) } - // new column - cursor.Y = 0 - cursor.X += colWidth + horizontalGap + // set all objects in row to the same height + for _, o := range row { + o.Height = rowHeight + } + + // new row + cursor.X = 0 + cursor.Y += rowHeight + verticalGap } - maxX = cursor.X - horizontalGap + maxY = cursor.Y - horizontalGap + } else { + // measure column heights + colHeights := []float64{} + for _, column := range layout { + y := 0. + for _, o := range column { + y += o.Height + verticalGap + } + colHeight := y - verticalGap + colHeights = append(colHeights, colHeight) + maxY = math.Max(maxY, colHeight) + } + // then expand shortest objects to make each column the same height // . ├maxWidth(A,B)─┤ ├maxW(C,D)─┤ ├maxWidth(E)──────┤ // . ┌A─────────────┐ ┌C─────────┐ ┌E────────────────┐ @@ -410,47 +387,63 @@ func (gd *gridDiagram) layoutDynamic(g *d2graph.Graph, obj *d2graph.Object) { continue } delta := maxY - colHeight - objects := []*d2graph.Object{} var tallest float64 for _, o := range column { tallest = math.Max(tallest, o.Height) - objects = append(objects, o) } - sort.Slice(objects, func(i, j int) bool { - return objects[i].Height < objects[j].Height - }) - // expand smaller objects to fill remaining space - for _, o := range objects { - if o.Height < tallest { - var index int - for i, colObj := range column { - if o == colObj { - index = i - break - } - } - grow := math.Min(tallest-o.Height, delta) - o.Height += grow - // shift following objects - for i := index + 1; i < len(column); i++ { - column[i].TopLeft.Y += grow - } - delta -= grow - if delta <= 0 { - break - } + diffs := make([]float64, len(column)) + totalDiff := 0. + for i, o := range column { + diffs[i] = tallest - o.Height + totalDiff += diffs[i] + } + if totalDiff > 0 { + // expand smaller nodes up to the size of the larger ones with delta + // percentage diff + for i := range diffs { + diffs[i] /= totalDiff + } + growth := math.Min(delta, totalDiff) + // expand smaller objects to fill remaining space + for i, o := range column { + o.Height += diffs[i] * growth } } - if delta > 0 { - grow := delta / float64(len(column)) - for i := len(column) - 1; i >= 0; i-- { - o := column[i] - o.TopLeft.Y += grow * float64(i) - o.Height += grow - delta -= grow + if delta > totalDiff { + growth := (delta - totalDiff) / float64(len(column)) + for _, o := range column { + o.Height += growth } } } + // if we have 3 columns, then each column's objects should have the same width + // . ├maxWidth(A,B)─┤ ├maxW(C,D)─┤ ├maxWidth(E)──────┤ + // . ┌A─────────────┐ ┌C─────────┐ ┌E────────────────┐ + // . └──────────────┘ │ │ │ │ + // . ┌B──┬──────────┐ └──────────┘ │ │ + // . │ │ ┌D────────┬┐ └─────────────────┘ + // . │ │ │ │ │ + // . │ │ │ ││ + // . └───┴──────────┘ │ │ + // . │ ││ + // . └─────────┴┘ + for _, column := range layout { + colWidth := 0. + for _, o := range column { + o.TopLeft = cursor.Copy() + cursor.Y += o.Height + verticalGap + colWidth = math.Max(colWidth, o.Width) + } + // set all objects in column to the same width + for _, o := range column { + o.Width = colWidth + } + + // new column + cursor.Y = 0 + cursor.X += colWidth + horizontalGap + } + maxX = cursor.X - horizontalGap } gd.width = maxX gd.height = maxY @@ -469,6 +462,68 @@ func (gd *gridDiagram) getBestLayout(targetSize float64, columns bool) [][]*d2gr return genLayout(gd.objects, nil) } + var gap float64 + if columns { + gap = float64(gd.verticalGap) + } else { + gap = float64(gd.horizontalGap) + } + getSize := func(o *d2graph.Object) float64 { + if columns { + return o.Height + } else { + return o.Width + } + } + + debug := false + skipCount := 0 + // quickly eliminate bad row groupings + startingCache := make(map[int]bool) + // try to find a layout with all rows within 1.2*targetSize + // skip options with a row that is 1.2*longer or shorter + // Note: we want a low threshold to explore good options within attemptLimit, + // but the best option may require a few rows that are far from the target size. + okThreshold := 1.2 + // if we don't find a layout try 25% larger threshold + thresholdStep := 0.25 + rowOk := func(row []*d2graph.Object, starting bool) (ok bool) { + if starting { + // we can cache results from starting positions since they repeat and don't change + // with starting=true it will always be the 1st N objects based on len(row) + if ok, has := startingCache[len(row)]; has { + return ok + } + defer func() { + // cache result before returning + startingCache[len(row)] = ok + }() + } + + rowSize := 0. + for _, obj := range row { + rowSize += getSize(obj) + } + if len(row) > 1 { + rowSize += gap * float64(len(row)-1) + // if multiple nodes are too big, it isn't ok. but a single node can't shrink so only check here + if rowSize > okThreshold*targetSize { + skipCount++ + return false + } + } + // row is too small to be good overall + if rowSize < targetSize/okThreshold { + skipCount++ + return false + } + return true + } + + var bestLayout [][]*d2graph.Object + bestDist := math.MaxFloat64 + count := 0 + attemptLimit := 100_000 // get all options for where to place these cuts, preferring later cuts over earlier cuts // with 5 objects and 2 cuts we have these options: // . A B C │ D │ E <- these cuts would produce: ┌A─┐ ┌B─┐ ┌C─┐ @@ -477,41 +532,128 @@ func (gd *gridDiagram) getBestLayout(targetSize float64, columns bool) [][]*d2gr // . A B │ C │ D E └────────────┘ // . A │ B C │ D E ┌E───────────┐ // . A │ B │ C D E └────────────┘ - divisions := genDivisions(gd.objects, nCuts) - - var bestLayout [][]*d2graph.Object - bestDist := math.MaxFloat64 // of these divisions, find the layout with rows closest to the targetSize - for _, division := range divisions { + tryDivision := func(division []int) bool { layout := genLayout(gd.objects, division) dist := getDistToTarget(layout, targetSize, float64(gd.horizontalGap), float64(gd.verticalGap), columns) if dist < bestDist { bestLayout = layout bestDist = dist } + count++ + // with few objects we can try all options to get best result but this won't scale, so only try up to 100k options + return count >= attemptLimit } + // try at least 3 different okThresholds + for i := 0; i < 3 || bestLayout == nil; i++ { + iterDivisions(gd.objects, nCuts, tryDivision, rowOk) + okThreshold += thresholdStep + if debug { + fmt.Printf("increasing ok threshold to %v\n", okThreshold) + } + startingCache = make(map[int]bool) + count = 0. + } + if debug { + fmt.Printf("final count %d, skip count %d\n", count, skipCount) + } + + // try fast layout algorithm, see if it is better than first 1mil attempts + debt := 0. + fastDivision := make([]int, 0, nCuts) + rowSize := 0. + for i := 0; i < len(gd.objects); i++ { + o := gd.objects[i] + size := getSize(o) + if rowSize == 0 { + if size > targetSize-debt { + fastDivision = append(fastDivision, i-1) + // we build up a debt of distance past the target size across rows + newDebt := size - targetSize + debt += newDebt + } else { + rowSize += size + } + continue + } + // debt is paid by decreasing threshold to start new row and ending below targetSize + if rowSize+(gap+size)/2. > targetSize-debt { + fastDivision = append(fastDivision, i-1) + newDebt := rowSize - targetSize + debt += newDebt + rowSize = size + } else { + rowSize += gap + size + } + } + if len(fastDivision) == nCuts { + layout := genLayout(gd.objects, fastDivision) + dist := getDistToTarget(layout, targetSize, float64(gd.horizontalGap), float64(gd.verticalGap), columns) + if dist < bestDist { + bestLayout = layout + bestDist = dist + } + } return bestLayout } +// process current division, return true to stop iterating +type iterDivision func(division []int) (done bool) +type checkCut func(objects []*d2graph.Object, starting bool) (ok bool) + // get all possible divisions of objects by the number of cuts -func genDivisions(objects []*d2graph.Object, nCuts int) (divisions [][]int) { +func iterDivisions(objects []*d2graph.Object, nCuts int, f iterDivision, check checkCut) { if len(objects) < 2 || nCuts == 0 { - return nil + return } + done := false // we go in this order to prefer extra objects in starting rows rather than later ones lastObj := len(objects) - 1 + // with objects=[A, B, C, D, E]; nCuts=2 + // d:depth; i:index; n:nCuts; + // ┌────┬───┬───┬─────────────────────┬────────────┐ + // │ d │ i │ n │ objects │ cuts │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ 0 │ 4 │ 2 │ [A B C D | E] │ │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ └1 │ 3 │ 1 │ [A B C | D] │ + | E] │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ └1 │ 2 │ 1 │ [A B | C D] │ + | E] │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ └1 │ 1 │ 1 │ [A | B C D] │ + | E] │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ 0 │ 3 │ 2 │ [A B C | D E] │ │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ └1 │ 2 │ 1 │ [A B | C] │ + | D E] │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ └1 │ 1 │ 1 │ [A | B C] │ + | D E] │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ 0 │ 2 │ 2 │ [A B | C D E] │ │ + // ├────┼───┼───┼─────────────────────┼────────────┤ + // │ └1 │ 1 │ 1 │ [A | B] │ + | C D E] │ + // └────┴───┴───┴─────────────────────┴────────────┘ for index := lastObj; index >= nCuts; index-- { + if !check(objects[index:], false) { + // optimization: if current cut gives a bad grouping, don't recurse + continue + } if nCuts > 1 { - for _, inner := range genDivisions(objects[:index], nCuts-1) { - divisions = append(divisions, append(inner, index-1)) - } + iterDivisions(objects[:index], nCuts-1, func(inner []int) bool { + done = f(append(inner, index-1)) + return done + }, check) } else { - divisions = append(divisions, []int{index - 1}) + if !check(objects[:index], true) { + // e.g. [A B C | D] if [A,B,C] is bad, skip it + continue + } + done = f([]int{index - 1}) + } + if done { + return } } - - return divisions } // generate a grid of objects from the given cut indices @@ -525,6 +667,9 @@ func genLayout(objects []*d2graph.Object, cutIndices []int) [][]*d2graph.Object } else { stop = len(objects) - 1 } + if stop >= objIndex { + layout[i] = make([]*d2graph.Object, 0, stop-objIndex+1) + } for ; objIndex <= stop; objIndex++ { layout[i] = append(layout[i], objects[objIndex]) } diff --git a/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg b/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg index 7c2c7bd0f..fae39351f 100644 --- a/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg +++ b/d2renderers/d2sketch/testdata/twitter/sketch.exp.svg @@ -1,27 +1,27 @@ - @@ -859,7 +859,7 @@ -People discovery serviceAd mixerOnboarding serviceTwitter Frontend WebIphoneAndroidTimelineScorerHome RankerTimeline ServiceHome mixerManhattanGizmoduckSocial graphTweety PiePrediction ServiceHome ScorerManhattanMemcacheFetchFeatureScoringPrediction Service...etc

Timeline mixer

+People discovery serviceAd mixerOnboarding serviceTwitter Frontend WebIphoneAndroidTimelineScorerHome RankerTimeline ServiceHome mixerManhattanGizmoduckSocial graphTweety PiePrediction ServiceHome ScorerManhattanMemcacheFetchFeatureScoringPrediction Service...etc

Timeline mixer

  • Inject ads, who-to-follow, onboarding
  • Conversation module
  • @@ -868,7 +868,7 @@
  • Served data logging
GraphQLFederated Strato Column

Tweet/user content hydration, visibility filtering

-
TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone web HTTP Android Thrift RPC Candidate Fetch Feature Hydration Candidate sources +
TLS-API (being deprecated)CrMixerEarlyBirdUtagSpaceCommunities iPhone web HTTP Android Thrift RPC Candidate Fetch Feature Hydration Candidate sources diff --git a/e2etests/regression_test.go b/e2etests/regression_test.go index 24026fd35..1e71d7202 100644 --- a/e2etests/regression_test.go +++ b/e2etests/regression_test.go @@ -932,6 +932,8 @@ d a -> b -> c `, }, + loadFromFile(t, "slow_grid"), + loadFromFile(t, "grid_oom"), } runa(t, tcs) diff --git a/e2etests/report/main.go b/e2etests/report/main.go index bc56ddc82..a2ef1896a 100644 --- a/e2etests/report/main.go +++ b/e2etests/report/main.go @@ -71,7 +71,18 @@ func main() { ctx := log.Stderr(context.Background()) ctx, cancel := context.WithTimeout(ctx, 2*time.Minute) defer cancel() - cmd := exec.CommandContext(ctx, "go", "test", testDir, testMatchString, cpuProfileStr, memProfileStr, vString) + // don't want to pass empty args to CommandContext + args := []string{"test", testDir, testMatchString} + if cpuProfileStr != "" { + args = append(args, cpuProfileStr) + } + if memProfileStr != "" { + args = append(args, memProfileStr) + } + if vString != "" { + args = append(args, vString) + } + cmd := exec.CommandContext(ctx, "go", args...) cmd.Env = os.Environ() cmd.Env = append(cmd.Env, "FORCE_COLOR=1") cmd.Env = append(cmd.Env, "DEBUG=1") diff --git a/e2etests/stable_test.go b/e2etests/stable_test.go index cd7945f48..79a385e9b 100644 --- a/e2etests/stable_test.go +++ b/e2etests/stable_test.go @@ -2717,6 +2717,7 @@ scenarios: { loadFromFile(t, "executive_grid"), loadFromFile(t, "grid_animated"), loadFromFile(t, "grid_gap"), + loadFromFile(t, "grid_even"), loadFromFile(t, "ent2d2_basic"), loadFromFile(t, "ent2d2_right"), } diff --git a/e2etests/testdata/files/grid_even.d2 b/e2etests/testdata/files/grid_even.d2 new file mode 100644 index 000000000..5a8bc125b --- /dev/null +++ b/e2etests/testdata/files/grid_even.d2 @@ -0,0 +1,69 @@ +row no growth: { + grid-rows: 2 + + # row 1 + a.width: 620 + + # row 2 width equals row 1 (with 40 in-between each) + b.width: 200 + c.width: 150 + d.width: 100 + e.width: 50 +} + +row 200 growth: { + grid-rows: 2 + + # row 1 + a.width: 820 + + # row 2 needs to grow 200 to equal row 1 + b.width: 200 + # these 3 should grow proportionally until they reach b's width + c.width: 150 + d.width: 100 + e.width: 50 +} + +row big growth: { + grid-rows: 2 + + # row 1 + a.width: 1420 + # row 2 needs to grow 800 + # these should all reach width 350 + b.width: 200 # 0 + 150 + c.width: 150 # 50 + 150 + d.width: 100 # 100 + 150 + e.width: 50 # 150 + 150 +} + +column no growth: { + grid-columns: 2 + + a.height: 620 + b.height: 200 + c.height: 150 + d.height: 100 + e.height: 50 +} + +column 200 growth: { + grid-columns: 2 + + a.height: 820 + b.height: 200 + c.height: 150 + d.height: 100 + e.height: 50 +} + +column big growth: { + grid-columns: 2 + + a.height: 1420 + b.height: 200 + c.height: 150 + d.height: 100 + e.height: 50 +} diff --git a/e2etests/testdata/files/grid_oom.d2 b/e2etests/testdata/files/grid_oom.d2 new file mode 100644 index 000000000..8638cdec4 --- /dev/null +++ b/e2etests/testdata/files/grid_oom.d2 @@ -0,0 +1,1049 @@ +grid-columns: 15 + +1: { + shape: class + 1: ------------------ + 2: ------------------------------- + 3: ------------------------------ + 4: ------------------------- +} +2: { + shape: class + 1: ----------------- + 2: ---------------------------- +} +3: { + shape: class + 1: ----------------- + 2: ---------------------------- + 3: ------------------------------ + 4: ------------------------- +} +4: { + shape: class + 1: ---------------------------- +} +5: { + shape: class + 1: -------------------- + 2: ---------------------------------------------- + 3: --------------------------------- +} +6: { + shape: class + 1: ---------------------------------------- + 2: ------------------------ + 3: ------------------------ + 4: -------------------------------------- +} +7: { + shape: class + 1: ---------------------------------------- + 2: --------------------- + 3: ------------------------ + 4: -------------------------------------- +} +5: { + shape: class + 1: ---------------------------------------- + 2: --------------------- + 3: ------------------------ + 4: -------------------------------------- +} +9: { + shape: class + 1: ---------------------- + 2: ------------------------------------------- + 3: ----------------------- + 4: -------------------------- + 5: ----------------------------- + 6: ----------------------------- + 7: -------------------------- +} +10: { + shape: class + 1: ----------------- +} +11: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +12: { + shape: class + 1: ---------------------- + 2: ----------------------- + 3: ------------- + 4: ------------- + 5: ------------------------ + 6: ------------------------------------------------ + 7: -------------------------- +} +13: { + shape: class + 1: -------------------------------- +} +14: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +15: { + shape: class + 1: ------------------------ + 2: ---------------------- +} +16: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +17: { + shape: class + 1: ----------------- +} +18: { + shape: class + 1: ---------------- +} +19: { + shape: class + 1: ----------------- +} +20: { + shape: class + 1: ----------------- +} +21: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +22: { + shape: class + 1: --------------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +23: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +24: { + shape: class + 1: ----------------- +} +25: { + shape: class + 1: ----------------- +} +26: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +27: { + shape: class + 1: ----------------- +} +28: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +29: { + shape: class + 1: -------------------------------- +} +30: { + shape: class + 1: ------------------- + 2: --------------------------------------------- + 3: -------------------------------- +} +31: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +32: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +33: { + shape: class + 1: ------------------------ + 2: ---------------------- +} +34: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +35: { + shape: class + 1: ---------------- +} +36: { + shape: class + 1: ----------------- +} +37: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +38: { + shape: class + 1: ----------------- +} +39: { + shape: class + 1: ----------------- +} +40: { + shape: class + 1: ----------------- +} +41: { + shape: class + 1: ----------------- +} +42: { + shape: class + 1: ----------------- +} +43: { + shape: class + 1: --------------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +44: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +45: { + shape: class + 1: ----------------- +} +46: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +47: { + shape: class + 1: ----------------- +} +48: { + shape: class + 1: ------------------------------- + 2: ------------------------------ + 3: -------------------------------------------- + 4: -------------------------------------------------------------------- +} +49: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +50: { + shape: class + 1: -------------- + 2: ----------------------- + 3: ------------- + 4: ------------------------ + 5: ------------------------ + 6: ------------------------------- + 7: -------------------------- +} +51: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +52: { + shape: class + 1: ---------------------- + 2: ----------------------- + 3: ------------- + 4: ------------- + 5: ------------------------ + 6: ------------------------------------------------ + 7: -------------------------- +} +53: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +54: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +55: { + shape: class + 1: ---------------------------------------------- +} +56: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +57: { + shape: class + 1: ----------------- +} +58: { + shape: class + 1: ----------------- +} +59: { + shape: class + 1: ----------- + 2: -------------------------------------------- +} +60: { + shape: class + 1: ----------------- +} +61: { + shape: class + 1: --------------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +62: { + shape: class + 1: ------------------------ + 2: ---------------------- +} +63: { + shape: class + 1: ----------------- +} +64: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +65: { + shape: class + 1: ------------- + 2: -------------------------- + 3: ------------- + 4: ------------- + 5: -------------------------- + 6: ----------------------- + 7: --------------------------------- + 8: ---------------------------- +} +66: { + shape: class + 1: ---------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +67: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ----------------------------- + 4: ------------------------------- + 5: --------------------------- +} +68: { + shape: class + 1: ---------------------------------------- + 2: ----------------------- + 3: ------------------------------------- + 4: ----------------------- +} +69: { + shape: class + 1: --------------------------- + 2: ------------------------------ + 3: -------------------------------- + 4: -------------------------------------------------------------------- + 5: ------------------------------ +} +70: { + shape: class + 1: -------------------- + 2: -------------------------- + 3: --------------------- + 4: ------------------------------- + 5: ------------------------- +} +71: { + shape: class + 1: ------------------------------ + 2: ------------------------ +} +72: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +73: { + shape: class + 1: ---------------- + 2: --------------------------- +} +74: { + shape: class + 1: ---------------- + 2: ------------------------ + 3: -------------------------- + 4: ---------------------- +} +75: { + shape: class + 1: ---------------- + 2: --------------------------- +} +76: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +77: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: -------------------------- +} +78: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ----------------------------- + 4: ------------------------ +} +79: { + shape: class + 1: ---------------------- + 2: -------------------------------- + 3: -------------------------------- + 4: ------------------------------------------- + 5: ------------------------- + 6: ---------------------------- + 7: --------------------------- + 8: ---------------------------------------- + 9: ----------------------------- + 10: ----------------------------- + 11: ---------------------- +} +80: { + shape: class + 1: -------------------------------- + 2: ---------------------------------- + 3: ------------------------ + 4: ------------------------- + 5: ------------------------------ + 6: ------------------------------ + 7: ---------------------- + 8: -------------------------- + 9: ---------------------- + 10: ----------------------- + 11: ------------------------- + 12: ---------------------------------- +} + +81: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +82: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +83: { + shape: class + 1: -------------- + 2: ----------------------- + 3: ------------------------ +} +84: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +85: { + shape: class + 1: ----------------------- + 2: ------------------------ + 3: -------------------------------- + 4: --------------------------------- + 5: ----------------------------- + 6: ----------------------------- +} +86: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +87: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +88: { + shape: class + 1: -------------------------------- +} +89: { + shape: class + 1: ------------- + 2: -------------------------- + 3: ------------- + 4: ------------- + 5: ----------------------------- + 6: ----------------------- + 7: --------------------------------- + 8: ---------------------------- +} +90: { + shape: class + 1: ---------------- + 2: --------------------------- +} +91: { + shape: class + 1: ------------ + 2: ---------------------------- + 3: ------------- + 4: ----------------------------- + 5: -------------------------- + 6: ------------- + 7: ------------- + 8: -------------------------- + 9: ---------------------------- +} +92: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +93: { + shape: class + 1: ------------------------------ + 2: ------------------------ +} +94: { + shape: class + 1: ---------------------- + 2: ------------------------------------------- + 3: ----------------------------- + 4: ----------------------------- + 5: ----------------------------- + 6: -------------------------- +} +95: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +96: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +97: { + shape: class + 1: ---------------------------------------- + 2: ----------------------- + 3: ----------------------- + 4: ------------------------------------- +} +98: { + shape: class + 1: ---------------- + 2: --------------------------- +} +99: { + shape: class + 1: ----------------- +} +100: { + shape: class + 1: ------------------- + 2: -------------- + 3: ------------------------- +} +101: { + shape: class + 1: ------------ + 2: ------------------------------------- + 3: ------------- + 4: ----------------------------- + 5: -------------------------- + 6: ------------- + 7: ------------- + 8: -------------------------- + 9: ---------------------------- +} +102: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +103: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ----------------------- + 4: --------------------------------- +} +104: { + shape: class + 1: ------------------- + 2: --------------------------------------------- + 3: ------------------------ +} +105: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +106: { + shape: class + 1: ----------------- +} +107: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +108: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ----------------------------- + 4: ------------------------ +} +109: { + shape: class + 1: ----------------- +} +110: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: -------------------------- +} +111: { + shape: class + 1: --------------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +112: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +113: { + shape: class + 1: ----------------- +} +114: { + shape: class + 1: ----------------- +} +115: { + shape: class + 1: ---------------- +} +116: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ----------------------------- + 4: ------------------------ +} +117: { + shape: class + 1: ---------------- +} +118: { + shape: class + 1: ----------------- +} +119: { + shape: class + 1: -------------- + 2: -------------------- + 3: ------------------------- + 4: ---------------------- + 5: ------------------------- +} +120: { + shape: class + 1: ----------------- +} +121: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +122: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: --------------------------------- +} +123: { + shape: class + 1: ------------------- + 2: -------------- + 3: ------------------------- +} +124: { + shape: class + 1: ----------------- +} +125: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ---------------------- + 4: -------------------------------- +} +126: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +127: { + shape: class + 1: -------------------------------- +} +128: { + shape: class + 1: ---------------- + 2: ------------------------------ + 3: ----------------------- + 4: ------------------------- +} +129: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +130: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +131: { + shape: class + 1: --------------------------------------- + 2: ----------------------- + 3: ----------------------- + 4: ------------------------------------- +} +132: { + shape: class + 1: ----------------------- + 2: ---------------- + 3: ------------------------------ + 4: ---------------------- + 5: -------------------------- + 6: ----------------------------- + 7: --------------------------- + 8: -------------------------- + 9: ---------------------- + 10: --------------------------- + 11: -------------------------------- + 12: ------------------------------ + 13: ------------------------- + 14: -------------------------- + 15: --------------------------------- + 16: ------------------------------- + 17: -------------------------- + 18: -------------------------------- + 19: ------------------------ + 20: ----------------------------- + 21: ----------------------------- + 22: --------------------------------- + 23: ---------------------------- + 24: ----------------------------- + 25: ----------------------- + 26: ------------------------------ + 27: ------------------------- + 28: ------------------------- + 29: --------------------------------- + 30: -------------------------- + 31: --------------------------- + 32: --------------------------- + 33: ------------------------ + 34: --------------------------- + 35: ---------------------- + 36: -------------------------- + 37: --------------------------- + 38: ---------------------------------- + 39: -------------------------- + 40: ----------------------- + 41: ---------------------------- + 42: --------------------------- + 43: -------------------------- + 44: --------------------------- + 45: ---------------------------------- + 46: -------------------------- + 47: -------------------------- + 48: -------------------------- +} +133: { + shape: class + 1: -------------- + 2: -------------------- + 3: ------------------------- + 4: ---------------------- + 5: ------------------------- +} +134: { + shape: class + 1: -------------------- + 2: --------------- +} +135: { + shape: class + 1: ---------------------------------------- + 2: ----------------------- + 3: ----------------------- + 4: ------------------------------------- +} +136: { + shape: class + 1: ---------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +137: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +138: { + shape: class + 1: --------------------------------------- + 2: ----------------------- + 3: ----------------------- + 4: ------------------------------------- +} +139: { + shape: class + 1: -------------- + 2: ----------------------- + 3: ------------------------ +} +140: { + shape: class + 1: -------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +141: { + shape: class + 1: ------------------------- + 2: ------------------------ +} +142: { + shape: class + 1: ----------------- +} +143: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +144: { + shape: class + 1: ---------------------- + 2: ------------------------ + 3: -------------------------------------- + 4: ---------------------------------- +} +145: { + shape: class + 1: --------------------------- + 2: ------------------------------ + 3: -------------------------------------------- + 4: ------------------------ + 5: ------------------------------- + 6: --------------------------------------------- + 7: -------------------------------------------- + 8: ------------------------------- +} +146: { + shape: class + 1: -------------------------- + 2: ---------------- + 3: ------------------------------ + 4: ---------------------------- + 5: ------------------------------- + 6: ---------------------------- + 7: ------------------------ + 8: ------------------------ + 9: --------------------------- + 10: ------------------------ + 11: ---------------------------------- + 12: ------------------------- + 13: ------------------------ + 14: -------------------------- + 15: ----------------------------- + 16: ---------------------------- + 17: ----------------------------- + 18: --------------------------------- + 19: -------------------------- + 20: --------------------- + 21: ------------------------------- + 22: ------------------------------- + 23: ------------------------------ + 24: --------------------------- + 25: -------------------------- + 26: --------------------------------- + 27: ------------------------ + 28: -------------------------- + 29: -------------------------- + 30: -------------------------- + 31: -------------------------- + 32: ---------------------------- + 33: ---------------------- + 34: -------------------------- + 35: ---------------------- + 36: -------------------------- + 37: --------------------------- + 38: -------------------------- + 39: ---------------------- + 40: ----------------------- + 41: ----------------------------- + 42: ----------------------------- + 43: -------------------------- + 44: ------------------------- + 45: ------------------------------ + 46: --------------------------------- + 47: -------------------------- + 48: -------------------------- +} +147: { + shape: class + 1: ----------------------------- + 2: -------------------- + 3: --------------- +} +148: { + shape: class + 1: -------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +149: { + shape: class + 1: ---------------------------------------- + 2: ----------------------- + 3: ----------------------- + 4: ------------------------------------- +} +150: { + shape: class + 1: --------------------------------------- + 2: -------------------- + 3: ------------------------------------- + 4: ----------------------- +} +151: { + shape: class + 1: ------------------------------ + 2: ------------------------ +} +152: { + shape: class + 1: -------------------------------- +} +153: { + shape: class + 1: ----------------- +} +154: { + shape: class + 1: ---------------------- + 2: ----------------------- + 3: ------------------------------------------- + 4: -------------------------- + 5: ----------------------------- + 6: ----------------------------- + 7: -------------------------- +} +155: { + shape: class + 1: ------------------------ +} +156: { + shape: class + 1: ---------------- +} diff --git a/e2etests/testdata/files/slow_grid.d2 b/e2etests/testdata/files/slow_grid.d2 new file mode 100644 index 000000000..9ace78f01 --- /dev/null +++ b/e2etests/testdata/files/slow_grid.d2 @@ -0,0 +1,147 @@ +grid-columns: 15 + +1: { + shape: class + 1: ------------------ + 2: ------------------------------- + 3: ------------------------------ + 4: ------------------------- +} +2: { + shape: class + 1: ----------------- + 2: ---------------------------- +} +3: { + shape: class + 1: ----------------- + 2: ---------------------------- + 3: ------------------------------ + 4: ------------------------- +} +4: { + shape: class + 1: ---------------------------- +} +5: { + shape: class + 1: -------------------- + 2: ---------------------------------------------- + 3: --------------------------------- +} +6: { + shape: class + 1: ---------------------------------------- + 2: ------------------------ + 3: ------------------------ + 4: -------------------------------------- +} +7: { + shape: class + 1: ---------------------------------------- + 2: --------------------- + 3: ------------------------ + 4: -------------------------------------- +} +5: { + shape: class + 1: ---------------------------------------- + 2: --------------------- + 3: ------------------------ + 4: -------------------------------------- +} +9: { + shape: class + 1: ---------------------- + 2: ------------------------------------------- + 3: ----------------------- + 4: -------------------------- + 5: ----------------------------- + 6: ----------------------------- + 7: -------------------------- +} +10: { + shape: class + 1: ----------------- +} +11: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +12: { + shape: class + 1: ---------------------- + 2: ----------------------- + 3: ------------- + 4: ------------- + 5: ------------------------ + 6: ------------------------------------------------ + 7: -------------------------- +} +13: { + shape: class + 1: -------------------------------- +} +14: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +15: { + shape: class + 1: ------------------------ + 2: ---------------------- +} +16: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +17: { + shape: class + 1: ----------------- +} +18: { + shape: class + 1: ---------------- +} +19: { + shape: class + 1: ----------------- +} +20: { + shape: class + 1: ----------------- +} +21: { + shape: class + 1: ---------------- + 2: --------------------------- + 3: ----------------------------- + 4: ------------------------ +} +22: { + shape: class + 1: --------------------------------------------- + 2: -------------------- + 3: ----------------------- + 4: ------------------------------------- +} +23: { + shape: class + 1: ---------------- + 2: ------------------------------ +} +24: { + shape: class + 1: ----------------- +} +25: { + shape: class + 1: ----------------- +} diff --git a/e2etests/testdata/regression/grid_oom/dagre/board.exp.json b/e2etests/testdata/regression/grid_oom/dagre/board.exp.json new file mode 100644 index 000000000..9aa86b393 --- /dev/null +++ b/e2etests/testdata/regression/grid_oom/dagre/board.exp.json @@ -0,0 +1,9898 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "1", + "type": "class", + "pos": { + "x": 0, + "y": 0 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "1", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 11, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "2", + "type": "class", + "pos": { + "x": 0, + "y": 377 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "2", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "3", + "type": "class", + "pos": { + "x": 0, + "y": 704 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "3", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "4", + "type": "class", + "pos": { + "x": 0, + "y": 1082 + }, + "width": 626, + "height": 261, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "4", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 14, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "5", + "type": "class", + "pos": { + "x": 0, + "y": 1383 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "5", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "6", + "type": "class", + "pos": { + "x": 0, + "y": 1761 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "6", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "7", + "type": "class", + "pos": { + "x": 0, + "y": 2139 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "7", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "9", + "type": "class", + "pos": { + "x": 0, + "y": 2516 + }, + "width": 626, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "9", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "10", + "type": "class", + "pos": { + "x": 0, + "y": 2970 + }, + "width": 626, + "height": 261, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "10", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "11", + "type": "class", + "pos": { + "x": 0, + "y": 3272 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "11", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "12", + "type": "class", + "pos": { + "x": 666, + "y": 0 + }, + "width": 686, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "12", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "13", + "type": "class", + "pos": { + "x": 666, + "y": 454 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "13", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "14", + "type": "class", + "pos": { + "x": 666, + "y": 662 + }, + "width": 686, + "height": 291, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "14", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "15", + "type": "class", + "pos": { + "x": 666, + "y": 993 + }, + "width": 686, + "height": 209, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "15", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "16", + "type": "class", + "pos": { + "x": 666, + "y": 1242 + }, + "width": 686, + "height": 209, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "16", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "17", + "type": "class", + "pos": { + "x": 666, + "y": 1491 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "17", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "18", + "type": "class", + "pos": { + "x": 666, + "y": 1699 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "18", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "19", + "type": "class", + "pos": { + "x": 666, + "y": 1907 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "19", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "20", + "type": "class", + "pos": { + "x": 666, + "y": 2115 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "20", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "21", + "type": "class", + "pos": { + "x": 666, + "y": 2323 + }, + "width": 686, + "height": 291, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "21", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "22", + "type": "class", + "pos": { + "x": 666, + "y": 2654 + }, + "width": 686, + "height": 291, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "22", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "23", + "type": "class", + "pos": { + "x": 666, + "y": 2985 + }, + "width": 686, + "height": 209, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "23", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "24", + "type": "class", + "pos": { + "x": 666, + "y": 3234 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "24", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "25", + "type": "class", + "pos": { + "x": 666, + "y": 3442 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "25", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "26", + "type": "class", + "pos": { + "x": 1392, + "y": 0 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "26", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "27", + "type": "class", + "pos": { + "x": 1392, + "y": 274 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "27", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "28", + "type": "class", + "pos": { + "x": 1392, + "y": 527 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "28", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "29", + "type": "class", + "pos": { + "x": 1392, + "y": 843 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "29", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "30", + "type": "class", + "pos": { + "x": 1392, + "y": 1097 + }, + "width": 650, + "height": 255, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "30", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "31", + "type": "class", + "pos": { + "x": 1392, + "y": 1392 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "31", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "32", + "type": "class", + "pos": { + "x": 1392, + "y": 1708 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "32", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "33", + "type": "class", + "pos": { + "x": 1392, + "y": 2024 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "33", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "34", + "type": "class", + "pos": { + "x": 1392, + "y": 2299 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "34", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "35", + "type": "class", + "pos": { + "x": 1392, + "y": 2573 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "35", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "36", + "type": "class", + "pos": { + "x": 1392, + "y": 2826 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "36", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "37", + "type": "class", + "pos": { + "x": 1392, + "y": 3080 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "37", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "38", + "type": "class", + "pos": { + "x": 1392, + "y": 3396 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "38", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "39", + "type": "class", + "pos": { + "x": 2082, + "y": 0 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "39", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "40", + "type": "class", + "pos": { + "x": 2082, + "y": 242 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "40", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "41", + "type": "class", + "pos": { + "x": 2082, + "y": 484 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "41", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "42", + "type": "class", + "pos": { + "x": 2082, + "y": 727 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "42", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "43", + "type": "class", + "pos": { + "x": 2082, + "y": 969 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "43", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "44", + "type": "class", + "pos": { + "x": 2082, + "y": 1318 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "44", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 29, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "45", + "type": "class", + "pos": { + "x": 2082, + "y": 1666 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "45", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "46", + "type": "class", + "pos": { + "x": 2082, + "y": 1908 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "46", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "47", + "type": "class", + "pos": { + "x": 2082, + "y": 2257 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "47", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "48", + "type": "class", + "pos": { + "x": 2082, + "y": 2499 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "48", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "49", + "type": "class", + "pos": { + "x": 2082, + "y": 2847 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "49", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "50", + "type": "class", + "pos": { + "x": 2082, + "y": 3196 + }, + "width": 927, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "50", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "51", + "type": "class", + "pos": { + "x": 3049, + "y": 0 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "51", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "52", + "type": "class", + "pos": { + "x": 3049, + "y": 269 + }, + "width": 686, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "52", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "53", + "type": "class", + "pos": { + "x": 3049, + "y": 723 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "53", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "54", + "type": "class", + "pos": { + "x": 3049, + "y": 992 + }, + "width": 686, + "height": 303, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "54", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "55", + "type": "class", + "pos": { + "x": 3049, + "y": 1336 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "55", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "56", + "type": "class", + "pos": { + "x": 3049, + "y": 1568 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "56", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "57", + "type": "class", + "pos": { + "x": 3049, + "y": 1837 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "57", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "58", + "type": "class", + "pos": { + "x": 3049, + "y": 2070 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "58", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "59", + "type": "class", + "pos": { + "x": 3049, + "y": 2302 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "59", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "60", + "type": "class", + "pos": { + "x": 3049, + "y": 2572 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "60", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "61", + "type": "class", + "pos": { + "x": 3049, + "y": 2804 + }, + "width": 686, + "height": 303, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "61", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "62", + "type": "class", + "pos": { + "x": 3049, + "y": 3148 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "62", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "63", + "type": "class", + "pos": { + "x": 3049, + "y": 3417 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "63", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "64", + "type": "class", + "pos": { + "x": 3775, + "y": 0 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "64", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "65", + "type": "class", + "pos": { + "x": 3775, + "y": 354 + }, + "width": 927, + "height": 460, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "65", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "66", + "type": "class", + "pos": { + "x": 3775, + "y": 854 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "66", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "67", + "type": "class", + "pos": { + "x": 3775, + "y": 1208 + }, + "width": 927, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "67", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "68", + "type": "class", + "pos": { + "x": 3775, + "y": 1598 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "68", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "69", + "type": "class", + "pos": { + "x": 3775, + "y": 1952 + }, + "width": 927, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "69", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "70", + "type": "class", + "pos": { + "x": 3775, + "y": 2343 + }, + "width": 927, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "70", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "71", + "type": "class", + "pos": { + "x": 3775, + "y": 2733 + }, + "width": 927, + "height": 241, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "71", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "72", + "type": "class", + "pos": { + "x": 3775, + "y": 3014 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "72", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "73", + "type": "class", + "pos": { + "x": 3775, + "y": 3368 + }, + "width": 927, + "height": 241, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "73", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "74", + "type": "class", + "pos": { + "x": 4742, + "y": 0 + }, + "width": 627, + "height": 374, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "74", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "75", + "type": "class", + "pos": { + "x": 4742, + "y": 414 + }, + "width": 627, + "height": 306, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "75", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "76", + "type": "class", + "pos": { + "x": 4742, + "y": 760 + }, + "width": 627, + "height": 374, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "76", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "77", + "type": "class", + "pos": { + "x": 4742, + "y": 1174 + }, + "width": 627, + "height": 340, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "77", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "78", + "type": "class", + "pos": { + "x": 4742, + "y": 1555 + }, + "width": 627, + "height": 374, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "78", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "79", + "type": "class", + "pos": { + "x": 4742, + "y": 1969 + }, + "width": 627, + "height": 610, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "79", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "80", + "type": "class", + "pos": { + "x": 4742, + "y": 2619 + }, + "width": 627, + "height": 644, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "12", + "type": "----------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "80", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "81", + "type": "class", + "pos": { + "x": 4742, + "y": 3303 + }, + "width": 627, + "height": 306, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "81", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "82", + "type": "class", + "pos": { + "x": 5409, + "y": 0 + }, + "width": 578, + "height": 313, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "82", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "83", + "type": "class", + "pos": { + "x": 5409, + "y": 353 + }, + "width": 578, + "height": 274, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "83", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "84", + "type": "class", + "pos": { + "x": 5409, + "y": 668 + }, + "width": 578, + "height": 236, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "84", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "85", + "type": "class", + "pos": { + "x": 5409, + "y": 944 + }, + "width": 578, + "height": 390, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "85", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "86", + "type": "class", + "pos": { + "x": 5409, + "y": 1375 + }, + "width": 578, + "height": 313, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "86", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "87", + "type": "class", + "pos": { + "x": 5409, + "y": 1728 + }, + "width": 578, + "height": 313, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "87", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "88", + "type": "class", + "pos": { + "x": 5409, + "y": 2082 + }, + "width": 578, + "height": 197, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "88", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "89", + "type": "class", + "pos": { + "x": 5409, + "y": 2320 + }, + "width": 578, + "height": 467, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "89", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "90", + "type": "class", + "pos": { + "x": 5409, + "y": 2827 + }, + "width": 578, + "height": 236, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "90", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "91", + "type": "class", + "pos": { + "x": 5409, + "y": 3104 + }, + "width": 578, + "height": 506, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-------------", + "visibility": "public" + }, + { + "name": "7", + "type": "-------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "91", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "92", + "type": "class", + "pos": { + "x": 6027, + "y": 0 + }, + "width": 626, + "height": 266, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "92", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "93", + "type": "class", + "pos": { + "x": 6027, + "y": 306 + }, + "width": 626, + "height": 266, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "93", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "94", + "type": "class", + "pos": { + "x": 6027, + "y": 613 + }, + "width": 626, + "height": 403, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "94", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "95", + "type": "class", + "pos": { + "x": 6027, + "y": 1057 + }, + "width": 626, + "height": 335, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "95", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "96", + "type": "class", + "pos": { + "x": 6027, + "y": 1432 + }, + "width": 626, + "height": 335, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "96", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "97", + "type": "class", + "pos": { + "x": 6027, + "y": 1807 + }, + "width": 626, + "height": 335, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "97", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "98", + "type": "class", + "pos": { + "x": 6027, + "y": 2183 + }, + "width": 626, + "height": 266, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "98", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "99", + "type": "class", + "pos": { + "x": 6027, + "y": 2490 + }, + "width": 626, + "height": 232, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "99", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "100", + "type": "class", + "pos": { + "x": 6027, + "y": 2762 + }, + "width": 626, + "height": 301, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "100", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "101", + "type": "class", + "pos": { + "x": 6027, + "y": 3104 + }, + "width": 626, + "height": 506, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-------------", + "visibility": "public" + }, + { + "name": "7", + "type": "-------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "101", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "102", + "type": "class", + "pos": { + "x": 6693, + "y": 0 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "102", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "103", + "type": "class", + "pos": { + "x": 6693, + "y": 274 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "---------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "103", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "104", + "type": "class", + "pos": { + "x": 6693, + "y": 590 + }, + "width": 650, + "height": 255, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "104", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "105", + "type": "class", + "pos": { + "x": 6693, + "y": 885 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "105", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "106", + "type": "class", + "pos": { + "x": 6693, + "y": 1159 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "106", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "107", + "type": "class", + "pos": { + "x": 6693, + "y": 1413 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "107", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "108", + "type": "class", + "pos": { + "x": 6693, + "y": 1687 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "108", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "109", + "type": "class", + "pos": { + "x": 6693, + "y": 2003 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "109", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "110", + "type": "class", + "pos": { + "x": 6693, + "y": 2257 + }, + "width": 650, + "height": 255, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "110", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "111", + "type": "class", + "pos": { + "x": 6693, + "y": 2552 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "111", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "112", + "type": "class", + "pos": { + "x": 6693, + "y": 2868 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "112", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "113", + "type": "class", + "pos": { + "x": 6693, + "y": 3142 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "113", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "114", + "type": "class", + "pos": { + "x": 6693, + "y": 3396 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "114", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "115", + "type": "class", + "pos": { + "x": 7383, + "y": 0 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "115", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "116", + "type": "class", + "pos": { + "x": 7383, + "y": 230 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "116", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "117", + "type": "class", + "pos": { + "x": 7383, + "y": 559 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "117", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "118", + "type": "class", + "pos": { + "x": 7383, + "y": 789 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "118", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "119", + "type": "class", + "pos": { + "x": 7383, + "y": 1019 + }, + "width": 578, + "height": 322, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "119", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "120", + "type": "class", + "pos": { + "x": 7383, + "y": 1381 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "120", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "121", + "type": "class", + "pos": { + "x": 7383, + "y": 1611 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "121", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "122", + "type": "class", + "pos": { + "x": 7383, + "y": 1940 + }, + "width": 578, + "height": 256, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "---------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "122", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "123", + "type": "class", + "pos": { + "x": 7383, + "y": 2236 + }, + "width": 578, + "height": 256, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "123", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "124", + "type": "class", + "pos": { + "x": 7383, + "y": 2532 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "124", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "125", + "type": "class", + "pos": { + "x": 7383, + "y": 2762 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "125", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "126", + "type": "class", + "pos": { + "x": 7383, + "y": 3091 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "126", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "127", + "type": "class", + "pos": { + "x": 7383, + "y": 3420 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "127", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "128", + "type": "class", + "pos": { + "x": 8001, + "y": 0 + }, + "width": 578, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "128", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "129", + "type": "class", + "pos": { + "x": 8001, + "y": 350 + }, + "width": 578, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "129", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "130", + "type": "class", + "pos": { + "x": 8001, + "y": 700 + }, + "width": 578, + "height": 219, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "130", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "131", + "type": "class", + "pos": { + "x": 8001, + "y": 959 + }, + "width": 578, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "131", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "132", + "type": "class", + "pos": { + "x": 8001, + "y": 1310 + }, + "width": 578, + "height": 2300, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "12", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "13", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "14", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "15", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "16", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "17", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "18", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "19", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "20", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "21", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "22", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "23", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "24", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "25", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "26", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "27", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "28", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "29", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "30", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "31", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "32", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "33", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "34", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "35", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "36", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "37", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "38", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "39", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "40", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "41", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "42", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "43", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "44", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "45", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "46", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "47", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "48", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "132", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "133", + "type": "class", + "pos": { + "x": 8619, + "y": 0 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "133", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "134", + "type": "class", + "pos": { + "x": 8619, + "y": 405 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "134", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "135", + "type": "class", + "pos": { + "x": 8619, + "y": 811 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "135", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "136", + "type": "class", + "pos": { + "x": 8619, + "y": 1216 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "136", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "137", + "type": "class", + "pos": { + "x": 8619, + "y": 1622 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "137", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "138", + "type": "class", + "pos": { + "x": 8619, + "y": 2027 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "138", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "139", + "type": "class", + "pos": { + "x": 8619, + "y": 2433 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "139", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "140", + "type": "class", + "pos": { + "x": 8619, + "y": 2838 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "140", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "141", + "type": "class", + "pos": { + "x": 8619, + "y": 3244 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "141", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "142", + "type": "class", + "pos": { + "x": 9249, + "y": 0 + }, + "width": 650, + "height": 138, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "142", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "143", + "type": "class", + "pos": { + "x": 9249, + "y": 178 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "143", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "144", + "type": "class", + "pos": { + "x": 9249, + "y": 494 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "144", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "145", + "type": "class", + "pos": { + "x": 9249, + "y": 810 + }, + "width": 650, + "height": 460, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "-------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "145", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "146", + "type": "class", + "pos": { + "x": 9249, + "y": 1310 + }, + "width": 650, + "height": 2300, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "12", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "13", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "14", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "15", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "16", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "17", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "18", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "19", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "20", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "21", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "22", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "23", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "24", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "25", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "26", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "27", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "28", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "29", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "30", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "31", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "32", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "33", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "34", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "35", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "36", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "37", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "38", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "39", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "40", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "41", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "42", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "43", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "44", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "45", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "46", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "47", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "48", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "146", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "147", + "type": "class", + "pos": { + "x": 9939, + "y": 0 + }, + "width": 626, + "height": 329, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "---------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "147", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "148", + "type": "class", + "pos": { + "x": 9939, + "y": 369 + }, + "width": 626, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "148", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "149", + "type": "class", + "pos": { + "x": 9939, + "y": 759 + }, + "width": 626, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "149", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "150", + "type": "class", + "pos": { + "x": 9939, + "y": 1150 + }, + "width": 626, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "150", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "151", + "type": "class", + "pos": { + "x": 9939, + "y": 1540 + }, + "width": 626, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "151", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "152", + "type": "class", + "pos": { + "x": 9939, + "y": 1888 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "152", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "153", + "type": "class", + "pos": { + "x": 9939, + "y": 2215 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "153", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "154", + "type": "class", + "pos": { + "x": 9939, + "y": 2542 + }, + "width": 626, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "154", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "155", + "type": "class", + "pos": { + "x": 9939, + "y": 2996 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "155", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "156", + "type": "class", + "pos": { + "x": 9939, + "y": 3323 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "156", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } +} diff --git a/e2etests/testdata/regression/grid_oom/dagre/sketch.exp.svg b/e2etests/testdata/regression/grid_oom/dagre/sketch.exp.svg new file mode 100644 index 000000000..a6704a0b9 --- /dev/null +++ b/e2etests/testdata/regression/grid_oom/dagre/sketch.exp.svg @@ -0,0 +1,95 @@ +1+1------------------+2-------------------------------+3------------------------------+4-------------------------2+1-----------------+2----------------------------3+1-----------------+2----------------------------+3------------------------------+4-------------------------4+1----------------------------5+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------6+1----------------------------------------+2------------------------+3------------------------+4--------------------------------------7+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------9+1----------------------+2-------------------------------------------+3-----------------------+4--------------------------+5-----------------------------+6-----------------------------+7--------------------------10+1-----------------11+1----------------+2---------------------------+3-----------------------------+4------------------------12+1----------------------+2-----------------------+3-------------+4-------------+5------------------------+6------------------------------------------------+7--------------------------13+1--------------------------------14+1----------------+2---------------------------+3-----------------------------+4------------------------15+1------------------------+2----------------------16+1----------------+2------------------------------17+1-----------------18+1----------------19+1-----------------20+1-----------------21+1----------------+2---------------------------+3-----------------------------+4------------------------22+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------23+1----------------+2------------------------------24+1-----------------25+1-----------------26+1----------------+2------------------------------27+1-----------------28+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------29+1--------------------------------30+1-------------------+2---------------------------------------------+3--------------------------------31+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------32+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------33+1------------------------+2----------------------34+1----------------+2------------------------------35+1----------------36+1-----------------37+1----------------+2---------------------------+3-----------------------------+4------------------------38+1-----------------39+1-----------------40+1-----------------41+1-----------------42+1-----------------43+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------44+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------45+1-----------------46+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------47+1-----------------48+1-------------------------------+2------------------------------+3--------------------------------------------+4--------------------------------------------------------------------49+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------50+1--------------+2-----------------------+3-------------+4------------------------+5------------------------+6-------------------------------+7--------------------------51+1----------------+2------------------------------52+1----------------------+2-----------------------+3-------------+4-------------+5------------------------+6------------------------------------------------+7--------------------------53+1----------------+2------------------------------54+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------55+1----------------------------------------------56+1----------------+2------------------------------57+1-----------------58+1-----------------59+1-----------+2--------------------------------------------60+1-----------------61+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------62+1------------------------+2----------------------63+1-----------------64+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------65+1-------------+2--------------------------+3-------------+4-------------+5--------------------------+6-----------------------+7---------------------------------+8----------------------------66+1----------------------------------------+2--------------------+3-----------------------+4-------------------------------------67+1----------------+2------------------------------+3-----------------------------+4-------------------------------+5---------------------------68+1----------------------------------------+2-----------------------+3-------------------------------------+4-----------------------69+1---------------------------+2------------------------------+3--------------------------------+4--------------------------------------------------------------------+5------------------------------70+1--------------------+2--------------------------+3---------------------+4-------------------------------+5-------------------------71+1------------------------------+2------------------------72+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------73+1----------------+2---------------------------74+1----------------+2------------------------+3--------------------------+4----------------------75+1----------------+2---------------------------76+1----------------+2---------------------------+3-----------------------------+4------------------------77+1----------------+2------------------------------+3--------------------------78+1----------------+2------------------------------+3-----------------------------+4------------------------79+1----------------------+2--------------------------------+3--------------------------------+4-------------------------------------------+5-------------------------+6----------------------------+7---------------------------+8----------------------------------------+9-----------------------------+10-----------------------------+11----------------------80+1--------------------------------+2----------------------------------+3------------------------+4-------------------------+5------------------------------+6------------------------------+7----------------------+8--------------------------+9----------------------+10-----------------------+11-------------------------+12----------------------------------81+1----------------+2------------------------------82+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------83+1--------------+2-----------------------+3------------------------84+1----------------+2------------------------------85+1-----------------------+2------------------------+3--------------------------------+4---------------------------------+5-----------------------------+6-----------------------------86+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------87+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------88+1--------------------------------89+1-------------+2--------------------------+3-------------+4-------------+5-----------------------------+6-----------------------+7---------------------------------+8----------------------------90+1----------------+2---------------------------91+1------------+2----------------------------+3-------------+4-----------------------------+5--------------------------+6-------------+7-------------+8--------------------------+9----------------------------92+1----------------+2------------------------------93+1------------------------------+2------------------------94+1----------------------+2-------------------------------------------+3-----------------------------+4-----------------------------+5-----------------------------+6--------------------------95+1----------------+2---------------------------+3-----------------------------+4------------------------96+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------97+1----------------------------------------+2-----------------------+3-----------------------+4-------------------------------------98+1----------------+2---------------------------99+1-----------------100+1-------------------+2--------------+3-------------------------101+1------------+2-------------------------------------+3-------------+4-----------------------------+5--------------------------+6-------------+7-------------+8--------------------------+9----------------------------102+1----------------+2------------------------------103+1----------------+2------------------------------+3-----------------------+4---------------------------------104+1-------------------+2---------------------------------------------+3------------------------105+1----------------+2------------------------------106+1-----------------107+1----------------+2------------------------------108+1----------------+2------------------------------+3-----------------------------+4------------------------109+1-----------------110+1----------------+2------------------------------+3--------------------------111+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------112+1----------------+2------------------------------113+1-----------------114+1-----------------115+1----------------116+1----------------+2------------------------------+3-----------------------------+4------------------------117+1----------------118+1-----------------119+1--------------+2--------------------+3-------------------------+4----------------------+5-------------------------120+1-----------------121+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------122+1----------------+2------------------------------+3---------------------------------123+1-------------------+2--------------+3-------------------------124+1-----------------125+1----------------+2------------------------------+3----------------------+4--------------------------------126+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------127+1--------------------------------128+1----------------+2------------------------------+3-----------------------+4-------------------------129+1----------------+2---------------------------+3-----------------------------+4------------------------130+1----------------+2------------------------------131+1---------------------------------------+2-----------------------+3-----------------------+4-------------------------------------132+1-----------------------+2----------------+3------------------------------+4----------------------+5--------------------------+6-----------------------------+7---------------------------+8--------------------------+9----------------------+10---------------------------+11--------------------------------+12------------------------------+13-------------------------+14--------------------------+15---------------------------------+16-------------------------------+17--------------------------+18--------------------------------+19------------------------+20-----------------------------+21-----------------------------+22---------------------------------+23----------------------------+24-----------------------------+25-----------------------+26------------------------------+27-------------------------+28-------------------------+29---------------------------------+30--------------------------+31---------------------------+32---------------------------+33------------------------+34---------------------------+35----------------------+36--------------------------+37---------------------------+38----------------------------------+39--------------------------+40-----------------------+41----------------------------+42---------------------------+43--------------------------+44---------------------------+45----------------------------------+46--------------------------+47--------------------------+48--------------------------133+1--------------+2--------------------+3-------------------------+4----------------------+5-------------------------134+1--------------------+2---------------135+1----------------------------------------+2-----------------------+3-----------------------+4-------------------------------------136+1----------------------------------------+2--------------------+3-----------------------+4-------------------------------------137+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------138+1---------------------------------------+2-----------------------+3-----------------------+4-------------------------------------139+1--------------+2-----------------------+3------------------------140+1--------------------+2--------------------+3-----------------------+4-------------------------------------141+1-------------------------+2------------------------142+1-----------------143+1----------------+2---------------------------+3-----------------------------+4------------------------144+1----------------------+2------------------------+3--------------------------------------+4----------------------------------145+1---------------------------+2------------------------------+3--------------------------------------------+4------------------------+5-------------------------------+6---------------------------------------------+7--------------------------------------------+8-------------------------------146+1--------------------------+2----------------+3------------------------------+4----------------------------+5-------------------------------+6----------------------------+7------------------------+8------------------------+9---------------------------+10------------------------+11----------------------------------+12-------------------------+13------------------------+14--------------------------+15-----------------------------+16----------------------------+17-----------------------------+18---------------------------------+19--------------------------+20---------------------+21-------------------------------+22-------------------------------+23------------------------------+24---------------------------+25--------------------------+26---------------------------------+27------------------------+28--------------------------+29--------------------------+30--------------------------+31--------------------------+32----------------------------+33----------------------+34--------------------------+35----------------------+36--------------------------+37---------------------------+38--------------------------+39----------------------+40-----------------------+41-----------------------------+42-----------------------------+43--------------------------+44-------------------------+45------------------------------+46---------------------------------+47--------------------------+48--------------------------147+1-----------------------------+2--------------------+3---------------148+1--------------------+2--------------------+3-----------------------+4-------------------------------------149+1----------------------------------------+2-----------------------+3-----------------------+4-------------------------------------150+1---------------------------------------+2--------------------+3-------------------------------------+4-----------------------151+1------------------------------+2------------------------152+1--------------------------------153+1-----------------154+1----------------------+2-----------------------+3-------------------------------------------+4--------------------------+5-----------------------------+6-----------------------------+7--------------------------155+1------------------------156+1---------------- + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/grid_oom/elk/board.exp.json b/e2etests/testdata/regression/grid_oom/elk/board.exp.json new file mode 100644 index 000000000..9aa86b393 --- /dev/null +++ b/e2etests/testdata/regression/grid_oom/elk/board.exp.json @@ -0,0 +1,9898 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "1", + "type": "class", + "pos": { + "x": 0, + "y": 0 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "1", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 11, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "2", + "type": "class", + "pos": { + "x": 0, + "y": 377 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "2", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "3", + "type": "class", + "pos": { + "x": 0, + "y": 704 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "3", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "4", + "type": "class", + "pos": { + "x": 0, + "y": 1082 + }, + "width": 626, + "height": 261, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "4", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 14, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "5", + "type": "class", + "pos": { + "x": 0, + "y": 1383 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "5", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "6", + "type": "class", + "pos": { + "x": 0, + "y": 1761 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "6", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "7", + "type": "class", + "pos": { + "x": 0, + "y": 2139 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "7", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "9", + "type": "class", + "pos": { + "x": 0, + "y": 2516 + }, + "width": 626, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "9", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "10", + "type": "class", + "pos": { + "x": 0, + "y": 2970 + }, + "width": 626, + "height": 261, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "10", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "11", + "type": "class", + "pos": { + "x": 0, + "y": 3272 + }, + "width": 626, + "height": 337, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "11", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "12", + "type": "class", + "pos": { + "x": 666, + "y": 0 + }, + "width": 686, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "12", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "13", + "type": "class", + "pos": { + "x": 666, + "y": 454 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "13", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "14", + "type": "class", + "pos": { + "x": 666, + "y": 662 + }, + "width": 686, + "height": 291, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "14", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "15", + "type": "class", + "pos": { + "x": 666, + "y": 993 + }, + "width": 686, + "height": 209, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "15", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "16", + "type": "class", + "pos": { + "x": 666, + "y": 1242 + }, + "width": 686, + "height": 209, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "16", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "17", + "type": "class", + "pos": { + "x": 666, + "y": 1491 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "17", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "18", + "type": "class", + "pos": { + "x": 666, + "y": 1699 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "18", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "19", + "type": "class", + "pos": { + "x": 666, + "y": 1907 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "19", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "20", + "type": "class", + "pos": { + "x": 666, + "y": 2115 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "20", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "21", + "type": "class", + "pos": { + "x": 666, + "y": 2323 + }, + "width": 686, + "height": 291, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "21", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "22", + "type": "class", + "pos": { + "x": 666, + "y": 2654 + }, + "width": 686, + "height": 291, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "22", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "23", + "type": "class", + "pos": { + "x": 666, + "y": 2985 + }, + "width": 686, + "height": 209, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "23", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "24", + "type": "class", + "pos": { + "x": 666, + "y": 3234 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "24", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "25", + "type": "class", + "pos": { + "x": 666, + "y": 3442 + }, + "width": 686, + "height": 168, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "25", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "26", + "type": "class", + "pos": { + "x": 1392, + "y": 0 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "26", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "27", + "type": "class", + "pos": { + "x": 1392, + "y": 274 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "27", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "28", + "type": "class", + "pos": { + "x": 1392, + "y": 527 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "28", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "29", + "type": "class", + "pos": { + "x": 1392, + "y": 843 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "29", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "30", + "type": "class", + "pos": { + "x": 1392, + "y": 1097 + }, + "width": 650, + "height": 255, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "30", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "31", + "type": "class", + "pos": { + "x": 1392, + "y": 1392 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "31", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "32", + "type": "class", + "pos": { + "x": 1392, + "y": 1708 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "32", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "33", + "type": "class", + "pos": { + "x": 1392, + "y": 2024 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "33", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "34", + "type": "class", + "pos": { + "x": 1392, + "y": 2299 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "34", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "35", + "type": "class", + "pos": { + "x": 1392, + "y": 2573 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "35", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "36", + "type": "class", + "pos": { + "x": 1392, + "y": 2826 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "36", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "37", + "type": "class", + "pos": { + "x": 1392, + "y": 3080 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "37", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "38", + "type": "class", + "pos": { + "x": 1392, + "y": 3396 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "38", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "39", + "type": "class", + "pos": { + "x": 2082, + "y": 0 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "39", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "40", + "type": "class", + "pos": { + "x": 2082, + "y": 242 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "40", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "41", + "type": "class", + "pos": { + "x": 2082, + "y": 484 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "41", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "42", + "type": "class", + "pos": { + "x": 2082, + "y": 727 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "42", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "43", + "type": "class", + "pos": { + "x": 2082, + "y": 969 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "43", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "44", + "type": "class", + "pos": { + "x": 2082, + "y": 1318 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "44", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 29, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "45", + "type": "class", + "pos": { + "x": 2082, + "y": 1666 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "45", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "46", + "type": "class", + "pos": { + "x": 2082, + "y": 1908 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "46", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "47", + "type": "class", + "pos": { + "x": 2082, + "y": 2257 + }, + "width": 927, + "height": 202, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "47", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "48", + "type": "class", + "pos": { + "x": 2082, + "y": 2499 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "48", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "49", + "type": "class", + "pos": { + "x": 2082, + "y": 2847 + }, + "width": 927, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "49", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "50", + "type": "class", + "pos": { + "x": 2082, + "y": 3196 + }, + "width": 927, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "50", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "51", + "type": "class", + "pos": { + "x": 3049, + "y": 0 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "51", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "52", + "type": "class", + "pos": { + "x": 3049, + "y": 269 + }, + "width": 686, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "52", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "53", + "type": "class", + "pos": { + "x": 3049, + "y": 723 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "53", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "54", + "type": "class", + "pos": { + "x": 3049, + "y": 992 + }, + "width": 686, + "height": 303, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "54", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "55", + "type": "class", + "pos": { + "x": 3049, + "y": 1336 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "55", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "56", + "type": "class", + "pos": { + "x": 3049, + "y": 1568 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "56", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "57", + "type": "class", + "pos": { + "x": 3049, + "y": 1837 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "57", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "58", + "type": "class", + "pos": { + "x": 3049, + "y": 2070 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "58", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "59", + "type": "class", + "pos": { + "x": 3049, + "y": 2302 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "59", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "60", + "type": "class", + "pos": { + "x": 3049, + "y": 2572 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "60", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "61", + "type": "class", + "pos": { + "x": 3049, + "y": 2804 + }, + "width": 686, + "height": 303, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "61", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "62", + "type": "class", + "pos": { + "x": 3049, + "y": 3148 + }, + "width": 686, + "height": 229, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "62", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "63", + "type": "class", + "pos": { + "x": 3049, + "y": 3417 + }, + "width": 686, + "height": 192, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "63", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "64", + "type": "class", + "pos": { + "x": 3775, + "y": 0 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "64", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "65", + "type": "class", + "pos": { + "x": 3775, + "y": 354 + }, + "width": 927, + "height": 460, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "65", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "66", + "type": "class", + "pos": { + "x": 3775, + "y": 854 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "66", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "67", + "type": "class", + "pos": { + "x": 3775, + "y": 1208 + }, + "width": 927, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "67", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "68", + "type": "class", + "pos": { + "x": 3775, + "y": 1598 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "68", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "69", + "type": "class", + "pos": { + "x": 3775, + "y": 1952 + }, + "width": 927, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "69", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "70", + "type": "class", + "pos": { + "x": 3775, + "y": 2343 + }, + "width": 927, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "70", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "71", + "type": "class", + "pos": { + "x": 3775, + "y": 2733 + }, + "width": 927, + "height": 241, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "71", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "72", + "type": "class", + "pos": { + "x": 3775, + "y": 3014 + }, + "width": 927, + "height": 314, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "72", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "73", + "type": "class", + "pos": { + "x": 3775, + "y": 3368 + }, + "width": 927, + "height": 241, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "73", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "74", + "type": "class", + "pos": { + "x": 4742, + "y": 0 + }, + "width": 627, + "height": 374, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "74", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "75", + "type": "class", + "pos": { + "x": 4742, + "y": 414 + }, + "width": 627, + "height": 306, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "75", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "76", + "type": "class", + "pos": { + "x": 4742, + "y": 760 + }, + "width": 627, + "height": 374, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "76", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "77", + "type": "class", + "pos": { + "x": 4742, + "y": 1174 + }, + "width": 627, + "height": 340, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "77", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "78", + "type": "class", + "pos": { + "x": 4742, + "y": 1555 + }, + "width": 627, + "height": 374, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "78", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "79", + "type": "class", + "pos": { + "x": 4742, + "y": 1969 + }, + "width": 627, + "height": 610, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "79", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "80", + "type": "class", + "pos": { + "x": 4742, + "y": 2619 + }, + "width": 627, + "height": 644, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "12", + "type": "----------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "80", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "81", + "type": "class", + "pos": { + "x": 4742, + "y": 3303 + }, + "width": 627, + "height": 306, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "81", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "82", + "type": "class", + "pos": { + "x": 5409, + "y": 0 + }, + "width": 578, + "height": 313, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "82", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "83", + "type": "class", + "pos": { + "x": 5409, + "y": 353 + }, + "width": 578, + "height": 274, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "83", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "84", + "type": "class", + "pos": { + "x": 5409, + "y": 668 + }, + "width": 578, + "height": 236, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "84", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "85", + "type": "class", + "pos": { + "x": 5409, + "y": 944 + }, + "width": 578, + "height": 390, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "85", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "86", + "type": "class", + "pos": { + "x": 5409, + "y": 1375 + }, + "width": 578, + "height": 313, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "86", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "87", + "type": "class", + "pos": { + "x": 5409, + "y": 1728 + }, + "width": 578, + "height": 313, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "87", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "88", + "type": "class", + "pos": { + "x": 5409, + "y": 2082 + }, + "width": 578, + "height": 197, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "88", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "89", + "type": "class", + "pos": { + "x": 5409, + "y": 2320 + }, + "width": 578, + "height": 467, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "89", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "90", + "type": "class", + "pos": { + "x": 5409, + "y": 2827 + }, + "width": 578, + "height": 236, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "90", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "91", + "type": "class", + "pos": { + "x": 5409, + "y": 3104 + }, + "width": 578, + "height": 506, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-------------", + "visibility": "public" + }, + { + "name": "7", + "type": "-------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "91", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "92", + "type": "class", + "pos": { + "x": 6027, + "y": 0 + }, + "width": 626, + "height": 266, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "92", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "93", + "type": "class", + "pos": { + "x": 6027, + "y": 306 + }, + "width": 626, + "height": 266, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "93", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "94", + "type": "class", + "pos": { + "x": 6027, + "y": 613 + }, + "width": 626, + "height": 403, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "94", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "95", + "type": "class", + "pos": { + "x": 6027, + "y": 1057 + }, + "width": 626, + "height": 335, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "95", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "96", + "type": "class", + "pos": { + "x": 6027, + "y": 1432 + }, + "width": 626, + "height": 335, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "96", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "97", + "type": "class", + "pos": { + "x": 6027, + "y": 1807 + }, + "width": 626, + "height": 335, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "97", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "98", + "type": "class", + "pos": { + "x": 6027, + "y": 2183 + }, + "width": 626, + "height": 266, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "98", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "99", + "type": "class", + "pos": { + "x": 6027, + "y": 2490 + }, + "width": 626, + "height": 232, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "99", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "100", + "type": "class", + "pos": { + "x": 6027, + "y": 2762 + }, + "width": 626, + "height": 301, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "100", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "101", + "type": "class", + "pos": { + "x": 6027, + "y": 3104 + }, + "width": 626, + "height": 506, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-------------", + "visibility": "public" + }, + { + "name": "7", + "type": "-------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "101", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "102", + "type": "class", + "pos": { + "x": 6693, + "y": 0 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "102", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "103", + "type": "class", + "pos": { + "x": 6693, + "y": 274 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "---------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "103", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "104", + "type": "class", + "pos": { + "x": 6693, + "y": 590 + }, + "width": 650, + "height": 255, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "104", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "105", + "type": "class", + "pos": { + "x": 6693, + "y": 885 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "105", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "106", + "type": "class", + "pos": { + "x": 6693, + "y": 1159 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "106", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "107", + "type": "class", + "pos": { + "x": 6693, + "y": 1413 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "107", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "108", + "type": "class", + "pos": { + "x": 6693, + "y": 1687 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "108", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "109", + "type": "class", + "pos": { + "x": 6693, + "y": 2003 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "109", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "110", + "type": "class", + "pos": { + "x": 6693, + "y": 2257 + }, + "width": 650, + "height": 255, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "110", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "111", + "type": "class", + "pos": { + "x": 6693, + "y": 2552 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "111", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "112", + "type": "class", + "pos": { + "x": 6693, + "y": 2868 + }, + "width": 650, + "height": 234, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "112", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "113", + "type": "class", + "pos": { + "x": 6693, + "y": 3142 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "113", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "114", + "type": "class", + "pos": { + "x": 6693, + "y": 3396 + }, + "width": 650, + "height": 213, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "114", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "115", + "type": "class", + "pos": { + "x": 7383, + "y": 0 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "115", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "116", + "type": "class", + "pos": { + "x": 7383, + "y": 230 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "116", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "117", + "type": "class", + "pos": { + "x": 7383, + "y": 559 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "117", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "118", + "type": "class", + "pos": { + "x": 7383, + "y": 789 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "118", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "119", + "type": "class", + "pos": { + "x": 7383, + "y": 1019 + }, + "width": 578, + "height": 322, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "119", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "120", + "type": "class", + "pos": { + "x": 7383, + "y": 1381 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "120", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "121", + "type": "class", + "pos": { + "x": 7383, + "y": 1611 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "121", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "122", + "type": "class", + "pos": { + "x": 7383, + "y": 1940 + }, + "width": 578, + "height": 256, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "---------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "122", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "123", + "type": "class", + "pos": { + "x": 7383, + "y": 2236 + }, + "width": 578, + "height": 256, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "123", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "124", + "type": "class", + "pos": { + "x": 7383, + "y": 2532 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "124", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "125", + "type": "class", + "pos": { + "x": 7383, + "y": 2762 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "125", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "126", + "type": "class", + "pos": { + "x": 7383, + "y": 3091 + }, + "width": 578, + "height": 289, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "126", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "127", + "type": "class", + "pos": { + "x": 7383, + "y": 3420 + }, + "width": 578, + "height": 190, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "127", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "128", + "type": "class", + "pos": { + "x": 8001, + "y": 0 + }, + "width": 578, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "128", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "129", + "type": "class", + "pos": { + "x": 8001, + "y": 350 + }, + "width": 578, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "129", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "130", + "type": "class", + "pos": { + "x": 8001, + "y": 700 + }, + "width": 578, + "height": 219, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "130", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "131", + "type": "class", + "pos": { + "x": 8001, + "y": 959 + }, + "width": 578, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "131", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "132", + "type": "class", + "pos": { + "x": 8001, + "y": 1310 + }, + "width": 578, + "height": 2300, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "12", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "13", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "14", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "15", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "16", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "17", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "18", + "type": "--------------------------------", + "visibility": "public" + }, + { + "name": "19", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "20", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "21", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "22", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "23", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "24", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "25", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "26", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "27", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "28", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "29", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "30", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "31", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "32", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "33", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "34", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "35", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "36", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "37", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "38", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "39", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "40", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "41", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "42", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "43", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "44", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "45", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "46", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "47", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "48", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "132", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "133", + "type": "class", + "pos": { + "x": 8619, + "y": 0 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "133", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "134", + "type": "class", + "pos": { + "x": 8619, + "y": 405 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "134", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "135", + "type": "class", + "pos": { + "x": 8619, + "y": 811 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "135", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "136", + "type": "class", + "pos": { + "x": 8619, + "y": 1216 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "136", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "137", + "type": "class", + "pos": { + "x": 8619, + "y": 1622 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "137", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "138", + "type": "class", + "pos": { + "x": 8619, + "y": 2027 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "138", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "139", + "type": "class", + "pos": { + "x": 8619, + "y": 2433 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "139", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "140", + "type": "class", + "pos": { + "x": 8619, + "y": 2838 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "140", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "141", + "type": "class", + "pos": { + "x": 8619, + "y": 3244 + }, + "width": 590, + "height": 365, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "141", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "142", + "type": "class", + "pos": { + "x": 9249, + "y": 0 + }, + "width": 650, + "height": 138, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "142", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "143", + "type": "class", + "pos": { + "x": 9249, + "y": 178 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "143", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "144", + "type": "class", + "pos": { + "x": 9249, + "y": 494 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "144", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "145", + "type": "class", + "pos": { + "x": 9249, + "y": 810 + }, + "width": 650, + "height": 460, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "--------------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "-------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "145", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "146", + "type": "class", + "pos": { + "x": 9249, + "y": 1310 + }, + "width": 650, + "height": 2300, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "8", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "9", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "10", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "11", + "type": "----------------------------------", + "visibility": "public" + }, + { + "name": "12", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "13", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "14", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "15", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "16", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "17", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "18", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "19", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "20", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "21", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "22", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "23", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "24", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "25", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "26", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "27", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "28", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "29", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "30", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "31", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "32", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "33", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "34", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "35", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "36", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "37", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "38", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "39", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "40", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "41", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "42", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "43", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "44", + "type": "-------------------------", + "visibility": "public" + }, + { + "name": "45", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "46", + "type": "---------------------------------", + "visibility": "public" + }, + { + "name": "47", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "48", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "146", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "147", + "type": "class", + "pos": { + "x": 9939, + "y": 0 + }, + "width": 626, + "height": 329, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "---------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "147", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "148", + "type": "class", + "pos": { + "x": 9939, + "y": 369 + }, + "width": 626, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "148", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "149", + "type": "class", + "pos": { + "x": 9939, + "y": 759 + }, + "width": 626, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "149", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "150", + "type": "class", + "pos": { + "x": 9939, + "y": 1150 + }, + "width": 626, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "150", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "151", + "type": "class", + "pos": { + "x": 9939, + "y": 1540 + }, + "width": 626, + "height": 308, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "151", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "152", + "type": "class", + "pos": { + "x": 9939, + "y": 1888 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "152", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "153", + "type": "class", + "pos": { + "x": 9939, + "y": 2215 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "153", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "154", + "type": "class", + "pos": { + "x": 9939, + "y": 2542 + }, + "width": 626, + "height": 414, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "154", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 41, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "155", + "type": "class", + "pos": { + "x": 9939, + "y": 2996 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "155", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "156", + "type": "class", + "pos": { + "x": 9939, + "y": 3323 + }, + "width": 626, + "height": 286, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "156", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 40, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } +} diff --git a/e2etests/testdata/regression/grid_oom/elk/sketch.exp.svg b/e2etests/testdata/regression/grid_oom/elk/sketch.exp.svg new file mode 100644 index 000000000..a6704a0b9 --- /dev/null +++ b/e2etests/testdata/regression/grid_oom/elk/sketch.exp.svg @@ -0,0 +1,95 @@ +1+1------------------+2-------------------------------+3------------------------------+4-------------------------2+1-----------------+2----------------------------3+1-----------------+2----------------------------+3------------------------------+4-------------------------4+1----------------------------5+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------6+1----------------------------------------+2------------------------+3------------------------+4--------------------------------------7+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------9+1----------------------+2-------------------------------------------+3-----------------------+4--------------------------+5-----------------------------+6-----------------------------+7--------------------------10+1-----------------11+1----------------+2---------------------------+3-----------------------------+4------------------------12+1----------------------+2-----------------------+3-------------+4-------------+5------------------------+6------------------------------------------------+7--------------------------13+1--------------------------------14+1----------------+2---------------------------+3-----------------------------+4------------------------15+1------------------------+2----------------------16+1----------------+2------------------------------17+1-----------------18+1----------------19+1-----------------20+1-----------------21+1----------------+2---------------------------+3-----------------------------+4------------------------22+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------23+1----------------+2------------------------------24+1-----------------25+1-----------------26+1----------------+2------------------------------27+1-----------------28+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------29+1--------------------------------30+1-------------------+2---------------------------------------------+3--------------------------------31+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------32+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------33+1------------------------+2----------------------34+1----------------+2------------------------------35+1----------------36+1-----------------37+1----------------+2---------------------------+3-----------------------------+4------------------------38+1-----------------39+1-----------------40+1-----------------41+1-----------------42+1-----------------43+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------44+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------45+1-----------------46+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------47+1-----------------48+1-------------------------------+2------------------------------+3--------------------------------------------+4--------------------------------------------------------------------49+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------50+1--------------+2-----------------------+3-------------+4------------------------+5------------------------+6-------------------------------+7--------------------------51+1----------------+2------------------------------52+1----------------------+2-----------------------+3-------------+4-------------+5------------------------+6------------------------------------------------+7--------------------------53+1----------------+2------------------------------54+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------55+1----------------------------------------------56+1----------------+2------------------------------57+1-----------------58+1-----------------59+1-----------+2--------------------------------------------60+1-----------------61+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------62+1------------------------+2----------------------63+1-----------------64+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------65+1-------------+2--------------------------+3-------------+4-------------+5--------------------------+6-----------------------+7---------------------------------+8----------------------------66+1----------------------------------------+2--------------------+3-----------------------+4-------------------------------------67+1----------------+2------------------------------+3-----------------------------+4-------------------------------+5---------------------------68+1----------------------------------------+2-----------------------+3-------------------------------------+4-----------------------69+1---------------------------+2------------------------------+3--------------------------------+4--------------------------------------------------------------------+5------------------------------70+1--------------------+2--------------------------+3---------------------+4-------------------------------+5-------------------------71+1------------------------------+2------------------------72+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------73+1----------------+2---------------------------74+1----------------+2------------------------+3--------------------------+4----------------------75+1----------------+2---------------------------76+1----------------+2---------------------------+3-----------------------------+4------------------------77+1----------------+2------------------------------+3--------------------------78+1----------------+2------------------------------+3-----------------------------+4------------------------79+1----------------------+2--------------------------------+3--------------------------------+4-------------------------------------------+5-------------------------+6----------------------------+7---------------------------+8----------------------------------------+9-----------------------------+10-----------------------------+11----------------------80+1--------------------------------+2----------------------------------+3------------------------+4-------------------------+5------------------------------+6------------------------------+7----------------------+8--------------------------+9----------------------+10-----------------------+11-------------------------+12----------------------------------81+1----------------+2------------------------------82+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------83+1--------------+2-----------------------+3------------------------84+1----------------+2------------------------------85+1-----------------------+2------------------------+3--------------------------------+4---------------------------------+5-----------------------------+6-----------------------------86+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------87+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------88+1--------------------------------89+1-------------+2--------------------------+3-------------+4-------------+5-----------------------------+6-----------------------+7---------------------------------+8----------------------------90+1----------------+2---------------------------91+1------------+2----------------------------+3-------------+4-----------------------------+5--------------------------+6-------------+7-------------+8--------------------------+9----------------------------92+1----------------+2------------------------------93+1------------------------------+2------------------------94+1----------------------+2-------------------------------------------+3-----------------------------+4-----------------------------+5-----------------------------+6--------------------------95+1----------------+2---------------------------+3-----------------------------+4------------------------96+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------97+1----------------------------------------+2-----------------------+3-----------------------+4-------------------------------------98+1----------------+2---------------------------99+1-----------------100+1-------------------+2--------------+3-------------------------101+1------------+2-------------------------------------+3-------------+4-----------------------------+5--------------------------+6-------------+7-------------+8--------------------------+9----------------------------102+1----------------+2------------------------------103+1----------------+2------------------------------+3-----------------------+4---------------------------------104+1-------------------+2---------------------------------------------+3------------------------105+1----------------+2------------------------------106+1-----------------107+1----------------+2------------------------------108+1----------------+2------------------------------+3-----------------------------+4------------------------109+1-----------------110+1----------------+2------------------------------+3--------------------------111+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------112+1----------------+2------------------------------113+1-----------------114+1-----------------115+1----------------116+1----------------+2------------------------------+3-----------------------------+4------------------------117+1----------------118+1-----------------119+1--------------+2--------------------+3-------------------------+4----------------------+5-------------------------120+1-----------------121+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------122+1----------------+2------------------------------+3---------------------------------123+1-------------------+2--------------+3-------------------------124+1-----------------125+1----------------+2------------------------------+3----------------------+4--------------------------------126+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------127+1--------------------------------128+1----------------+2------------------------------+3-----------------------+4-------------------------129+1----------------+2---------------------------+3-----------------------------+4------------------------130+1----------------+2------------------------------131+1---------------------------------------+2-----------------------+3-----------------------+4-------------------------------------132+1-----------------------+2----------------+3------------------------------+4----------------------+5--------------------------+6-----------------------------+7---------------------------+8--------------------------+9----------------------+10---------------------------+11--------------------------------+12------------------------------+13-------------------------+14--------------------------+15---------------------------------+16-------------------------------+17--------------------------+18--------------------------------+19------------------------+20-----------------------------+21-----------------------------+22---------------------------------+23----------------------------+24-----------------------------+25-----------------------+26------------------------------+27-------------------------+28-------------------------+29---------------------------------+30--------------------------+31---------------------------+32---------------------------+33------------------------+34---------------------------+35----------------------+36--------------------------+37---------------------------+38----------------------------------+39--------------------------+40-----------------------+41----------------------------+42---------------------------+43--------------------------+44---------------------------+45----------------------------------+46--------------------------+47--------------------------+48--------------------------133+1--------------+2--------------------+3-------------------------+4----------------------+5-------------------------134+1--------------------+2---------------135+1----------------------------------------+2-----------------------+3-----------------------+4-------------------------------------136+1----------------------------------------+2--------------------+3-----------------------+4-------------------------------------137+1---------------------------------------+2--------------------+3-----------------------+4-------------------------------------138+1---------------------------------------+2-----------------------+3-----------------------+4-------------------------------------139+1--------------+2-----------------------+3------------------------140+1--------------------+2--------------------+3-----------------------+4-------------------------------------141+1-------------------------+2------------------------142+1-----------------143+1----------------+2---------------------------+3-----------------------------+4------------------------144+1----------------------+2------------------------+3--------------------------------------+4----------------------------------145+1---------------------------+2------------------------------+3--------------------------------------------+4------------------------+5-------------------------------+6---------------------------------------------+7--------------------------------------------+8-------------------------------146+1--------------------------+2----------------+3------------------------------+4----------------------------+5-------------------------------+6----------------------------+7------------------------+8------------------------+9---------------------------+10------------------------+11----------------------------------+12-------------------------+13------------------------+14--------------------------+15-----------------------------+16----------------------------+17-----------------------------+18---------------------------------+19--------------------------+20---------------------+21-------------------------------+22-------------------------------+23------------------------------+24---------------------------+25--------------------------+26---------------------------------+27------------------------+28--------------------------+29--------------------------+30--------------------------+31--------------------------+32----------------------------+33----------------------+34--------------------------+35----------------------+36--------------------------+37---------------------------+38--------------------------+39----------------------+40-----------------------+41-----------------------------+42-----------------------------+43--------------------------+44-------------------------+45------------------------------+46---------------------------------+47--------------------------+48--------------------------147+1-----------------------------+2--------------------+3---------------148+1--------------------+2--------------------+3-----------------------+4-------------------------------------149+1----------------------------------------+2-----------------------+3-----------------------+4-------------------------------------150+1---------------------------------------+2--------------------+3-------------------------------------+4-----------------------151+1------------------------------+2------------------------152+1--------------------------------153+1-----------------154+1----------------------+2-----------------------+3-------------------------------------------+4--------------------------+5-----------------------------+6-----------------------------+7--------------------------155+1------------------------156+1---------------- + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/slow_grid/dagre/board.exp.json b/e2etests/testdata/regression/slow_grid/dagre/board.exp.json new file mode 100644 index 000000000..b82a19afa --- /dev/null +++ b/e2etests/testdata/regression/slow_grid/dagre/board.exp.json @@ -0,0 +1,1463 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "1", + "type": "class", + "pos": { + "x": 0, + "y": 0 + }, + "width": 482, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "1", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 11, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "2", + "type": "class", + "pos": { + "x": 0, + "y": 316 + }, + "width": 482, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "2", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "3", + "type": "class", + "pos": { + "x": 522, + "y": 0 + }, + "width": 470, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "3", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "4", + "type": "class", + "pos": { + "x": 522, + "y": 316 + }, + "width": 470, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "4", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 14, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "5", + "type": "class", + "pos": { + "x": 1032, + "y": 0 + }, + "width": 590, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "5", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "6", + "type": "class", + "pos": { + "x": 1662, + "y": 0 + }, + "width": 590, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "6", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "7", + "type": "class", + "pos": { + "x": 2292, + "y": 0 + }, + "width": 590, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "7", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "9", + "type": "class", + "pos": { + "x": 2922, + "y": 0 + }, + "width": 626, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "9", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "10", + "type": "class", + "pos": { + "x": 3588, + "y": 0 + }, + "width": 458, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "10", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "11", + "type": "class", + "pos": { + "x": 3588, + "y": 224 + }, + "width": 458, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "11", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "12", + "type": "class", + "pos": { + "x": 4086, + "y": 0 + }, + "width": 686, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "12", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "13", + "type": "class", + "pos": { + "x": 4812, + "y": 0 + }, + "width": 494, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "13", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "14", + "type": "class", + "pos": { + "x": 4812, + "y": 224 + }, + "width": 494, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "14", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "15", + "type": "class", + "pos": { + "x": 5346, + "y": 0 + }, + "width": 470, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "15", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "16", + "type": "class", + "pos": { + "x": 5346, + "y": 270 + }, + "width": 470, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "16", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "17", + "type": "class", + "pos": { + "x": 5856, + "y": 0 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "17", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "18", + "type": "class", + "pos": { + "x": 5856, + "y": 270 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "18", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "19", + "type": "class", + "pos": { + "x": 6210, + "y": 0 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "19", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "20", + "type": "class", + "pos": { + "x": 6210, + "y": 270 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "20", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "21", + "type": "class", + "pos": { + "x": 6564, + "y": 0 + }, + "width": 458, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "21", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "22", + "type": "class", + "pos": { + "x": 7062, + "y": 0 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "22", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "23", + "type": "class", + "pos": { + "x": 7062, + "y": 316 + }, + "width": 650, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "23", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "24", + "type": "class", + "pos": { + "x": 7752, + "y": 0 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "24", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "25", + "type": "class", + "pos": { + "x": 7752, + "y": 270 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "25", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } +} diff --git a/e2etests/testdata/regression/slow_grid/dagre/sketch.exp.svg b/e2etests/testdata/regression/slow_grid/dagre/sketch.exp.svg new file mode 100644 index 000000000..98c776505 --- /dev/null +++ b/e2etests/testdata/regression/slow_grid/dagre/sketch.exp.svg @@ -0,0 +1,95 @@ +1+1------------------+2-------------------------------+3------------------------------+4-------------------------2+1-----------------+2----------------------------3+1-----------------+2----------------------------+3------------------------------+4-------------------------4+1----------------------------5+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------6+1----------------------------------------+2------------------------+3------------------------+4--------------------------------------7+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------9+1----------------------+2-------------------------------------------+3-----------------------+4--------------------------+5-----------------------------+6-----------------------------+7--------------------------10+1-----------------11+1----------------+2---------------------------+3-----------------------------+4------------------------12+1----------------------+2-----------------------+3-------------+4-------------+5------------------------+6------------------------------------------------+7--------------------------13+1--------------------------------14+1----------------+2---------------------------+3-----------------------------+4------------------------15+1------------------------+2----------------------16+1----------------+2------------------------------17+1-----------------18+1----------------19+1-----------------20+1-----------------21+1----------------+2---------------------------+3-----------------------------+4------------------------22+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------23+1----------------+2------------------------------24+1-----------------25+1----------------- + + + \ No newline at end of file diff --git a/e2etests/testdata/regression/slow_grid/elk/board.exp.json b/e2etests/testdata/regression/slow_grid/elk/board.exp.json new file mode 100644 index 000000000..b82a19afa --- /dev/null +++ b/e2etests/testdata/regression/slow_grid/elk/board.exp.json @@ -0,0 +1,1463 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "1", + "type": "class", + "pos": { + "x": 0, + "y": 0 + }, + "width": 482, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "1", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 11, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "2", + "type": "class", + "pos": { + "x": 0, + "y": 316 + }, + "width": 482, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "2", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "3", + "type": "class", + "pos": { + "x": 522, + "y": 0 + }, + "width": 470, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "3", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "4", + "type": "class", + "pos": { + "x": 522, + "y": 316 + }, + "width": 470, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "4", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 14, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "5", + "type": "class", + "pos": { + "x": 1032, + "y": 0 + }, + "width": 590, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "5", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "6", + "type": "class", + "pos": { + "x": 1662, + "y": 0 + }, + "width": 590, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "6", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "7", + "type": "class", + "pos": { + "x": 2292, + "y": 0 + }, + "width": 590, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "7", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "9", + "type": "class", + "pos": { + "x": 2922, + "y": 0 + }, + "width": 626, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-------------------------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "--------------------------", + "visibility": "public" + }, + { + "name": "5", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "9", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "10", + "type": "class", + "pos": { + "x": 3588, + "y": 0 + }, + "width": 458, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "10", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "11", + "type": "class", + "pos": { + "x": 3588, + "y": 224 + }, + "width": 458, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "11", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "12", + "type": "class", + "pos": { + "x": 4086, + "y": 0 + }, + "width": 686, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------", + "visibility": "public" + }, + { + "name": "5", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "6", + "type": "------------------------------------------------", + "visibility": "public" + }, + { + "name": "7", + "type": "--------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "12", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "13", + "type": "class", + "pos": { + "x": 4812, + "y": 0 + }, + "width": 494, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "--------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "13", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "14", + "type": "class", + "pos": { + "x": 4812, + "y": 224 + }, + "width": 494, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "14", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "15", + "type": "class", + "pos": { + "x": 5346, + "y": 0 + }, + "width": 470, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "----------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "15", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "16", + "type": "class", + "pos": { + "x": 5346, + "y": 270 + }, + "width": 470, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "16", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "17", + "type": "class", + "pos": { + "x": 5856, + "y": 0 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "17", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "18", + "type": "class", + "pos": { + "x": 5856, + "y": 270 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "18", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "19", + "type": "class", + "pos": { + "x": 6210, + "y": 0 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "19", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 26, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "20", + "type": "class", + "pos": { + "x": 6210, + "y": 270 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "20", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "21", + "type": "class", + "pos": { + "x": 6564, + "y": 0 + }, + "width": 458, + "height": 500, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "---------------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "21", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "22", + "type": "class", + "pos": { + "x": 7062, + "y": 0 + }, + "width": 650, + "height": 276, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "---------------------------------------------", + "visibility": "public" + }, + { + "name": "2", + "type": "--------------------", + "visibility": "public" + }, + { + "name": "3", + "type": "-----------------------", + "visibility": "public" + }, + { + "name": "4", + "type": "-------------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "22", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "23", + "type": "class", + "pos": { + "x": 7062, + "y": 316 + }, + "width": 650, + "height": 184, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "----------------", + "visibility": "public" + }, + { + "name": "2", + "type": "------------------------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "23", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "24", + "type": "class", + "pos": { + "x": 7752, + "y": 0 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "24", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 28, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + }, + { + "id": "25", + "type": "class", + "pos": { + "x": 7752, + "y": 270 + }, + "width": 314, + "height": 230, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "N1", + "stroke": "N7", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": [ + { + "name": "1", + "type": "-----------------", + "visibility": "public" + } + ], + "methods": null, + "columns": null, + "label": "25", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 27, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 1, + "primaryAccentColor": "B2", + "secondaryAccentColor": "AA2", + "neutralAccentColor": "N2" + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } +} diff --git a/e2etests/testdata/regression/slow_grid/elk/sketch.exp.svg b/e2etests/testdata/regression/slow_grid/elk/sketch.exp.svg new file mode 100644 index 000000000..98c776505 --- /dev/null +++ b/e2etests/testdata/regression/slow_grid/elk/sketch.exp.svg @@ -0,0 +1,95 @@ +1+1------------------+2-------------------------------+3------------------------------+4-------------------------2+1-----------------+2----------------------------3+1-----------------+2----------------------------+3------------------------------+4-------------------------4+1----------------------------5+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------6+1----------------------------------------+2------------------------+3------------------------+4--------------------------------------7+1----------------------------------------+2---------------------+3------------------------+4--------------------------------------9+1----------------------+2-------------------------------------------+3-----------------------+4--------------------------+5-----------------------------+6-----------------------------+7--------------------------10+1-----------------11+1----------------+2---------------------------+3-----------------------------+4------------------------12+1----------------------+2-----------------------+3-------------+4-------------+5------------------------+6------------------------------------------------+7--------------------------13+1--------------------------------14+1----------------+2---------------------------+3-----------------------------+4------------------------15+1------------------------+2----------------------16+1----------------+2------------------------------17+1-----------------18+1----------------19+1-----------------20+1-----------------21+1----------------+2---------------------------+3-----------------------------+4------------------------22+1---------------------------------------------+2--------------------+3-----------------------+4-------------------------------------23+1----------------+2------------------------------24+1-----------------25+1----------------- + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/dagger_grid/dagre/board.exp.json b/e2etests/testdata/stable/dagger_grid/dagre/board.exp.json index b94be0069..3f138b658 100644 --- a/e2etests/testdata/stable/dagger_grid/dagre/board.exp.json +++ b/e2etests/testdata/stable/dagger_grid/dagre/board.exp.json @@ -256,7 +256,7 @@ "x": 280, "y": 140 }, - "width": 120, + "width": 100, "height": 100, "opacity": 1, "strokeDash": 0, @@ -294,10 +294,10 @@ "id": "flow8", "type": "rectangle", "pos": { - "x": 440, + "x": 420, "y": 140 }, - "width": 160, + "width": 170, "height": 100, "opacity": 1, "strokeDash": 0, @@ -335,10 +335,10 @@ "id": "flow9", "type": "rectangle", "pos": { - "x": 640, + "x": 630, "y": 140 }, - "width": 160, + "width": 170, "height": 100, "opacity": 1, "strokeDash": 0, @@ -473,7 +473,7 @@ "x": 0, "y": 508 }, - "width": 139, + "width": 123, "height": 66, "opacity": 1, "strokeDash": 0, @@ -511,10 +511,10 @@ "id": "WINDOWS", "type": "rectangle", "pos": { - "x": 179, + "x": 163, "y": 508 }, - "width": 117, + "width": 131, "height": 66, "opacity": 1, "strokeDash": 0, @@ -552,10 +552,10 @@ "id": "LINUX", "type": "rectangle", "pos": { - "x": 336, + "x": 334, "y": 508 }, - "width": 139, + "width": 122, "height": 66, "opacity": 1, "strokeDash": 0, @@ -593,10 +593,10 @@ "id": "MACOS", "type": "rectangle", "pos": { - "x": 515, + "x": 496, "y": 508 }, - "width": 106, + "width": 124, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/stable/dagger_grid/dagre/sketch.exp.svg b/e2etests/testdata/stable/dagger_grid/dagre/sketch.exp.svg index eddf6c362..9d4db3d0b 100644 --- a/e2etests/testdata/stable/dagger_grid/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/dagger_grid/dagre/sketch.exp.svg @@ -1,9 +1,9 @@ -DAGGER ENGINEANY DOCKER COMPATIBLE RUNTIMEANY CIWINDOWSLINUXMACOSKUBERNETES + .d2-433216611 .fill-N1{fill:#0A0F25;} + .d2-433216611 .fill-N2{fill:#676C7E;} + .d2-433216611 .fill-N3{fill:#9499AB;} + .d2-433216611 .fill-N4{fill:#CFD2DD;} + .d2-433216611 .fill-N5{fill:#DEE1EB;} + .d2-433216611 .fill-N6{fill:#EEF1F8;} + .d2-433216611 .fill-N7{fill:#FFFFFF;} + .d2-433216611 .fill-B1{fill:#0D32B2;} + .d2-433216611 .fill-B2{fill:#0D32B2;} + .d2-433216611 .fill-B3{fill:#E3E9FD;} + .d2-433216611 .fill-B4{fill:#E3E9FD;} + .d2-433216611 .fill-B5{fill:#EDF0FD;} + .d2-433216611 .fill-B6{fill:#F7F8FE;} + .d2-433216611 .fill-AA2{fill:#4A6FF3;} + .d2-433216611 .fill-AA4{fill:#EDF0FD;} + .d2-433216611 .fill-AA5{fill:#F7F8FE;} + .d2-433216611 .fill-AB4{fill:#EDF0FD;} + .d2-433216611 .fill-AB5{fill:#F7F8FE;} + .d2-433216611 .stroke-N1{stroke:#0A0F25;} + .d2-433216611 .stroke-N2{stroke:#676C7E;} + .d2-433216611 .stroke-N3{stroke:#9499AB;} + .d2-433216611 .stroke-N4{stroke:#CFD2DD;} + .d2-433216611 .stroke-N5{stroke:#DEE1EB;} + .d2-433216611 .stroke-N6{stroke:#EEF1F8;} + .d2-433216611 .stroke-N7{stroke:#FFFFFF;} + .d2-433216611 .stroke-B1{stroke:#0D32B2;} + .d2-433216611 .stroke-B2{stroke:#0D32B2;} + .d2-433216611 .stroke-B3{stroke:#E3E9FD;} + .d2-433216611 .stroke-B4{stroke:#E3E9FD;} + .d2-433216611 .stroke-B5{stroke:#EDF0FD;} + .d2-433216611 .stroke-B6{stroke:#F7F8FE;} + .d2-433216611 .stroke-AA2{stroke:#4A6FF3;} + .d2-433216611 .stroke-AA4{stroke:#EDF0FD;} + .d2-433216611 .stroke-AA5{stroke:#F7F8FE;} + .d2-433216611 .stroke-AB4{stroke:#EDF0FD;} + .d2-433216611 .stroke-AB5{stroke:#F7F8FE;} + .d2-433216611 .background-color-N1{background-color:#0A0F25;} + .d2-433216611 .background-color-N2{background-color:#676C7E;} + .d2-433216611 .background-color-N3{background-color:#9499AB;} + .d2-433216611 .background-color-N4{background-color:#CFD2DD;} + .d2-433216611 .background-color-N5{background-color:#DEE1EB;} + .d2-433216611 .background-color-N6{background-color:#EEF1F8;} + .d2-433216611 .background-color-N7{background-color:#FFFFFF;} + .d2-433216611 .background-color-B1{background-color:#0D32B2;} + .d2-433216611 .background-color-B2{background-color:#0D32B2;} + .d2-433216611 .background-color-B3{background-color:#E3E9FD;} + .d2-433216611 .background-color-B4{background-color:#E3E9FD;} + .d2-433216611 .background-color-B5{background-color:#EDF0FD;} + .d2-433216611 .background-color-B6{background-color:#F7F8FE;} + .d2-433216611 .background-color-AA2{background-color:#4A6FF3;} + .d2-433216611 .background-color-AA4{background-color:#EDF0FD;} + .d2-433216611 .background-color-AA5{background-color:#F7F8FE;} + .d2-433216611 .background-color-AB4{background-color:#EDF0FD;} + .d2-433216611 .background-color-AB5{background-color:#F7F8FE;} + .d2-433216611 .color-N1{color:#0A0F25;} + .d2-433216611 .color-N2{color:#676C7E;} + .d2-433216611 .color-N3{color:#9499AB;} + .d2-433216611 .color-N4{color:#CFD2DD;} + .d2-433216611 .color-N5{color:#DEE1EB;} + .d2-433216611 .color-N6{color:#EEF1F8;} + .d2-433216611 .color-N7{color:#FFFFFF;} + .d2-433216611 .color-B1{color:#0D32B2;} + .d2-433216611 .color-B2{color:#0D32B2;} + .d2-433216611 .color-B3{color:#E3E9FD;} + .d2-433216611 .color-B4{color:#E3E9FD;} + .d2-433216611 .color-B5{color:#EDF0FD;} + .d2-433216611 .color-B6{color:#F7F8FE;} + .d2-433216611 .color-AA2{color:#4A6FF3;} + .d2-433216611 .color-AA4{color:#EDF0FD;} + .d2-433216611 .color-AA5{color:#F7F8FE;} + .d2-433216611 .color-AB4{color:#EDF0FD;} + .d2-433216611 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>DAGGER ENGINEANY DOCKER COMPATIBLE RUNTIMEANY CIWINDOWSLINUXMACOSKUBERNETES \ No newline at end of file diff --git a/e2etests/testdata/stable/dagger_grid/elk/board.exp.json b/e2etests/testdata/stable/dagger_grid/elk/board.exp.json index b94be0069..3f138b658 100644 --- a/e2etests/testdata/stable/dagger_grid/elk/board.exp.json +++ b/e2etests/testdata/stable/dagger_grid/elk/board.exp.json @@ -256,7 +256,7 @@ "x": 280, "y": 140 }, - "width": 120, + "width": 100, "height": 100, "opacity": 1, "strokeDash": 0, @@ -294,10 +294,10 @@ "id": "flow8", "type": "rectangle", "pos": { - "x": 440, + "x": 420, "y": 140 }, - "width": 160, + "width": 170, "height": 100, "opacity": 1, "strokeDash": 0, @@ -335,10 +335,10 @@ "id": "flow9", "type": "rectangle", "pos": { - "x": 640, + "x": 630, "y": 140 }, - "width": 160, + "width": 170, "height": 100, "opacity": 1, "strokeDash": 0, @@ -473,7 +473,7 @@ "x": 0, "y": 508 }, - "width": 139, + "width": 123, "height": 66, "opacity": 1, "strokeDash": 0, @@ -511,10 +511,10 @@ "id": "WINDOWS", "type": "rectangle", "pos": { - "x": 179, + "x": 163, "y": 508 }, - "width": 117, + "width": 131, "height": 66, "opacity": 1, "strokeDash": 0, @@ -552,10 +552,10 @@ "id": "LINUX", "type": "rectangle", "pos": { - "x": 336, + "x": 334, "y": 508 }, - "width": 139, + "width": 122, "height": 66, "opacity": 1, "strokeDash": 0, @@ -593,10 +593,10 @@ "id": "MACOS", "type": "rectangle", "pos": { - "x": 515, + "x": 496, "y": 508 }, - "width": 106, + "width": 124, "height": 66, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/stable/dagger_grid/elk/sketch.exp.svg b/e2etests/testdata/stable/dagger_grid/elk/sketch.exp.svg index eddf6c362..9d4db3d0b 100644 --- a/e2etests/testdata/stable/dagger_grid/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/dagger_grid/elk/sketch.exp.svg @@ -1,9 +1,9 @@ -DAGGER ENGINEANY DOCKER COMPATIBLE RUNTIMEANY CIWINDOWSLINUXMACOSKUBERNETES + .d2-433216611 .fill-N1{fill:#0A0F25;} + .d2-433216611 .fill-N2{fill:#676C7E;} + .d2-433216611 .fill-N3{fill:#9499AB;} + .d2-433216611 .fill-N4{fill:#CFD2DD;} + .d2-433216611 .fill-N5{fill:#DEE1EB;} + .d2-433216611 .fill-N6{fill:#EEF1F8;} + .d2-433216611 .fill-N7{fill:#FFFFFF;} + .d2-433216611 .fill-B1{fill:#0D32B2;} + .d2-433216611 .fill-B2{fill:#0D32B2;} + .d2-433216611 .fill-B3{fill:#E3E9FD;} + .d2-433216611 .fill-B4{fill:#E3E9FD;} + .d2-433216611 .fill-B5{fill:#EDF0FD;} + .d2-433216611 .fill-B6{fill:#F7F8FE;} + .d2-433216611 .fill-AA2{fill:#4A6FF3;} + .d2-433216611 .fill-AA4{fill:#EDF0FD;} + .d2-433216611 .fill-AA5{fill:#F7F8FE;} + .d2-433216611 .fill-AB4{fill:#EDF0FD;} + .d2-433216611 .fill-AB5{fill:#F7F8FE;} + .d2-433216611 .stroke-N1{stroke:#0A0F25;} + .d2-433216611 .stroke-N2{stroke:#676C7E;} + .d2-433216611 .stroke-N3{stroke:#9499AB;} + .d2-433216611 .stroke-N4{stroke:#CFD2DD;} + .d2-433216611 .stroke-N5{stroke:#DEE1EB;} + .d2-433216611 .stroke-N6{stroke:#EEF1F8;} + .d2-433216611 .stroke-N7{stroke:#FFFFFF;} + .d2-433216611 .stroke-B1{stroke:#0D32B2;} + .d2-433216611 .stroke-B2{stroke:#0D32B2;} + .d2-433216611 .stroke-B3{stroke:#E3E9FD;} + .d2-433216611 .stroke-B4{stroke:#E3E9FD;} + .d2-433216611 .stroke-B5{stroke:#EDF0FD;} + .d2-433216611 .stroke-B6{stroke:#F7F8FE;} + .d2-433216611 .stroke-AA2{stroke:#4A6FF3;} + .d2-433216611 .stroke-AA4{stroke:#EDF0FD;} + .d2-433216611 .stroke-AA5{stroke:#F7F8FE;} + .d2-433216611 .stroke-AB4{stroke:#EDF0FD;} + .d2-433216611 .stroke-AB5{stroke:#F7F8FE;} + .d2-433216611 .background-color-N1{background-color:#0A0F25;} + .d2-433216611 .background-color-N2{background-color:#676C7E;} + .d2-433216611 .background-color-N3{background-color:#9499AB;} + .d2-433216611 .background-color-N4{background-color:#CFD2DD;} + .d2-433216611 .background-color-N5{background-color:#DEE1EB;} + .d2-433216611 .background-color-N6{background-color:#EEF1F8;} + .d2-433216611 .background-color-N7{background-color:#FFFFFF;} + .d2-433216611 .background-color-B1{background-color:#0D32B2;} + .d2-433216611 .background-color-B2{background-color:#0D32B2;} + .d2-433216611 .background-color-B3{background-color:#E3E9FD;} + .d2-433216611 .background-color-B4{background-color:#E3E9FD;} + .d2-433216611 .background-color-B5{background-color:#EDF0FD;} + .d2-433216611 .background-color-B6{background-color:#F7F8FE;} + .d2-433216611 .background-color-AA2{background-color:#4A6FF3;} + .d2-433216611 .background-color-AA4{background-color:#EDF0FD;} + .d2-433216611 .background-color-AA5{background-color:#F7F8FE;} + .d2-433216611 .background-color-AB4{background-color:#EDF0FD;} + .d2-433216611 .background-color-AB5{background-color:#F7F8FE;} + .d2-433216611 .color-N1{color:#0A0F25;} + .d2-433216611 .color-N2{color:#676C7E;} + .d2-433216611 .color-N3{color:#9499AB;} + .d2-433216611 .color-N4{color:#CFD2DD;} + .d2-433216611 .color-N5{color:#DEE1EB;} + .d2-433216611 .color-N6{color:#EEF1F8;} + .d2-433216611 .color-N7{color:#FFFFFF;} + .d2-433216611 .color-B1{color:#0D32B2;} + .d2-433216611 .color-B2{color:#0D32B2;} + .d2-433216611 .color-B3{color:#E3E9FD;} + .d2-433216611 .color-B4{color:#E3E9FD;} + .d2-433216611 .color-B5{color:#EDF0FD;} + .d2-433216611 .color-B6{color:#F7F8FE;} + .d2-433216611 .color-AA2{color:#4A6FF3;} + .d2-433216611 .color-AA4{color:#EDF0FD;} + .d2-433216611 .color-AA5{color:#F7F8FE;} + .d2-433216611 .color-AB4{color:#EDF0FD;} + .d2-433216611 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]>DAGGER ENGINEANY DOCKER COMPATIBLE RUNTIMEANY CIWINDOWSLINUXMACOSKUBERNETES \ No newline at end of file diff --git a/e2etests/testdata/stable/grid_even/dagre/board.exp.json b/e2etests/testdata/stable/grid_even/dagre/board.exp.json new file mode 100644 index 000000000..ea41292ec --- /dev/null +++ b/e2etests/testdata/stable/grid_even/dagre/board.exp.json @@ -0,0 +1,1524 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "row no growth", + "type": "rectangle", + "pos": { + "x": 0, + "y": 629 + }, + "width": 740, + "height": 282, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "row no growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 168, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "row no growth.a", + "type": "rectangle", + "pos": { + "x": 60, + "y": 689 + }, + "width": 620, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.b", + "type": "rectangle", + "pos": { + "x": 60, + "y": 790 + }, + "width": 200, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.c", + "type": "rectangle", + "pos": { + "x": 300, + "y": 790 + }, + "width": 150, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.d", + "type": "rectangle", + "pos": { + "x": 490, + "y": 790 + }, + "width": 100, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.e", + "type": "rectangle", + "pos": { + "x": 630, + "y": 790 + }, + "width": 50, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth", + "type": "rectangle", + "pos": { + "x": 800, + "y": 629 + }, + "width": 940, + "height": 282, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "row 200 growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 179, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "row 200 growth.a", + "type": "rectangle", + "pos": { + "x": 860, + "y": 689 + }, + "width": 820, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.b", + "type": "rectangle", + "pos": { + "x": 860, + "y": 790 + }, + "width": 200, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.c", + "type": "rectangle", + "pos": { + "x": 1100, + "y": 790 + }, + "width": 183, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.d", + "type": "rectangle", + "pos": { + "x": 1323, + "y": 790 + }, + "width": 166, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.e", + "type": "rectangle", + "pos": { + "x": 1530, + "y": 790 + }, + "width": 150, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth", + "type": "rectangle", + "pos": { + "x": 1800, + "y": 629 + }, + "width": 1540, + "height": 282, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "row big growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 174, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "row big growth.a", + "type": "rectangle", + "pos": { + "x": 1860, + "y": 689 + }, + "width": 1420, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.b", + "type": "rectangle", + "pos": { + "x": 1860, + "y": 790 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.c", + "type": "rectangle", + "pos": { + "x": 2225, + "y": 790 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.d", + "type": "rectangle", + "pos": { + "x": 2590, + "y": 790 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.e", + "type": "rectangle", + "pos": { + "x": 2955, + "y": 790 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth", + "type": "rectangle", + "pos": { + "x": 3400, + "y": 400 + }, + "width": 257, + "height": 740, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "column no growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 213, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "column no growth.a", + "type": "rectangle", + "pos": { + "x": 3460, + "y": 460 + }, + "width": 48, + "height": 620, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.b", + "type": "rectangle", + "pos": { + "x": 3548, + "y": 460 + }, + "width": 49, + "height": 200, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.c", + "type": "rectangle", + "pos": { + "x": 3548, + "y": 700 + }, + "width": 49, + "height": 150, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.d", + "type": "rectangle", + "pos": { + "x": 3548, + "y": 890 + }, + "width": 49, + "height": 100, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.e", + "type": "rectangle", + "pos": { + "x": 3548, + "y": 1030 + }, + "width": 49, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth", + "type": "rectangle", + "pos": { + "x": 3717, + "y": 300 + }, + "width": 257, + "height": 940, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "column 200 growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 224, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "column 200 growth.a", + "type": "rectangle", + "pos": { + "x": 3777, + "y": 360 + }, + "width": 48, + "height": 820, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.b", + "type": "rectangle", + "pos": { + "x": 3865, + "y": 360 + }, + "width": 49, + "height": 200, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.c", + "type": "rectangle", + "pos": { + "x": 3865, + "y": 600 + }, + "width": 49, + "height": 183, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.d", + "type": "rectangle", + "pos": { + "x": 3865, + "y": 823 + }, + "width": 49, + "height": 166, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.e", + "type": "rectangle", + "pos": { + "x": 3865, + "y": 1030 + }, + "width": 49, + "height": 150, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth", + "type": "rectangle", + "pos": { + "x": 4034, + "y": 0 + }, + "width": 257, + "height": 1540, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "column big growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 219, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "column big growth.a", + "type": "rectangle", + "pos": { + "x": 4094, + "y": 60 + }, + "width": 48, + "height": 1420, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.b", + "type": "rectangle", + "pos": { + "x": 4182, + "y": 60 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.c", + "type": "rectangle", + "pos": { + "x": 4182, + "y": 425 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.d", + "type": "rectangle", + "pos": { + "x": 4182, + "y": 790 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.e", + "type": "rectangle", + "pos": { + "x": 4182, + "y": 1155 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } +} diff --git a/e2etests/testdata/stable/grid_even/dagre/sketch.exp.svg b/e2etests/testdata/stable/grid_even/dagre/sketch.exp.svg new file mode 100644 index 000000000..fdf6c069f --- /dev/null +++ b/e2etests/testdata/stable/grid_even/dagre/sketch.exp.svg @@ -0,0 +1,102 @@ +row no growthrow 200 growthrow big growthcolumn no growthcolumn 200 growthcolumn big growthabcdeabcdeabcdeabcdeabcdeabcde + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/grid_even/elk/board.exp.json b/e2etests/testdata/stable/grid_even/elk/board.exp.json new file mode 100644 index 000000000..b02a67867 --- /dev/null +++ b/e2etests/testdata/stable/grid_even/elk/board.exp.json @@ -0,0 +1,1524 @@ +{ + "name": "", + "isFolderOnly": false, + "fontFamily": "SourceSansPro", + "shapes": [ + { + "id": "row no growth", + "type": "rectangle", + "pos": { + "x": 12, + "y": 641 + }, + "width": 740, + "height": 282, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "row no growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 168, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "row no growth.a", + "type": "rectangle", + "pos": { + "x": 72, + "y": 701 + }, + "width": 620, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.b", + "type": "rectangle", + "pos": { + "x": 72, + "y": 802 + }, + "width": 200, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.c", + "type": "rectangle", + "pos": { + "x": 312, + "y": 802 + }, + "width": 150, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.d", + "type": "rectangle", + "pos": { + "x": 502, + "y": 802 + }, + "width": 100, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row no growth.e", + "type": "rectangle", + "pos": { + "x": 642, + "y": 802 + }, + "width": 50, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth", + "type": "rectangle", + "pos": { + "x": 772, + "y": 641 + }, + "width": 940, + "height": 282, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "row 200 growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 179, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "row 200 growth.a", + "type": "rectangle", + "pos": { + "x": 832, + "y": 701 + }, + "width": 820, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.b", + "type": "rectangle", + "pos": { + "x": 832, + "y": 802 + }, + "width": 200, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.c", + "type": "rectangle", + "pos": { + "x": 1072, + "y": 802 + }, + "width": 183, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.d", + "type": "rectangle", + "pos": { + "x": 1295, + "y": 802 + }, + "width": 166, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row 200 growth.e", + "type": "rectangle", + "pos": { + "x": 1502, + "y": 802 + }, + "width": 150, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth", + "type": "rectangle", + "pos": { + "x": 1732, + "y": 641 + }, + "width": 1540, + "height": 282, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "row big growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 174, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "row big growth.a", + "type": "rectangle", + "pos": { + "x": 1792, + "y": 701 + }, + "width": 1420, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.b", + "type": "rectangle", + "pos": { + "x": 1792, + "y": 802 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.c", + "type": "rectangle", + "pos": { + "x": 2157, + "y": 802 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.d", + "type": "rectangle", + "pos": { + "x": 2522, + "y": 802 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "row big growth.e", + "type": "rectangle", + "pos": { + "x": 2887, + "y": 802 + }, + "width": 325, + "height": 61, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth", + "type": "rectangle", + "pos": { + "x": 3292, + "y": 412 + }, + "width": 257, + "height": 740, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "column no growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 213, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "column no growth.a", + "type": "rectangle", + "pos": { + "x": 3352, + "y": 472 + }, + "width": 48, + "height": 620, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.b", + "type": "rectangle", + "pos": { + "x": 3440, + "y": 472 + }, + "width": 49, + "height": 200, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.c", + "type": "rectangle", + "pos": { + "x": 3440, + "y": 712 + }, + "width": 49, + "height": 150, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.d", + "type": "rectangle", + "pos": { + "x": 3440, + "y": 902 + }, + "width": 49, + "height": 100, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column no growth.e", + "type": "rectangle", + "pos": { + "x": 3440, + "y": 1042 + }, + "width": 49, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth", + "type": "rectangle", + "pos": { + "x": 3569, + "y": 312 + }, + "width": 257, + "height": 940, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "column 200 growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 224, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "column 200 growth.a", + "type": "rectangle", + "pos": { + "x": 3629, + "y": 372 + }, + "width": 48, + "height": 820, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.b", + "type": "rectangle", + "pos": { + "x": 3717, + "y": 372 + }, + "width": 49, + "height": 200, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.c", + "type": "rectangle", + "pos": { + "x": 3717, + "y": 612 + }, + "width": 49, + "height": 183, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.d", + "type": "rectangle", + "pos": { + "x": 3717, + "y": 835 + }, + "width": 49, + "height": 166, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column 200 growth.e", + "type": "rectangle", + "pos": { + "x": 3717, + "y": 1042 + }, + "width": 49, + "height": 150, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth", + "type": "rectangle", + "pos": { + "x": 3846, + "y": 12 + }, + "width": 257, + "height": 1540, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B4", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "column big growth", + "fontSize": 28, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 219, + "labelHeight": 36, + "labelPosition": "INSIDE_TOP_CENTER", + "zIndex": 0, + "level": 1 + }, + { + "id": "column big growth.a", + "type": "rectangle", + "pos": { + "x": 3906, + "y": 72 + }, + "width": 48, + "height": 1420, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "a", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.b", + "type": "rectangle", + "pos": { + "x": 3994, + "y": 72 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "b", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.c", + "type": "rectangle", + "pos": { + "x": 3994, + "y": 437 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "c", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.d", + "type": "rectangle", + "pos": { + "x": 3994, + "y": 802 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "d", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 9, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "column big growth.e", + "type": "rectangle", + "pos": { + "x": 3994, + "y": 1167 + }, + "width": 49, + "height": 325, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "B5", + "stroke": "B1", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "e", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "N1", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 8, + "labelHeight": 21, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + } + ], + "connections": [], + "root": { + "id": "", + "type": "", + "pos": { + "x": 0, + "y": 0 + }, + "width": 0, + "height": 0, + "opacity": 0, + "strokeDash": 0, + "strokeWidth": 0, + "borderRadius": 0, + "fill": "N7", + "stroke": "", + "shadow": false, + "3d": false, + "multiple": false, + "double-border": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "blend": false, + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 0, + "fontFamily": "", + "language": "", + "color": "", + "italic": false, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "zIndex": 0, + "level": 0 + } +} diff --git a/e2etests/testdata/stable/grid_even/elk/sketch.exp.svg b/e2etests/testdata/stable/grid_even/elk/sketch.exp.svg new file mode 100644 index 000000000..277049168 --- /dev/null +++ b/e2etests/testdata/stable/grid_even/elk/sketch.exp.svg @@ -0,0 +1,102 @@ +row no growthrow 200 growthrow big growthcolumn no growthcolumn 200 growthcolumn big growthabcdeabcdeabcdeabcdeabcdeabcde + + + \ No newline at end of file diff --git a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json index db283cb2e..97990838d 100644 --- a/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/dagre/board.exp.json @@ -955,7 +955,7 @@ "x": 2204, "y": 292 }, - "width": 108, + "width": 103, "height": 92, "opacity": 1, "strokeDash": 0, @@ -1005,7 +1005,7 @@ "id": "infra.Kubernetes", "type": "rectangle", "pos": { - "x": 2352, + "x": 2347, "y": 292 }, "width": 152, @@ -1058,10 +1058,10 @@ "id": "infra.My SQL", "type": "rectangle", "pos": { - "x": 2544, + "x": 2539, "y": 292 }, - "width": 122, + "width": 126, "height": 92, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg index ec8b16e95..99ac615a4 100644 --- a/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/teleport_grid/dagre/sketch.exp.svg @@ -1,27 +1,27 @@ -TeleportJust-in-time Access viaInfrastructureIndentity ProviderEngineersMachinesHTTPS://> kubectl> tsh> apiDB Clients

Identity Native Proxy

-
Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged +Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged
\ No newline at end of file diff --git a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json index 6b789e179..739c31757 100644 --- a/e2etests/testdata/stable/teleport_grid/elk/board.exp.json +++ b/e2etests/testdata/stable/teleport_grid/elk/board.exp.json @@ -955,7 +955,7 @@ "x": 1323, "y": 210 }, - "width": 108, + "width": 103, "height": 92, "opacity": 1, "strokeDash": 0, @@ -1005,7 +1005,7 @@ "id": "infra.Kubernetes", "type": "rectangle", "pos": { - "x": 1471, + "x": 1466, "y": 210 }, "width": 152, @@ -1058,10 +1058,10 @@ "id": "infra.My SQL", "type": "rectangle", "pos": { - "x": 1663, + "x": 1658, "y": 210 }, - "width": 122, + "width": 126, "height": 92, "opacity": 1, "strokeDash": 0, diff --git a/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg b/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg index e81e82ff5..b2e35693f 100644 --- a/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg +++ b/e2etests/testdata/stable/teleport_grid/elk/sketch.exp.svg @@ -1,27 +1,27 @@ -TeleportJust-in-time Access viaInfrastructureIndentity ProviderEngineersMachinesHTTPS://> kubectl> tsh> apiDB Clients

Identity Native Proxy

-
Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged +Audit LogCert AuthoritySlackMattermostJiraPagerdutyEmailsshKubernetesMy SQLMongoDBPSQLWindows all connections audited and logged
\ No newline at end of file