diff --git a/Jars/Jars.json b/Jars/Jars.json index dbc87eaca0c99ba65b0584fbdb487e97235f7ba3..3e773543aadd69f13e340ca0947ee80d2361d28e 100644 --- a/Jars/Jars.json +++ b/Jars/Jars.json @@ -2,116 +2,129 @@ "svg":"Jars.svg", "items": [ { - "id": "jar_3_full", + "id": "jar_%0_full", "attr": "height", - - "value": "level(j3) * 20" + "value": "level(j%0) * 20", + "repeat": [ + ["3"], ["5"] + ] + }, + { + "id": "jar_%0_text", + "attr": "text", + "value": "level(j%0)", + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "jar_3_svg", + "id": "jar_%0_svg", "attr": "height", - "value": "maxf(j3) * 20" + "value": "maxf(j%0) * 20", + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "jar_3_svg", + "id": "jar_%0_svg", "attr": "y", - "value": "0 -(max({maxf(j3), maxf(j5)}) * 20 - 100)" + "value": "0 -(max({maxf(j3), maxf(j5)}) * 20 - 100)", + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "jar_3_empty", + "id": "jar_%0_empty", "attr": "height", - "value": "maxf(j3) * 20" + "value": "maxf(j%0) * 20", + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "left_3", + "id": "left_%0", "attr": "y2", - "value": "maxf(j3) * 20" + "value": "maxf(j%0) * 20", + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "right_3", + "id": "right_%0", "attr": "y2", - "value": "maxf(j3) * 20" + "value": "maxf(j%0) * 20", + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "jar_5_full", - "attr": "height", - - "value": "level(j5) * 20" + "id": "goal_achieved", + "attr": "opacity", + "value": "IF max({level(j3), level(j5)}) = max({maxf(j3), maxf(j5)}) -1 THEN 1 ELSE 0 END" }, { - "id": "jar_5_svg", - "attr": "height", - "value": "maxf(j5) * 20" + "id": "transfer_left", + "attr": "opacity", + "value": "IF level(j3) = maxf(j3) THEN 0 ELSE IF level(j5) = 0 THEN 0 ELSE 1 END END" }, { - "id": "jar_5_svg", - "attr": "y", - "value": "0 -(max({maxf(j3), maxf(j5)}) * 20 - 100)" + "id": "transfer_right", + "attr": "opacity", + "value": "IF level(j5) = maxf(j5) THEN 0 ELSE IF level(j3) = 0 THEN 0 ELSE 1 END END" }, { - "id": "jar_5_empty", - "attr": "height", - "value": "maxf(j5) * 20" + "id": "transfer_sym3", + "attr": "opacity", + "value": "IF level(j3) = 0 & level(j5) = 0 THEN 0 ELSE IF level(j3) = maxf(j3) & level(j5) = maxf(j5) THEN 0 ELSE 1 END END" }, { - "id": "left_5", - "attr": "y2", - "value": "maxf(j5) * 20" + "id": "goal", + "attr": "x1", + "value": "IF maxf(j3) > maxf(j5) THEN 2 ELSE 107 END" }, { - "id": "right_5", - "attr": "y2", - "value": "maxf(j5) * 20" + "id": "goal", + "attr": "x2", + "value": "IF maxf(j3) > maxf(j5) THEN 48 ELSE 153 END" } + ], "events": [ { - "id": "fill_3", + "id": "fill_%0", "event": "FillJar", - "predicates": ["j=j3"], + "predicates": ["j=j%0"], "hovers": [{ "attr":"stroke-width", "enter":"6", "leave":"1"}, - { "attr":"opacity", "enter":"0.8", "leave":"1.0"}] - }, - { - "id": "fill_3_sym", - "event": "FillJar", - "predicates": ["j=j3"] + { "attr":"opacity", "enter":"0.8", "leave":"1.0"}], + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "fill_5", + "id": "fill_%0_sym", "event": "FillJar", - "predicates": ["j=j5"], - "hovers": [{ "attr":"stroke-width", "enter":"6", "leave":"1"}, - { "attr":"opacity", "enter":"0.8", "leave":"1.0"}] - }, - { - "id": "fill_5_sym", - "event": "FillJar", - "predicates": ["j=j5"] - }, - { - "id": "empty_3", - "event": "EmptyJar", - "predicates": ["j=j3"], - "hovers": [{ "attr":"stroke-width", "enter":"6", "leave":"1"}, - { "attr":"opacity", "enter":"0.8", "leave":"1.0"}] - }, - { - "id": "empty_3_sym", - "event": "EmptyJar", - "predicates": ["j=j3"] + "predicates": ["j=j%0"], + "repeat": [ + ["3"], ["5"] + ] }, { - "id": "empty_5", + "id": "empty_%0", "event": "EmptyJar", - "predicates": ["j=j5"], + "predicates": ["j=j%0"], + "repeat": [ + ["3"], ["5"] + ], "hovers": [{ "attr":"stroke-width", "enter":"6", "leave":"1"}, { "attr":"opacity", "enter":"0.8", "leave":"1.0"}] }, { - "id": "empty_5_sym", + "id": "empty_%0_sym", "event": "EmptyJar", - "predicates": ["j=j5"] + "predicates": ["j=j%0"], + "repeat": [ + ["3"], ["5"] + ] }, { "id": "transfer", @@ -120,11 +133,11 @@ { "attr":"opacity", "enter":"0.8", "leave":"1.0"}] }, { - "id": "transfer_sym1", + "id": "transfer_left", "event": "Transfer" }, { - "id": "transfer_sym2", + "id": "transfer_right", "event": "Transfer" }, { diff --git a/Jars/Jars.svg b/Jars/Jars.svg index 8062269061579d240d6c68e34888e2e0c2d4f46a..55b968df99d7196d8552feb1211b8d11fb203a48 100644 --- a/Jars/Jars.svg +++ b/Jars/Jars.svg @@ -11,27 +11,31 @@ <line x1="50" y1="0" x2="0" y2="0" style="stroke:#000000;stroke-width:4"/> </svg> </g> +<text id="jar_3_text" opacity="1" x="20" y="95">0</text> <g id="jar_5" transform="rotate(180 130 100)"> <svg id="jar_5_svg" width="50" height="100" x="105" y="0"> <g id="leer_5" opacity="1" > - <rect id="jar_5_empty"x="0" y="0" width="50" height="100" style="fill:#DDEEFF"/> + <rect id="jar_5_empty" x="0" y="0" width="50" height="100" style="fill:#DDEEFF"/> <rect id ="jar_5_full" x="0" y="0" width="50" height="100" style="fill:#267CEB"/> <line id="left_5" x1="50" y1="0" x2="50" y2="100" style="stroke:#000000;stroke-width:4"/> <line id="right_5" x1="0" y1="0" x2="0" y2="100" style="stroke:#000000;stroke-width:4"/> <line x1="50" y1="0" x2="0" y2="0" style="stroke:#000000;stroke-width:4"/> </svg> </g> +<text id="jar_5_text" opacity="1" x="125" y="95">0</text> +<line id="goal" x1="107" y1="120" x2="153" y2="120" stroke-width="2" stroke="#FF7777"/> <circle id="fill_3" cx="25" cy="25" r="15" fill="#BBBBBB"/> <rect id="fill_3_sym" x="20" y="20" width="10" height="12" style="fill:#267CEB"/> <circle id="fill_5" cx="130" cy="25" r="15" fill="#BBBBBB"/> -<rect id="fill_5_sym"x="125" y="20" width="10" height="12" style="fill:#267CEB"/> +<rect id="fill_5_sym" x="125" y="20" width="10" height="12" style="fill:#267CEB"/> <circle id="empty_3" cx="25" cy="65" r="15" fill="#BBBBBB"/> <rect id="empty_3_sym" x="20" y="60" width="10" height="12" style="fill:#DDEEFF"/> <circle id="empty_5" cx="130" cy="65" r="15" fill="#BBBBBB"/> <rect id="empty_5_sym" x="125" y="60" width="10" height="12" style="fill:#DDEEFF"/> <circle id="transfer" cx="77.5" cy="45" r="15" fill="#BBBBBB"/> -<polyline id="transfer_sym1" points="70,45 76,41 76,49" fill="#00000"/> -<polyline id="transfer_sym2" points="85,45 79,41 79,49" fill="#00000"/> +<polyline id="transfer_left" points="70,45 76,41 76,49" fill="#00000"/> +<polyline id="transfer_right" points="85,45 79,41 79,49" fill="#00000"/> <rect id="transfer_sym3" x="76" y="43.5" height="3" width="3"/> +<text id="goal_achieved" opacity="0" x="160" y="125" fill="#FF4444" font-weight="bold">Goal achieved!</text> diff --git a/Train_B_Book/train.json b/Train_B_Book/train.json index 9903e8ce4cc2ab54a18c98c2fa5b08663639efec..23925962087611b92c57d6776bb8a994323fbd4a 100644 --- a/Train_B_Book/train.json +++ b/Train_B_Book/train.json @@ -3,74 +3,12 @@ "comment": "File for train_4 with Beebook topology", "items": [ { - "id": "a", + "id": "%0", "attr": "stroke", - "value": "IF A : OCC THEN \"#FF2222\" ELSE IF A : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "b", - "attr": "stroke", - "value": "IF B : OCC THEN \"#FF2222\" ELSE IF B : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "c", - "attr": "stroke", - "value": "IF C : OCC THEN \"#FF2222\" ELSE IF C : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "d", - "attr": "stroke", - "value": "IF D : OCC THEN \"#FF2222\" ELSE IF D : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "e", - "attr": "stroke", - "value": "IF E : OCC THEN \"#FF2222\" ELSE IF E : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "f", - "attr": "stroke", - "value": "IF F : OCC THEN \"#FF2222\" ELSE IF F : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "g", - "attr": "stroke", - "value": "IF G : OCC THEN \"#FF2222\" ELSE IF G : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "h", - "attr": "stroke", - "value": "IF H : OCC THEN \"#FF2222\" ELSE IF H : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "i", - "attr": "stroke", - "value": "IF I : OCC THEN \"#FF2222\" ELSE IF I : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "j", - "attr": "stroke", - "value": "IF J : OCC THEN \"#FF2222\" ELSE IF J : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "k", - "attr": "stroke", - "value": "IF K : OCC THEN \"#FF2222\" ELSE IF K : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "l", - "attr": "stroke", - "value": "IF L : OCC THEN \"#FF2222\" ELSE IF L : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "m", - "attr": "stroke", - "value": "IF M : OCC THEN \"#FF2222\" ELSE IF M : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" - }, - { - "id": "n", - "attr": "stroke", - "value": "IF N : OCC THEN \"#FF2222\" ELSE IF N : resbl THEN \"#2222FF\" ELSE \"#000000\" END END" + "value": "IF %0 : OCC THEN \"#FF2222\" ELSE IF %0 : resbl THEN \"#2222FF\" ELSE \"#000000\" END END", + "repeat": [ + ["A"], ["B"], ["C"], ["D"], ["E"], ["F"], ["G"], ["H"], ["I"], ["J"], ["K"], ["L"], ["M"], ["N"] + ] }, { "for": {"from":1, "to":5}, @@ -85,9 +23,41 @@ "attr": "fill", "value": "IF S%0 : GRN THEN \"#FFD5D5\" ELSE \"#FF2222\" END", "optional": "true" + }, + { + "id": "%0-%1", + "attr": "stroke", + "value": "IF (%0,%1) : (TRK\\/TRK~) THEN IF %0 : OCC THEN \"#FF2222\" ELSIF %0 : resbl THEN \"#2222FF\" ELSE \"#000000\" END ELSIF %0 /: (dom(TRK)\\/ran(TRK)) & %0 : resbl THEN \"#8899FF\" ELSE \"#000000\" END", + "repeat": [ + ["B","C"], ["B","D"],["D","E"], ["D","K"],["F","E"],["F","K"],["I","K"],["I","J"],["J","K"],["J","I"],["K","D"],["K","I"] + ] } ], "events": [ - + { + "id": "s1", + "event": "route_formation", + "predicates": ["r : {R1,R2,R3}"] + }, + { + "id": "s2", + "event": "route_formation", + "predicates": ["r : {R4,R5}"] + }, + { + "id": "s4", + "event": "route_formation", + "predicates": ["r : {R6,R10}"] + }, + { + "id": "s5", + "event": "route_formation", + "predicates": ["r : {R7,R9}"] + }, + { + "id": "s3", + "event": "route_formation", + "predicates": ["r=R8"] + } ] } diff --git a/Train_B_Book/train.svg b/Train_B_Book/train.svg index d8e0427322a23442e4f1ec991f74a3d6017f705e..9230c34ddb8b7dcab908d5cb06e8e9ade4c4bf97 100644 --- a/Train_B_Book/train.svg +++ b/Train_B_Book/train.svg @@ -25,9 +25,9 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="0.70710678" - inkscape:cx="215.92731" - inkscape:cy="73.490594" + inkscape:zoom="2.8284272" + inkscape:cx="575.63776" + inkscape:cy="152.42153" inkscape:document-units="mm" inkscape:current-layer="layer1" showgrid="false" @@ -183,7 +183,7 @@ cy="94.363823" cx="-39.45472" id="s2_green" - fill="#f6ffd5" + fill="#f6ffd5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <ellipse transform="scale(-1,1)" @@ -192,12 +192,12 @@ cy="95.21122" cx="-39.465073" id="s2_red" - fill="#ffd5d5" + fill="#ffd5d5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022;" x="77.239792" y="247.14159" id="text5069" @@ -206,10 +206,10 @@ id="tspan5067" x="77.239792" y="247.14159" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">A</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr;text-anchor:start;stroke-width:0.64790022;">A</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022;" x="99.644318" y="244.50078" id="text5073" @@ -218,10 +218,10 @@ id="tspan5071" x="99.644318" y="244.50078" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">B</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr;text-anchor:start;stroke-width:0.64790022;">B</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022;" x="169.783" y="237.34956" id="text5077" @@ -230,10 +230,10 @@ id="tspan5075" x="169.783" y="237.34956" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">C</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr;text-anchor:start;stroke-width:0.64790022;">C</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022;" x="132.51379" y="247.16048" id="text5081" @@ -242,22 +242,22 @@ id="tspan5079" x="132.51379" y="247.16048" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">D</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr;text-anchor:start;stroke-width:0.64790022;">D</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="162.67882" - y="247.15971" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="163.75458" + y="247.06618" id="text5085" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5083" - x="162.67882" - y="247.15971" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">E</tspan></text> + x="163.75458" + y="247.06618" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">E</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022;" x="193.33044" y="247.17906" id="text5089" @@ -266,70 +266,70 @@ id="tspan5087" x="193.33044" y="247.17906" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">F</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr;text-anchor:start;stroke-width:0.64790022;">F</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="223.33548" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="224.59833" y="246.94875" id="text5093" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5091" - x="223.33548" + x="224.59833" y="246.94875" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">G</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">G</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="86.746086" - y="265.52444" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="86.792862" + y="263.98096" id="text5097" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5095" - x="86.746086" - y="265.52444" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">H</tspan></text> + x="86.792862" + y="263.98096" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">H</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="135.30836" - y="265.4671" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="135.2616" + y="264.01718" id="text5101" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5099" - x="135.30836" - y="265.4671" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">I</tspan></text> + x="135.2616" + y="264.01718" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">I</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="190.30042" - y="265.35712" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="190.20688" + y="263.29916" id="text5105" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5103" - x="190.30042" - y="265.35712" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">J</tspan></text> + x="190.20688" + y="263.29916" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">J</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.91093636px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="184.56989" - y="255.47145" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="163.80298" + y="252.52483" id="text5109" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5107" - x="184.56989" - y="255.47145" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:6.91093636px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">K</tspan></text> + x="163.80298" + y="252.52483" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">K</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022;" x="53.187729" y="247.22798" id="text5113" @@ -338,180 +338,206 @@ id="tspan5111" x="53.187729" y="247.22798" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">L</tspan></text> + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166664px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr;text-anchor:start;stroke-width:0.64790022;">L</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="52.27145" - y="265.4097" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="51.990818" + y="263.77267" id="text5117" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5115" - x="52.27145" - y="265.4097" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">M</tspan></text> + x="51.990818" + y="263.77267" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">M</tspan></text> <text xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" - x="223.84294" - y="265.52444" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.64790022" + x="224.40421" + y="264.21484" id="text5121" transform="scale(0.99999691,1.0000031)"><tspan sodipodi:role="line" id="tspan5119" - x="223.84294" - y="265.52444" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.63867092px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">N</tspan></text> + x="224.40421" + y="264.21484" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.29166651px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.64790022">N</tspan></text> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="M 43.1298,258.19501 H 67.749941" - id="m" + id="M" inkscape:connector-curvature="0" inkscape:label="#path5152" /> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="M 43.129804,248.39985 H 67.749945" - id="l" + id="L" inkscape:connector-curvature="0" inkscape:label="#path5154" /> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="M 67.749941,248.40982 H 92.208102" - id="a" + id="A" inkscape:connector-curvature="0" inkscape:label="#path5158" /> <path style="fill:none;stroke-width:0.61711693px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 67.749941,258.19501 c 44.353769,0 44.353769,0 44.353769,0" - stroke="#000000" - id="h" + stroke="#000000" + id="H" inkscape:connector-curvature="0" inkscape:label="#path5164" /> <g - id="b" + id="B_g" inkscape:label="#g5440" - stroke="#000000" + stroke="#000000" transform="matrix(2.4487494,0,0,2.4487643,-54.702815,20.659616)"> - <path - inkscape:connector-curvature="0" - id="b1" - d="m 59.99427,93.00625 h 8.124807" - style="fill:none;stroke-width:0.2387654px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path5180" - d="m 64.031095,93.00625 c 4.092567,-2.786001 4.092567,-2.786001 4.092567,-2.786001" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="B-D" + d="m 64.031095,93.006249 4.10452,10e-7" + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" + d="m 59.99427,93.00625 h 4.036825" + id="B" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 64.031095,93.00625 c 4.092567,-2.786001 4.092567,-2.786001 4.092567,-2.786001" + id="B-C" + inkscape:connector-curvature="0" /> </g> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="m 153.43447,248.40982 h 24.45816" - id="e" + id="E" inkscape:connector-curvature="0" inkscape:label="#path5192" /> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="M 214.66086,248.40982 H 239.119" - id="g" + id="G" inkscape:connector-curvature="0" inkscape:label="#path5204" /> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="M 214.66086,258.19501 H 239.119" - id="n" + id="N" inkscape:connector-curvature="0" inkscape:label="#path5206" /> <path style="fill:none;stroke-width:0.64789993px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - stroke="#000000" + stroke="#000000" d="m 112.11495,241.58771 4.52405,-3.09249 h 122.48" - id="c" + id="C" inkscape:connector-curvature="0" inkscape:label="#path5208" /> <g - id="d" - stroke="#000000" + id="D_g" + stroke="#000000" inkscape:label="#g906" transform="matrix(2.4487494,0,0,2.4487643,-54.702815,20.659616)"> - <path - inkscape:connector-curvature="0" - id="path5190" - d="M 68.135615,93.006251 H 84.997394" - style="fill:none;stroke-width:0.28027806px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path5228" - d="m 78.019009,93.00625 7.032131,1.16272" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="D-E" + d="m 78.100186,93.006249 6.897195,-7.4e-5" + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + style="fill:none;stroke-width:0.26570854;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 68.135615,93.00625 h 9.964571" + id="D" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" + d="m 78.019009,93.00625 7.032131,1.16272" + id="D-K" + inkscape:connector-curvature="0" /> </g> <g - id="i" + id="I_g" inkscape:label="#g922" - stroke="#000000" + stroke="#000000" transform="matrix(2.4487494,0,0,2.4487643,-54.702815,20.659616)"> - <path - inkscape:connector-curvature="0" - id="path5194" - d="M 68.119077,97.00221 H 89.95833" - style="fill:none;stroke-width:0.27657041px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path5230" - d="m 78.019011,97.002211 6.978383,-1.16409" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="I-J" + d="M 78.046,97.002209 H 89.95833" + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" + d="M 68.119077,97.00221 H 78.046" + id="I" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 78.019011,97.002211 6.978383,-1.16409" + id="I-K" + inkscape:connector-curvature="0" /> </g> <g - id="j" - stroke="#000000" + id="J_g" + stroke="#000000" inkscape:label="#g914" transform="matrix(2.4487494,0,0,2.4487643,-54.702815,20.659616)"> - <path - inkscape:connector-curvature="0" - id="path5198" - d="m 89.95833,97.00221 h 20.04219" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path5232" - d="m 101.99687,97.002211 -7.067263,-1.16409" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="J-I" + d="m 89.95833,97.002208 12.03854,2e-6" + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke-width:0.26516867px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.96142,97.002211 8.0391,-10e-7" + id="J" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 101.99687,97.002211 -7.067263,-1.16409" + id="J-K" + inkscape:connector-curvature="0" /> </g> <g - id="f" - stroke="#000000" + id="F_g" + stroke="#000000" inkscape:label="#g910" transform="matrix(2.4487494,0,0,2.4487643,-54.702815,20.659616)"> - <path - inkscape:connector-curvature="0" - id="path5200" - d="M 94.985415,93.006251 H 110.00052" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - <path - inkscape:connector-curvature="0" - id="path5234" - d="m 94.985413,94.16897 7.011457,-1.16272" - style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="F-E" + d="m 94.985402,93.006175 6.815448,7.5e-5" + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + style="fill:none;stroke-width:0.26462407;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" + d="m 101.80085,93.006251 h 8.19967" + id="F" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 94.985413,94.16897 7.011457,-1.16272" + id="F-K" + inkscape:connector-curvature="0" /> </g> <g - id="k" - stroke="#000000" + id="K_g" + stroke="#000000" inkscape:label="#g918" transform="matrix(2.4487494,0,0,2.4487643,-54.839475,20.659616)"> <path inkscape:connector-curvature="0" - id="path5236" + id="K-D" d="m 84.997394,94.168971 9.988021,1.66915" style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path inkscape:connector-curvature="0" - id="path5238" + id="K-I" d="m 84.997392,95.83812 9.988021,-1.66915" style="fill:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> </g> @@ -577,7 +603,7 @@ cy="86.319" cx="120.4859" id="s4_green" - fill="#f6ffd5" + fill="#f6ffd5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <ellipse ry="0.30034313" @@ -585,7 +611,7 @@ cy="87.166397" cx="120.47554" id="s4_red" - fill="#ffd5d5" + fill="#ffd5d5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> <g @@ -609,7 +635,7 @@ cy="90.367867" cx="120.4859" id="s5_green" - fill="#f6ffd5" + fill="#f6ffd5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <ellipse ry="0.30034313" @@ -617,7 +643,7 @@ cy="91.215263" cx="120.47554" id="s5_red" - fill="#ffd5d5" + fill="#ffd5d5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> <g @@ -642,7 +668,7 @@ cy="94.363815" cx="120.4859" id="s3_green" - fill="#f6ffd5" + fill="#f6ffd5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> <ellipse ry="0.30034313" @@ -650,7 +676,7 @@ cy="95.211212" cx="120.47554" id="s3_red" - fill="#ffd5d5" + fill="#ffd5d5" style="display:inline;stroke:#000000;stroke-width:0.0563424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> </g> </g>