diff --git a/d2layouts/d2sequence/layout.go b/d2layouts/d2sequence/layout.go index 41c5ad677..92ba3923f 100644 --- a/d2layouts/d2sequence/layout.go +++ b/d2layouts/d2sequence/layout.go @@ -58,7 +58,7 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte layoutObjects, objectOrder := getLayoutObjects(g, objectsToRemove) g.Objects = layoutObjects - if g.Root.Attributes.Shape.Value == d2target.ShapeSequenceDiagram { + if isRootSequenceDiagram(g) { // don't need to run the layout engine if the root is a sequence diagram g.Root.TopLeft = geo.NewPoint(0, 0) } else if err := layout(ctx, g); err != nil { @@ -66,10 +66,13 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte } cleanup(g, sequenceDiagrams, objectOrder, edgeOrder) - return nil } +func isRootSequenceDiagram(g *d2graph.Graph) bool { + return g.Root.Attributes.Shape.Value == d2target.ShapeSequenceDiagram +} + // layoutSequenceDiagram finds the edges inside the sequence diagram and performs the layout on the object descendants func layoutSequenceDiagram(g *d2graph.Graph, obj *d2graph.Object) *sequenceDiagram { // find the edges that belong to this sequence diagram @@ -119,7 +122,13 @@ func getLayoutObjects(g *d2graph.Graph, toRemove map[*d2graph.Object]struct{}) ( // - adds the sequence diagram descendants back to the graph objects // - sorts edges and objects to their original graph order func cleanup(g *d2graph.Graph, sequenceDiagrams map[string]*sequenceDiagram, objectsOrder, edgesOrder map[string]int) { - for _, obj := range g.Objects { + var objects []*d2graph.Object + if isRootSequenceDiagram(g) { + objects = []*d2graph.Object{g.Root} + } else { + objects = g.Objects + } + for _, obj := range objects { if _, exists := sequenceDiagrams[obj.AbsID()]; !exists { continue } diff --git a/d2layouts/d2sequence/layout_test.go b/d2layouts/d2sequence/layout_test.go index c5fb32102..cd8974922 100644 --- a/d2layouts/d2sequence/layout_test.go +++ b/d2layouts/d2sequence/layout_test.go @@ -34,26 +34,30 @@ func TestBasicSequenceDiagram(t *testing.T) { g.Edges = []*d2graph.Edge{ { - Src: n1, - Dst: n2, + Src: n1, + Dst: n2, + Index: 0, Attributes: d2graph.Attributes{ Label: d2graph.Scalar{Value: "left to right"}, }, }, { - Src: n2, - Dst: n1, + Src: n2, + Dst: n1, + Index: 0, Attributes: d2graph.Attributes{ Label: d2graph.Scalar{Value: "right to left"}, }, }, { - Src: n1, - Dst: n2, + Src: n1, + Dst: n2, + Index: 1, }, { - Src: n2, - Dst: n1, + Src: n2, + Dst: n1, + Index: 1, }, } nEdges := len(g.Edges) @@ -187,17 +191,21 @@ func TestSpansSequenceDiagram(t *testing.T) { g.Edges = []*d2graph.Edge{ { - Src: a_t1, - Dst: b_t1, + Src: a_t1, + Dst: b_t1, + Index: 0, }, { - Src: b_t1, - Dst: a_t1, + Src: b_t1, + Dst: a_t1, + Index: 0, }, { - Src: a_t2, - Dst: b, + Src: a_t2, + Dst: b, + Index: 0, }, { - Src: b, - Dst: a_t2, + Src: b, + Dst: a_t2, + Index: 0, }, } diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json index eebdb468d..6de7efd8b 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/board.exp.json @@ -1,2195 +1,11 @@ { "name": "", "shapes": [ - { - "id": "finally.sequence.scorer", - "type": "", - "pos": { - "x": 687, - "y": 3000 - }, - "width": 158, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "scorer", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 58, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "finally.sequence.concept", - "type": "", - "pos": { - "x": 1045, - "y": 3000 - }, - "width": 174, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "concept", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 74, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "finally.sequence.essayRubric", - "type": "", - "pos": { - "x": 1419, - "y": 3000 - }, - "width": 206, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "essayRubric", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 106, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "finally.sequence.item", - "type": "", - "pos": { - "x": 1825, - "y": 3000 - }, - "width": 143, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "item", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 43, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "finally.sequence.itemOutcome", - "type": "", - "pos": { - "x": 2168, - "y": 3000 - }, - "width": 221, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "itemOutcome", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 121, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "finally.sequence.itemResponse", - "type": "", - "pos": { - "x": 2589, - "y": 3000 - }, - "width": 225, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "itemResponse", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 125, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "a_sequence.scorer", - "type": "", - "pos": { - "x": 2483, - "y": 414 - }, - "width": 169, - "height": 136, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#EDF0FD", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "scorer", - "fontSize": 24, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 69, - "labelHeight": 36, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 2 - }, - { - "id": "a_sequence.scorer.t", - "type": "rectangle", - "pos": { - "x": 2552, - "y": 695 - }, - "width": 30, - "height": 1810, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.itemResponse", - "type": "", - "pos": { - "x": 2852, - "y": 414 - }, - "width": 246, - "height": 136, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#EDF0FD", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "itemResponse", - "fontSize": 24, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 146, - "labelHeight": 36, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 2 - }, - { - "id": "a_sequence.itemResponse.t", - "type": "rectangle", - "pos": { - "x": 2960, - "y": 695 - }, - "width": 30, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.item", - "type": "", - "pos": { - "x": 3298, - "y": 414 - }, - "width": 149, - "height": 136, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#EDF0FD", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "item", - "fontSize": 24, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 49, - "labelHeight": 36, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 2 - }, - { - "id": "a_sequence.item.t1", - "type": "rectangle", - "pos": { - "x": 3357, - "y": 995 - }, - "width": 30, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.essayRubric", - "type": "", - "pos": { - "x": 3647, - "y": 414 - }, - "width": 225, - "height": 136, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#EDF0FD", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "essayRubric", - "fontSize": 24, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 125, - "labelHeight": 36, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 2 - }, - { - "id": "a_sequence.essayRubric.t", - "type": "rectangle", - "pos": { - "x": 3744, - "y": 1295 - }, - "width": 30, - "height": 460, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 31, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.essayRubric.t.c", - "type": "rectangle", - "pos": { - "x": 3739, - "y": 1445 - }, - "width": 40, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "a_sequence.concept", - "type": "", - "pos": { - "x": 4072, - "y": 414 - }, - "width": 186, - "height": 136, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#EDF0FD", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "concept", - "fontSize": 24, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 86, - "labelHeight": 36, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 2 - }, - { - "id": "a_sequence.concept.t", - "type": "rectangle", - "pos": { - "x": 4150, - "y": 1595 - }, - "width": 30, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.itemOutcome", - "type": "", - "pos": { - "x": 4458, - "y": 414 - }, - "width": 242, - "height": 136, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#EDF0FD", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "itemOutcome", - "fontSize": 24, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 142, - "labelHeight": 36, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 2 - }, - { - "id": "a_sequence.itemOutcome.t1", - "type": "rectangle", - "pos": { - "x": 4564, - "y": 1895 - }, - "width": 30, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.item.t2", - "type": "rectangle", - "pos": { - "x": 3357, - "y": 2045 - }, - "width": 30, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.item.t3", - "type": "rectangle", - "pos": { - "x": 3357, - "y": 2195 - }, - "width": 30, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.itemOutcome.t2", - "type": "rectangle", - "pos": { - "x": 4564, - "y": 2345 - }, - "width": 30, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "a_sequence.itemOutcome.t3", - "type": "rectangle", - "pos": { - "x": 4564, - "y": 2495 - }, - "width": 30, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 3 - }, - { - "id": "another.sequence.scorer", - "type": "", - "pos": { - "x": 90, - "y": 417 - }, - "width": 158, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "scorer", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 58, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "another.sequence.scorer.t", - "type": "rectangle", - "pos": { - "x": 149, - "y": 693 - }, - "width": 40, - "height": 1810, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.itemResponse", - "type": "", - "pos": { - "x": 448, - "y": 417 - }, - "width": 225, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "itemResponse", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 125, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "another.sequence.itemResponse.t", - "type": "rectangle", - "pos": { - "x": 540, - "y": 693 - }, - "width": 40, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.item", - "type": "", - "pos": { - "x": 873, - "y": 417 - }, - "width": 143, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "item", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 43, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "another.sequence.item.t1", - "type": "rectangle", - "pos": { - "x": 924, - "y": 993 - }, - "width": 40, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.essayRubric", - "type": "", - "pos": { - "x": 1216, - "y": 417 - }, - "width": 206, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "essayRubric", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 106, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "another.sequence.essayRubric.t", - "type": "rectangle", - "pos": { - "x": 1299, - "y": 1293 - }, - "width": 40, - "height": 460, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.essayRubric.t.c", - "type": "rectangle", - "pos": { - "x": 1294, - "y": 1443 - }, - "width": 50, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 5 - }, - { - "id": "another.sequence.concept", - "type": "", - "pos": { - "x": 1622, - "y": 417 - }, - "width": 174, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "concept", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 74, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "another.sequence.concept.t", - "type": "rectangle", - "pos": { - "x": 1689, - "y": 1593 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 11, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.itemOutcome", - "type": "", - "pos": { - "x": 1996, - "y": 417 - }, - "width": 221, - "height": 131, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#F7F8FE", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "itemOutcome", - "fontSize": 20, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 121, - "labelHeight": 31, - "labelPosition": "INSIDE_MIDDLE_CENTER", - "zIndex": 0, - "level": 3 - }, - { - "id": "another.sequence.itemOutcome.t1", - "type": "rectangle", - "pos": { - "x": 2086, - "y": 1893 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.item.t2", - "type": "rectangle", - "pos": { - "x": 924, - "y": 2043 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.item.t3", - "type": "rectangle", - "pos": { - "x": 924, - "y": 2193 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.itemOutcome.t2", - "type": "rectangle", - "pos": { - "x": 2086, - "y": 2343 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "another.sequence.itemOutcome.t3", - "type": "rectangle", - "pos": { - "x": 2086, - "y": 2493 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 20, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.itemResponse.a", - "type": "rectangle", - "pos": { - "x": 2681, - "y": 3276 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.item.a", - "type": "rectangle", - "pos": { - "x": 1876, - "y": 3266 - }, - "width": 40, - "height": 770, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.item.a.b", - "type": "rectangle", - "pos": { - "x": 1871, - "y": 3276 - }, - "width": 50, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 5 - }, - { - "id": "finally.sequence.essayRubric.a", - "type": "rectangle", - "pos": { - "x": 1502, - "y": 3406 - }, - "width": 40, - "height": 340, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.essayRubric.a.b", - "type": "rectangle", - "pos": { - "x": 1497, - "y": 3416 - }, - "width": 50, - "height": 320, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 5 - }, - { - "id": "finally.sequence.essayRubric.a.b.c", - "type": "rectangle", - "pos": { - "x": 1492, - "y": 3426 - }, - "width": 60, - "height": 160, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 6 - }, - { - "id": "finally.sequence.concept.a", - "type": "rectangle", - "pos": { - "x": 1112, - "y": 3546 - }, - "width": 40, - "height": 370, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.concept.a.b", - "type": "rectangle", - "pos": { - "x": 1107, - "y": 3556 - }, - "width": 50, - "height": 350, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 5 - }, - { - "id": "finally.sequence.concept.a.b.c", - "type": "rectangle", - "pos": { - "x": 1102, - "y": 3566 - }, - "width": 60, - "height": 330, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 26, - "zIndex": 1, - "level": 6 - }, - { - "id": "finally.sequence.concept.a.b.c.d", - "type": "rectangle", - "pos": { - "x": 1097, - "y": 3576 - }, - "width": 70, - "height": 310, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 14, - "labelHeight": 26, - "zIndex": 1, - "level": 7 - }, - { - "id": "finally.sequence.itemOutcome.a", - "type": "rectangle", - "pos": { - "x": 2258, - "y": 3836 - }, - "width": 40, - "height": 390, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.itemOutcome.a.b", - "type": "rectangle", - "pos": { - "x": 2253, - "y": 3846 - }, - "width": 50, - "height": 370, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 5 - }, - { - "id": "finally.sequence.itemOutcome.a.b.c", - "type": "rectangle", - "pos": { - "x": 2248, - "y": 3856 - }, - "width": 60, - "height": 350, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 12, - "labelHeight": 26, - "zIndex": 1, - "level": 6 - }, - { - "id": "finally.sequence.itemOutcome.a.b.c.d", - "type": "rectangle", - "pos": { - "x": 2243, - "y": 3866 - }, - "width": 70, - "height": 330, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 7 - }, - { - "id": "finally.sequence.itemOutcome.a.b.c.d.e", - "type": "rectangle", - "pos": { - "x": 2238, - "y": 3876 - }, - "width": 80, - "height": 310, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 8 - }, - { - "id": "finally.sequence.scorer.abc", - "type": "rectangle", - "pos": { - "x": 746, - "y": 4026 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 31, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, - { - "id": "finally.sequence.itemResponse.c", - "type": "rectangle", - "pos": { - "x": 2681, - "y": 4326 - }, - "width": 40, - "height": 50, - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "borderRadius": 0, - "fill": "#FFFFFF", - "stroke": "#0D32B2", - "shadow": false, - "3d": false, - "multiple": false, - "tooltip": "", - "link": "", - "icon": null, - "iconPosition": "", - "fields": null, - "methods": null, - "columns": null, - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#0A0F25", - "italic": false, - "bold": true, - "underline": false, - "labelWidth": 13, - "labelHeight": 26, - "zIndex": 1, - "level": 4 - }, { "id": "a_shape", "type": "oval", "pos": { - "x": 2265, + "x": 2185, "y": 0 }, "width": 164, @@ -2228,11 +44,11 @@ "id": "a_sequence", "type": "sequence_diagram", "pos": { - "x": 2433, - "y": 264 + "x": 2363, + "y": 314 }, - "width": 2317, - "height": 2486, + "width": 2217, + "height": 2286, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2270,8 +86,8 @@ "x": 0, "y": 264 }, - "width": 2307, - "height": 2486, + "width": 2227, + "height": 2386, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2306,11 +122,11 @@ "id": "another.sequence", "type": "sequence_diagram", "pos": { - "x": 40, - "y": 314 + "x": 50, + "y": 317 }, - "width": 2227, - "height": 2386, + "width": 2127, + "height": 2281, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2346,10 +162,10 @@ "type": "queue", "pos": { "x": 517, - "y": 2850 + "y": 2750 }, - "width": 2447, - "height": 1731, + "width": 2327, + "height": 1631, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2384,11 +200,11 @@ "id": "finally.sequence", "type": "sequence_diagram", "pos": { - "x": 557, - "y": 2900 + "x": 627, + "y": 2800 }, - "width": 2367, - "height": 1631, + "width": 2127, + "height": 1531, "opacity": 1, "strokeDash": 0, "strokeWidth": 2, @@ -2419,12 +235,1550 @@ "zIndex": 0, "level": 2 }, + { + "id": "finally.sequence.scorer", + "type": "", + "pos": { + "x": 627, + "y": 2850 + }, + "width": 158, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "scorer", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 58, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "finally.sequence.concept", + "type": "", + "pos": { + "x": 985, + "y": 2850 + }, + "width": 174, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "concept", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 74, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "finally.sequence.essayRubric", + "type": "", + "pos": { + "x": 1359, + "y": 2850 + }, + "width": 206, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "essayRubric", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 106, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "finally.sequence.item", + "type": "", + "pos": { + "x": 1765, + "y": 2850 + }, + "width": 143, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "item", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 43, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "finally.sequence.itemOutcome", + "type": "", + "pos": { + "x": 2108, + "y": 2850 + }, + "width": 221, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "itemOutcome", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 121, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "finally.sequence.itemResponse", + "type": "", + "pos": { + "x": 2529, + "y": 2850 + }, + "width": 225, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "itemResponse", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 125, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "a_sequence.scorer", + "type": "", + "pos": { + "x": 2363, + "y": 364 + }, + "width": 169, + "height": 136, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#EDF0FD", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "scorer", + "fontSize": 24, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 69, + "labelHeight": 36, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "a_sequence.scorer.t", + "type": "rectangle", + "pos": { + "x": 2432, + "y": 645 + }, + "width": 30, + "height": 1810, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.itemResponse", + "type": "", + "pos": { + "x": 2732, + "y": 364 + }, + "width": 246, + "height": 136, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#EDF0FD", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "itemResponse", + "fontSize": 24, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 146, + "labelHeight": 36, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "a_sequence.itemResponse.t", + "type": "rectangle", + "pos": { + "x": 2840, + "y": 645 + }, + "width": 30, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.item", + "type": "", + "pos": { + "x": 3178, + "y": 364 + }, + "width": 149, + "height": 136, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#EDF0FD", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "item", + "fontSize": 24, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 49, + "labelHeight": 36, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "a_sequence.item.t1", + "type": "rectangle", + "pos": { + "x": 3237, + "y": 945 + }, + "width": 30, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.essayRubric", + "type": "", + "pos": { + "x": 3527, + "y": 364 + }, + "width": 225, + "height": 136, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#EDF0FD", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "essayRubric", + "fontSize": 24, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 125, + "labelHeight": 36, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "a_sequence.essayRubric.t", + "type": "rectangle", + "pos": { + "x": 3624, + "y": 1245 + }, + "width": 30, + "height": 460, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 31, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.essayRubric.t.c", + "type": "rectangle", + "pos": { + "x": 3619, + "y": 1395 + }, + "width": 40, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "a_sequence.concept", + "type": "", + "pos": { + "x": 3952, + "y": 364 + }, + "width": 186, + "height": 136, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#EDF0FD", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "concept", + "fontSize": 24, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 86, + "labelHeight": 36, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "a_sequence.concept.t", + "type": "rectangle", + "pos": { + "x": 4030, + "y": 1545 + }, + "width": 30, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.itemOutcome", + "type": "", + "pos": { + "x": 4338, + "y": 364 + }, + "width": 242, + "height": 136, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#EDF0FD", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "itemOutcome", + "fontSize": 24, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 142, + "labelHeight": 36, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 2 + }, + { + "id": "a_sequence.itemOutcome.t1", + "type": "rectangle", + "pos": { + "x": 4444, + "y": 1845 + }, + "width": 30, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.item.t2", + "type": "rectangle", + "pos": { + "x": 3237, + "y": 1995 + }, + "width": 30, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.item.t3", + "type": "rectangle", + "pos": { + "x": 3237, + "y": 2145 + }, + "width": 30, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.itemOutcome.t2", + "type": "rectangle", + "pos": { + "x": 4444, + "y": 2295 + }, + "width": 30, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "a_sequence.itemOutcome.t3", + "type": "rectangle", + "pos": { + "x": 4444, + "y": 2445 + }, + "width": 30, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 3 + }, + { + "id": "another.sequence.scorer", + "type": "", + "pos": { + "x": 50, + "y": 367 + }, + "width": 158, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "scorer", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 58, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "another.sequence.scorer.t", + "type": "rectangle", + "pos": { + "x": 109, + "y": 643 + }, + "width": 40, + "height": 1810, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.itemResponse", + "type": "", + "pos": { + "x": 408, + "y": 367 + }, + "width": 225, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "itemResponse", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 125, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "another.sequence.itemResponse.t", + "type": "rectangle", + "pos": { + "x": 500, + "y": 643 + }, + "width": 40, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.item", + "type": "", + "pos": { + "x": 833, + "y": 367 + }, + "width": 143, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "item", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 43, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "another.sequence.item.t1", + "type": "rectangle", + "pos": { + "x": 884, + "y": 943 + }, + "width": 40, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.essayRubric", + "type": "", + "pos": { + "x": 1176, + "y": 367 + }, + "width": 206, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "essayRubric", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 106, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "another.sequence.essayRubric.t", + "type": "rectangle", + "pos": { + "x": 1259, + "y": 1243 + }, + "width": 40, + "height": 460, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.essayRubric.t.c", + "type": "rectangle", + "pos": { + "x": 1254, + "y": 1393 + }, + "width": 50, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 5 + }, + { + "id": "another.sequence.concept", + "type": "", + "pos": { + "x": 1582, + "y": 367 + }, + "width": 174, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "concept", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 74, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "another.sequence.concept.t", + "type": "rectangle", + "pos": { + "x": 1649, + "y": 1543 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 11, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.itemOutcome", + "type": "", + "pos": { + "x": 1956, + "y": 367 + }, + "width": 221, + "height": 131, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#F7F8FE", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "itemOutcome", + "fontSize": 20, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 121, + "labelHeight": 31, + "labelPosition": "INSIDE_MIDDLE_CENTER", + "zIndex": 0, + "level": 3 + }, + { + "id": "another.sequence.itemOutcome.t1", + "type": "rectangle", + "pos": { + "x": 2046, + "y": 1843 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.item.t2", + "type": "rectangle", + "pos": { + "x": 884, + "y": 1993 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.item.t3", + "type": "rectangle", + "pos": { + "x": 884, + "y": 2143 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.itemOutcome.t2", + "type": "rectangle", + "pos": { + "x": 2046, + "y": 2293 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "another.sequence.itemOutcome.t3", + "type": "rectangle", + "pos": { + "x": 2046, + "y": 2443 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 20, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, { "id": "sequence", "type": "", "pos": { - "x": 3505, - "y": 3653 + "x": 3385, + "y": 3503 }, "width": 172, "height": 126, @@ -2457,9 +1811,1669 @@ "labelPosition": "INSIDE_MIDDLE_CENTER", "zIndex": 0, "level": 1 + }, + { + "id": "finally.sequence.itemResponse.a", + "type": "rectangle", + "pos": { + "x": 2621, + "y": 3126 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "finally.sequence.item.a", + "type": "rectangle", + "pos": { + "x": 1816, + "y": 3116 + }, + "width": 40, + "height": 770, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "finally.sequence.item.a.b", + "type": "rectangle", + "pos": { + "x": 1811, + "y": 3126 + }, + "width": 50, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 5 + }, + { + "id": "finally.sequence.essayRubric.a", + "type": "rectangle", + "pos": { + "x": 1442, + "y": 3256 + }, + "width": 40, + "height": 340, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "finally.sequence.essayRubric.a.b", + "type": "rectangle", + "pos": { + "x": 1437, + "y": 3266 + }, + "width": 50, + "height": 320, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 5 + }, + { + "id": "finally.sequence.essayRubric.a.b.c", + "type": "rectangle", + "pos": { + "x": 1432, + "y": 3276 + }, + "width": 60, + "height": 160, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 6 + }, + { + "id": "finally.sequence.concept.a", + "type": "rectangle", + "pos": { + "x": 1052, + "y": 3396 + }, + "width": 40, + "height": 370, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "finally.sequence.concept.a.b", + "type": "rectangle", + "pos": { + "x": 1047, + "y": 3406 + }, + "width": 50, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 5 + }, + { + "id": "finally.sequence.concept.a.b.c", + "type": "rectangle", + "pos": { + "x": 1042, + "y": 3416 + }, + "width": 60, + "height": 330, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 26, + "zIndex": 1, + "level": 6 + }, + { + "id": "finally.sequence.concept.a.b.c.d", + "type": "rectangle", + "pos": { + "x": 1037, + "y": 3426 + }, + "width": 70, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 14, + "labelHeight": 26, + "zIndex": 1, + "level": 7 + }, + { + "id": "finally.sequence.itemOutcome.a", + "type": "rectangle", + "pos": { + "x": 2198, + "y": 3686 + }, + "width": 40, + "height": 390, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "finally.sequence.itemOutcome.a.b", + "type": "rectangle", + "pos": { + "x": 2193, + "y": 3696 + }, + "width": 50, + "height": 370, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 5 + }, + { + "id": "finally.sequence.itemOutcome.a.b.c", + "type": "rectangle", + "pos": { + "x": 2188, + "y": 3706 + }, + "width": 60, + "height": 350, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 12, + "labelHeight": 26, + "zIndex": 1, + "level": 6 + }, + { + "id": "finally.sequence.itemOutcome.a.b.c.d", + "type": "rectangle", + "pos": { + "x": 2183, + "y": 3716 + }, + "width": 70, + "height": 330, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 7 + }, + { + "id": "finally.sequence.itemOutcome.a.b.c.d.e", + "type": "rectangle", + "pos": { + "x": 2178, + "y": 3726 + }, + "width": 80, + "height": 310, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 8 + }, + { + "id": "finally.sequence.scorer.abc", + "type": "rectangle", + "pos": { + "x": 686, + "y": 3876 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 31, + "labelHeight": 26, + "zIndex": 1, + "level": 4 + }, + { + "id": "finally.sequence.itemResponse.c", + "type": "rectangle", + "pos": { + "x": 2621, + "y": 4176 + }, + "width": 40, + "height": 50, + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "borderRadius": 0, + "fill": "#FFFFFF", + "stroke": "#0D32B2", + "shadow": false, + "3d": false, + "multiple": false, + "tooltip": "", + "link": "", + "icon": null, + "iconPosition": "", + "fields": null, + "methods": null, + "columns": null, + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#0A0F25", + "italic": false, + "bold": true, + "underline": false, + "labelWidth": 13, + "labelHeight": 26, + "zIndex": 1, + "level": 4 } ], "connections": [ + { + "id": "a_sequence.(scorer.t -> itemResponse.t)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.itemResponse.t", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getItem()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 60, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 650 + }, + { + "x": 2835, + "y": 650 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t <- itemResponse.t)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "a_sequence.itemResponse.t", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "item", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 29, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 800 + }, + { + "x": 2835, + "y": 800 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t -> item.t1)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.item.t1", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getRubric()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 73, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 950 + }, + { + "x": 3232.5, + "y": 950 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t <- item.t1)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "a_sequence.item.t1", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "rubric", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 39, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 1100 + }, + { + "x": 3232.5, + "y": 1100 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t -> essayRubric.t)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.essayRubric.t", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "applyTo(essayResp)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 130, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 1250 + }, + { + "x": 3619.5, + "y": 1250 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(itemResponse -> essayRubric.t.c)[0]", + "src": "a_sequence.itemResponse", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.essayRubric.t.c", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "labelPosition": "", + "labelPercentage": 0, + "route": [ + { + "x": 2860, + "y": 1400 + }, + { + "x": 3614.5, + "y": 1400 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(essayRubric.t.c -> concept.t)[0]", + "src": "a_sequence.essayRubric.t.c", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.concept.t", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "match(essayResponse)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 150, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 3664.5, + "y": 1550 + }, + { + "x": 4025, + "y": 1550 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer <- essayRubric.t)[0]", + "src": "a_sequence.scorer", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "a_sequence.essayRubric.t", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "score", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 37, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2452.5, + "y": 1700 + }, + { + "x": 3619.5, + "y": 1700 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t <-> itemOutcome.t1)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "a_sequence.itemOutcome.t1", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "new", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 29, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 1850 + }, + { + "x": 4439, + "y": 1850 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t <-> item.t2)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "a_sequence.item.t2", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getNormalMinimum()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 141, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 2000 + }, + { + "x": 3232.5, + "y": 2000 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t -> item.t3)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.item.t3", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getNormalMaximum()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 144, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 2150 + }, + { + "x": 3232.5, + "y": 2150 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t -- itemOutcome.t2)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.itemOutcome.t2", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "setScore(score)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 101, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 2300 + }, + { + "x": 4439, + "y": 2300 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "a_sequence.(scorer.t -- itemOutcome.t3)[0]", + "src": "a_sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "a_sequence.itemOutcome.t3", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "setFeedback(missingConcepts)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 203, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 2467.5, + "y": 2450 + }, + { + "x": 4439, + "y": 2450 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> itemResponse.t)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.itemResponse.t", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getItem()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 60, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 648 + }, + { + "x": 495.5, + "y": 648 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t <- itemResponse.t)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "another.sequence.itemResponse.t", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "item", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 29, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 798 + }, + { + "x": 495.5, + "y": 798 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> item.t1)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.item.t1", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getRubric()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 73, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 948 + }, + { + "x": 879.5, + "y": 948 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t <- item.t1)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "another.sequence.item.t1", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "rubric", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 39, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 1098 + }, + { + "x": 879.5, + "y": 1098 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> essayRubric.t)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.essayRubric.t", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "applyTo(essayResp)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 130, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 1248 + }, + { + "x": 1254, + "y": 1248 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(itemResponse -> essayRubric.t.c)[0]", + "src": "another.sequence.itemResponse", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.essayRubric.t.c", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 0, + "labelHeight": 0, + "labelPosition": "", + "labelPercentage": 0, + "route": [ + { + "x": 525.5, + "y": 1398 + }, + { + "x": 1249, + "y": 1398 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(essayRubric.t.c -> concept.t)[0]", + "src": "another.sequence.essayRubric.t.c", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.concept.t", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "match(essayResponse)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 150, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 1309, + "y": 1548 + }, + { + "x": 1644, + "y": 1548 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer <- essayRubric.t)[0]", + "src": "another.sequence.scorer", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "another.sequence.essayRubric.t", + "dstArrow": "none", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "score", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 37, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 134, + "y": 1698 + }, + { + "x": 1254, + "y": 1698 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> itemOutcome.t1)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.itemOutcome.t1", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "new", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 29, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 1848 + }, + { + "x": 2041.5, + "y": 1848 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t <-> item.t2)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "triangle", + "srcLabel": "", + "dst": "another.sequence.item.t2", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getNormalMinimum()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 141, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 1998 + }, + { + "x": 879.5, + "y": 1998 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> item.t3)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.item.t3", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "getNormalMaximum()", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 144, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 2148 + }, + { + "x": 879.5, + "y": 2148 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> itemOutcome.t2)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.itemOutcome.t2", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "setScore(score)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 101, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 2298 + }, + { + "x": 2041.5, + "y": 2298 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, + { + "id": "another.sequence.(scorer.t -> itemOutcome.t3)[0]", + "src": "another.sequence.scorer.t", + "srcArrow": "none", + "srcLabel": "", + "dst": "another.sequence.itemOutcome.t3", + "dstArrow": "triangle", + "dstLabel": "", + "opacity": 1, + "strokeDash": 0, + "strokeWidth": 2, + "stroke": "#0D32B2", + "label": "setFeedback(missingConcepts)", + "fontSize": 16, + "fontFamily": "DEFAULT", + "language": "", + "color": "#676C7E", + "italic": true, + "bold": false, + "underline": false, + "labelWidth": 203, + "labelHeight": 21, + "labelPosition": "OUTSIDE_TOP_CENTER", + "labelPercentage": 0, + "route": [ + { + "x": 154, + "y": 2448 + }, + { + "x": 2041.5, + "y": 2448 + } + ], + "animated": false, + "tooltip": "", + "icon": null, + "zIndex": 0 + }, { "id": "(a_shape -> a_sequence)[0]", "src": "a_shape", @@ -2486,20 +3500,20 @@ "labelPercentage": 0, "route": [ { - "x": 2429, + "x": 2349, "y": 91 }, { - "x": 3358.6, + "x": 3246.6, "y": 189.4 }, { - "x": 3591, - "y": 224 + "x": 3471, + "y": 274 }, { - "x": 3591, - "y": 264 + "x": 3471, + "y": 314 } ], "isCurve": true, @@ -2534,20 +3548,20 @@ "labelPercentage": 0, "route": [ { - "x": 2265, + "x": 2186, "y": 91 }, { - "x": 1375.8, + "x": 1328, "y": 189.4 }, { - "x": 1153.5, - "y": 274 + "x": 1113.5, + "y": 274.5 }, { - "x": 1153.5, - "y": 314 + "x": 1113.5, + "y": 316.5 } ], "isCurve": true, @@ -2582,32 +3596,32 @@ "labelPercentage": 0, "route": [ { - "x": 3591, - "y": 2750 + "x": 3471, + "y": 2600 }, { - "x": 3591, - "y": 2790 + "x": 3471, + "y": 2640 }, { - "x": 3591, - "y": 2810 + "x": 3471, + "y": 2660 }, { - "x": 3591, - "y": 2825 + "x": 3471, + "y": 2675 }, { - "x": 3591, - "y": 2840 + "x": 3471, + "y": 2690 }, { - "x": 3591, - "y": 3050.5 + "x": 3471, + "y": 2900.5 }, { - "x": 3591, - "y": 3652.5 + "x": 3471, + "y": 3502.5 } ], "isCurve": true, @@ -2642,32 +3656,32 @@ "labelPercentage": 0, "route": [ { - "x": 1153.5, - "y": 2700 + "x": 1113.5, + "y": 2598.5 }, { - "x": 1153.5, - "y": 2740 + "x": 1113.5, + "y": 2639.7 }, { - "x": 1153.5, + "x": 1113.5, + "y": 2660 + }, + { + "x": 1113.5, + "y": 2675 + }, + { + "x": 1113.5, + "y": 2690 + }, + { + "x": 1120.5, "y": 2760 }, { - "x": 1153.5, - "y": 2775 - }, - { - "x": 1153.5, - "y": 2790 - }, - { - "x": 1153.5, - "y": 2860 - }, - { - "x": 1153.5, - "y": 2900 + "x": 1148.5, + "y": 2800 } ], "isCurve": true, @@ -2702,80 +3716,56 @@ "labelPercentage": 0, "route": [ { - "x": 2347, + "x": 2267, "y": 164 }, { - "x": 2347, + "x": 2267, "y": 204 }, { - "x": 2347, + "x": 2267, "y": 224 }, { - "x": 2347, + "x": 2267, "y": 239 }, { - "x": 2347, + "x": 2267, "y": 254 }, { - "x": 2347, - "y": 274 + "x": 2267, + "y": 502.6 }, { - "x": 2347, - "y": 289 + "x": 2267, + "y": 860.5 }, { - "x": 2347, - "y": 304 + "x": 2267, + "y": 1218.4 }, { - "x": 2347, - "y": 552.6 + "x": 2267, + "y": 1695.6 }, { - "x": 2347, - "y": 910.5 + "x": 2267, + "y": 2053.5 }, { - "x": 2347, - "y": 1268.4 + "x": 2267, + "y": 2411.4 }, { - "x": 2347, - "y": 1745.6 - }, - { - "x": 2347, - "y": 2103.5 - }, - { - "x": 2347, - "y": 2461.4 - }, - { - "x": 2347, + "x": 2267, "y": 2710 }, { - "x": 2347, - "y": 2725 - }, - { - "x": 2347, - "y": 2740 - }, - { - "x": 2347, - "y": 2810 - }, - { - "x": 2347, - "y": 2850 + "x": 2267, + "y": 2750 } ], "isCurve": true, @@ -2784,1020 +3774,6 @@ "icon": null, "zIndex": 0 }, - { - "id": "a_sequence.(scorer.t -> itemResponse.t)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.itemResponse.t", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getItem()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 60, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 700 - }, - { - "x": 2955, - "y": 700 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t <- itemResponse.t)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "a_sequence.itemResponse.t", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "item", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 29, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 850 - }, - { - "x": 2955, - "y": 850 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t -> item.t1)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.item.t1", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getRubric()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 73, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 1000 - }, - { - "x": 3352.5, - "y": 1000 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t <- item.t1)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "a_sequence.item.t1", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "rubric", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 39, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 1150 - }, - { - "x": 3352.5, - "y": 1150 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t -> essayRubric.t)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.essayRubric.t", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "applyTo(essayResp)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 130, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 1300 - }, - { - "x": 3739.5, - "y": 1300 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(itemResponse -> essayRubric.t.c)[0]", - "src": "a_sequence.itemResponse", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.essayRubric.t.c", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 0, - "labelHeight": 0, - "labelPosition": "", - "labelPercentage": 0, - "route": [ - { - "x": 2980, - "y": 1450 - }, - { - "x": 3734.5, - "y": 1450 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(essayRubric.t.c -> concept.t)[0]", - "src": "a_sequence.essayRubric.t.c", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.concept.t", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "match(essayResponse)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 150, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 3784.5, - "y": 1600 - }, - { - "x": 4145, - "y": 1600 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer <- essayRubric.t)[0]", - "src": "a_sequence.scorer", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "a_sequence.essayRubric.t", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "score", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 37, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2572.5, - "y": 1750 - }, - { - "x": 3739.5, - "y": 1750 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t <-> itemOutcome.t1)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "a_sequence.itemOutcome.t1", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "new", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 29, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 1900 - }, - { - "x": 4559, - "y": 1900 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t <-> item.t2)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "a_sequence.item.t2", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getNormalMinimum()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 141, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 2050 - }, - { - "x": 3352.5, - "y": 2050 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t -> item.t3)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.item.t3", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getNormalMaximum()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 144, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 2200 - }, - { - "x": 3352.5, - "y": 2200 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t -- itemOutcome.t2)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.itemOutcome.t2", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "setScore(score)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 101, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 2350 - }, - { - "x": 4559, - "y": 2350 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "a_sequence.(scorer.t -- itemOutcome.t3)[0]", - "src": "a_sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "a_sequence.itemOutcome.t3", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "setFeedback(missingConcepts)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 203, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 2587.5, - "y": 2500 - }, - { - "x": 4559, - "y": 2500 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> itemResponse.t)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.itemResponse.t", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getItem()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 60, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 698 - }, - { - "x": 535.5, - "y": 698 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t <- itemResponse.t)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "another.sequence.itemResponse.t", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "item", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 29, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 848 - }, - { - "x": 535.5, - "y": 848 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> item.t1)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.item.t1", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getRubric()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 73, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 998 - }, - { - "x": 919.5, - "y": 998 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t <- item.t1)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "another.sequence.item.t1", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "rubric", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 39, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 1148 - }, - { - "x": 919.5, - "y": 1148 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> essayRubric.t)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.essayRubric.t", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "applyTo(essayResp)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 130, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 1298 - }, - { - "x": 1294, - "y": 1298 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(itemResponse -> essayRubric.t.c)[0]", - "src": "another.sequence.itemResponse", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.essayRubric.t.c", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 0, - "labelHeight": 0, - "labelPosition": "", - "labelPercentage": 0, - "route": [ - { - "x": 565.5, - "y": 1448 - }, - { - "x": 1289, - "y": 1448 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(essayRubric.t.c -> concept.t)[0]", - "src": "another.sequence.essayRubric.t.c", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.concept.t", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "match(essayResponse)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 150, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 1349, - "y": 1598 - }, - { - "x": 1684, - "y": 1598 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer <- essayRubric.t)[0]", - "src": "another.sequence.scorer", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "another.sequence.essayRubric.t", - "dstArrow": "none", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "score", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 37, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 174, - "y": 1748 - }, - { - "x": 1294, - "y": 1748 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> itemOutcome.t1)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.itemOutcome.t1", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "new", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 29, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 1898 - }, - { - "x": 2081.5, - "y": 1898 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t <-> item.t2)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "triangle", - "srcLabel": "", - "dst": "another.sequence.item.t2", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getNormalMinimum()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 141, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 2048 - }, - { - "x": 919.5, - "y": 2048 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> item.t3)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.item.t3", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "getNormalMaximum()", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 144, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 2198 - }, - { - "x": 919.5, - "y": 2198 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> itemOutcome.t2)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.itemOutcome.t2", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "setScore(score)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 101, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 2348 - }, - { - "x": 2081.5, - "y": 2348 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, - { - "id": "another.sequence.(scorer.t -> itemOutcome.t3)[0]", - "src": "another.sequence.scorer.t", - "srcArrow": "none", - "srcLabel": "", - "dst": "another.sequence.itemOutcome.t3", - "dstArrow": "triangle", - "dstLabel": "", - "opacity": 1, - "strokeDash": 0, - "strokeWidth": 2, - "stroke": "#0D32B2", - "label": "setFeedback(missingConcepts)", - "fontSize": 16, - "fontFamily": "DEFAULT", - "language": "", - "color": "#676C7E", - "italic": true, - "bold": false, - "underline": false, - "labelWidth": 203, - "labelHeight": 21, - "labelPosition": "OUTSIDE_TOP_CENTER", - "labelPercentage": 0, - "route": [ - { - "x": 194, - "y": 2498 - }, - { - "x": 2081.5, - "y": 2498 - } - ], - "animated": false, - "tooltip": "", - "icon": null, - "zIndex": 0 - }, { "id": "finally.sequence.(itemResponse.a -> item.a.b)[0]", "src": "finally.sequence.itemResponse.a", @@ -3824,12 +3800,12 @@ "labelPercentage": 0, "route": [ { - "x": 2676.5, - "y": 3281 + "x": 2616.5, + "y": 3131 }, { - "x": 1926.5, - "y": 3281 + "x": 1866.5, + "y": 3131 } ], "animated": false, @@ -3863,12 +3839,12 @@ "labelPercentage": 0, "route": [ { - "x": 1866.5, - "y": 3431 + "x": 1806.5, + "y": 3281 }, { - "x": 1557, - "y": 3431 + "x": 1497, + "y": 3281 } ], "animated": false, @@ -3902,12 +3878,12 @@ "labelPercentage": 0, "route": [ { - "x": 1487, - "y": 3581 + "x": 1427, + "y": 3431 }, { - "x": 1172, - "y": 3581 + "x": 1112, + "y": 3431 } ], "animated": false, @@ -3941,12 +3917,12 @@ "labelPercentage": 0, "route": [ { - "x": 1871.5, - "y": 3731 + "x": 1811.5, + "y": 3581 }, { - "x": 1552, - "y": 3731 + "x": 1492, + "y": 3581 } ], "animated": false, @@ -3980,12 +3956,12 @@ "labelPercentage": 0, "route": [ { - "x": 1172, - "y": 3881 + "x": 1112, + "y": 3731 }, { - "x": 2233.5, - "y": 3881 + "x": 2173.5, + "y": 3731 } ], "animated": false, @@ -4019,12 +3995,12 @@ "labelPercentage": 0, "route": [ { - "x": 791, - "y": 4031 + "x": 731, + "y": 3881 }, { - "x": 1871.5, - "y": 4031 + "x": 1811.5, + "y": 3881 } ], "animated": false, @@ -4058,12 +4034,12 @@ "labelPercentage": 0, "route": [ { - "x": 2233.5, - "y": 4181 + "x": 2173.5, + "y": 4031 }, { - "x": 771, - "y": 4181 + "x": 711, + "y": 4031 } ], "animated": false, @@ -4097,12 +4073,12 @@ "labelPercentage": 0, "route": [ { - "x": 771, - "y": 4331 + "x": 711, + "y": 4181 }, { - "x": 2676.5, - "y": 4331 + "x": 2616.5, + "y": 4181 } ], "animated": false, @@ -4136,12 +4112,12 @@ "labelPercentage": 0, "route": [ { - "x": 2567.5, - "y": 550 + "x": 2447.5, + "y": 500 }, { - "x": 2567.5, - "y": 2650 + "x": 2447.5, + "y": 2600 } ], "animated": false, @@ -4175,12 +4151,12 @@ "labelPercentage": 0, "route": [ { - "x": 2975, - "y": 550 + "x": 2855, + "y": 500 }, { - "x": 2975, - "y": 2650 + "x": 2855, + "y": 2600 } ], "animated": false, @@ -4214,12 +4190,12 @@ "labelPercentage": 0, "route": [ { - "x": 3372.5, - "y": 550 + "x": 3252.5, + "y": 500 }, { - "x": 3372.5, - "y": 2650 + "x": 3252.5, + "y": 2600 } ], "animated": false, @@ -4253,12 +4229,12 @@ "labelPercentage": 0, "route": [ { - "x": 3759.5, - "y": 550 + "x": 3639.5, + "y": 500 }, { - "x": 3759.5, - "y": 2650 + "x": 3639.5, + "y": 2600 } ], "animated": false, @@ -4292,12 +4268,12 @@ "labelPercentage": 0, "route": [ { - "x": 4165, - "y": 550 + "x": 4045, + "y": 500 }, { - "x": 4165, - "y": 2650 + "x": 4045, + "y": 2600 } ], "animated": false, @@ -4331,12 +4307,12 @@ "labelPercentage": 0, "route": [ { - "x": 4579, - "y": 550 + "x": 4459, + "y": 500 }, { - "x": 4579, - "y": 2650 + "x": 4459, + "y": 2600 } ], "animated": false, @@ -4370,12 +4346,12 @@ "labelPercentage": 0, "route": [ { - "x": 169, - "y": 548 + "x": 129, + "y": 498 }, { - "x": 169, - "y": 2648 + "x": 129, + "y": 2598 } ], "animated": false, @@ -4409,12 +4385,12 @@ "labelPercentage": 0, "route": [ { - "x": 560.5, - "y": 548 + "x": 520.5, + "y": 498 }, { - "x": 560.5, - "y": 2648 + "x": 520.5, + "y": 2598 } ], "animated": false, @@ -4448,12 +4424,12 @@ "labelPercentage": 0, "route": [ { - "x": 944.5, - "y": 548 + "x": 904.5, + "y": 498 }, { - "x": 944.5, - "y": 2648 + "x": 904.5, + "y": 2598 } ], "animated": false, @@ -4487,12 +4463,12 @@ "labelPercentage": 0, "route": [ { - "x": 1319, - "y": 548 + "x": 1279, + "y": 498 }, { - "x": 1319, - "y": 2648 + "x": 1279, + "y": 2598 } ], "animated": false, @@ -4526,12 +4502,12 @@ "labelPercentage": 0, "route": [ { - "x": 1709, - "y": 548 + "x": 1669, + "y": 498 }, { - "x": 1709, - "y": 2648 + "x": 1669, + "y": 2598 } ], "animated": false, @@ -4565,12 +4541,12 @@ "labelPercentage": 0, "route": [ { - "x": 2106.5, - "y": 548 + "x": 2066.5, + "y": 498 }, { - "x": 2106.5, - "y": 2648 + "x": 2066.5, + "y": 2598 } ], "animated": false, @@ -4604,12 +4580,12 @@ "labelPercentage": 0, "route": [ { - "x": 766, - "y": 3131 + "x": 706, + "y": 2981 }, { - "x": 766, - "y": 4481 + "x": 706, + "y": 4331 } ], "animated": false, @@ -4643,12 +4619,12 @@ "labelPercentage": 0, "route": [ { - "x": 1132, - "y": 3131 + "x": 1072, + "y": 2981 }, { - "x": 1132, - "y": 4481 + "x": 1072, + "y": 4331 } ], "animated": false, @@ -4682,12 +4658,12 @@ "labelPercentage": 0, "route": [ { - "x": 1522, - "y": 3131 + "x": 1462, + "y": 2981 }, { - "x": 1522, - "y": 4481 + "x": 1462, + "y": 4331 } ], "animated": false, @@ -4721,12 +4697,12 @@ "labelPercentage": 0, "route": [ { - "x": 1896.5, - "y": 3131 + "x": 1836.5, + "y": 2981 }, { - "x": 1896.5, - "y": 4481 + "x": 1836.5, + "y": 4331 } ], "animated": false, @@ -4760,12 +4736,12 @@ "labelPercentage": 0, "route": [ { - "x": 2278.5, - "y": 3131 + "x": 2218.5, + "y": 2981 }, { - "x": 2278.5, - "y": 4481 + "x": 2218.5, + "y": 4331 } ], "animated": false, @@ -4799,12 +4775,12 @@ "labelPercentage": 0, "route": [ { - "x": 2701.5, - "y": 3131 + "x": 2641.5, + "y": 2981 }, { - "x": 2701.5, - "y": 4481 + "x": 2641.5, + "y": 4331 } ], "animated": false, diff --git a/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg b/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg index 57a62f76a..822287a3e 100644 --- a/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg +++ b/e2etests/testdata/stable/sequence_diagrams/dagre/sketch.exp.svg @@ -2,7 +2,7 @@