mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-01 09:24:10 +01:00
Merge remote-tracking branch 'origin/laurent/OP-1435_Add_more_info_PFD' into next
This commit is contained in:
commit
5e5928105c
@ -4,6 +4,9 @@ Item {
|
||||
id: info
|
||||
property variant sceneSize
|
||||
|
||||
// Uninitialised, Ok, Warning, Critical, Error
|
||||
property variant batColors : ["black", "green", "orange", "red", "red"]
|
||||
|
||||
//
|
||||
// Waypoint functions
|
||||
//
|
||||
@ -11,6 +14,8 @@ Item {
|
||||
property real posEast_old
|
||||
property real posNorth_old
|
||||
property real total_distance
|
||||
property real total_distance_km
|
||||
|
||||
property bool init_dist: false
|
||||
|
||||
property real home_heading: 180/3.1415 * Math.atan2(TakeOffLocation.East - PositionState.East,
|
||||
@ -37,11 +42,6 @@ Item {
|
||||
property real wp_eta_m: (wp_eta > 0 ? Math.floor((wp_eta - wp_eta_h*3600)/60) : 0)
|
||||
property real wp_eta_s: (wp_eta > 0 ? Math.floor(wp_eta - wp_eta_h*3600 - wp_eta_m*60) : 0)
|
||||
|
||||
property real est_flight_time: Math.round(FlightBatteryState.EstimatedFlightTime)
|
||||
property real est_time_h: (est_flight_time > 0 ? Math.floor(est_flight_time / 3600) : 0 )
|
||||
property real est_time_m: (est_flight_time > 0 ? Math.floor((est_flight_time - est_time_h*3600)/60) : 0)
|
||||
property real est_time_s: (est_flight_time > 0 ? Math.floor(est_flight_time - est_time_h*3600 - est_time_m*60) : 0)
|
||||
|
||||
function reset_distance(){
|
||||
total_distance = 0;
|
||||
}
|
||||
@ -50,6 +50,7 @@ Item {
|
||||
if (total_distance == 0 && !init_dist){init_dist = "true"; posEast_old = posEast; posNorth_old = posNorth;}
|
||||
if (posEast > posEast_old+3 || posEast < posEast_old-3 || posNorth > posNorth_old+3 || posNorth < posNorth_old-3) {
|
||||
total_distance += Math.sqrt(Math.pow((posEast - posEast_old ),2) + Math.pow((posNorth - posNorth_old),2));
|
||||
total_distance_km = total_distance / 1000;
|
||||
|
||||
posEast_old = posEast;
|
||||
posNorth_old = posNorth;
|
||||
@ -66,110 +67,6 @@ Item {
|
||||
return time.toString();
|
||||
}
|
||||
|
||||
//
|
||||
// Panel functions
|
||||
//
|
||||
|
||||
property bool hide_display_rc: false
|
||||
property bool hide_display_bat: false
|
||||
property bool hide_display_oplm: false
|
||||
|
||||
function hide_display_rcinput(){
|
||||
if (hide_display_rc == false && hide_display_bat == false && hide_display_oplm == false)
|
||||
hide_display_rc = true;
|
||||
else
|
||||
hide_display_rc = false;
|
||||
battery_bg.z = -1
|
||||
oplm_bg.z = -1
|
||||
}
|
||||
|
||||
function hide_display_battery(){
|
||||
if (hide_display_bat == false && hide_display_rc == false && hide_display_oplm == false)
|
||||
hide_display_bat = true;
|
||||
else
|
||||
hide_display_bat = false;
|
||||
battery_bg.z = 10
|
||||
oplm_bg.z = -1
|
||||
}
|
||||
|
||||
function hide_display_oplink(){
|
||||
if (hide_display_oplm == false && hide_display_rc == false && hide_display_bat == false)
|
||||
hide_display_oplm = true;
|
||||
else
|
||||
hide_display_oplm = false;
|
||||
oplm_bg.z = 20
|
||||
}
|
||||
|
||||
// Uninitialised, Ok, Warning, Critical, Error
|
||||
property variant batColors : ["#2c2929", "green", "orange", "red", "red"]
|
||||
|
||||
property real smeter_angle
|
||||
|
||||
// Needed to get correctly int8 value, reset value (-127) on disconnect
|
||||
property int oplm0_db: OPLinkStatus.LinkState == 4 ? OPLinkStatus.PairSignalStrengths_0 : -127
|
||||
property int oplm1_db: OPLinkStatus.LinkState == 4 ? OPLinkStatus.PairSignalStrengths_1 : -127
|
||||
property int oplm2_db: OPLinkStatus.LinkState == 4 ? OPLinkStatus.PairSignalStrengths_2 : -127
|
||||
property int oplm3_db: OPLinkStatus.LinkState == 4 ? OPLinkStatus.PairSignalStrengths_3 : -127
|
||||
|
||||
// Filtering for S-meter. Smeter range -127dB <--> -13dB = S9+60dB
|
||||
|
||||
Timer {
|
||||
id: smeter_filter0
|
||||
interval: 100; running: true; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm0_db + 13))
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: smeter_filter1
|
||||
interval: 100; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm1_db + 13))
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: smeter_filter2
|
||||
interval: 100; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm2_db + 13))
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: smeter_filter3
|
||||
interval: 100; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm3_db + 13))
|
||||
}
|
||||
|
||||
property int smeter_filter
|
||||
property variant oplm_pair_id : OPLinkStatus.PairIDs_0
|
||||
|
||||
function select_oplm(index){
|
||||
smeter_filter0.running = false;
|
||||
smeter_filter1.running = false;
|
||||
smeter_filter2.running = false;
|
||||
smeter_filter3.running = false;
|
||||
|
||||
switch(index) {
|
||||
case 0:
|
||||
smeter_filter0.running = true;
|
||||
smeter_filter = 0;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_0
|
||||
break;
|
||||
case 1:
|
||||
smeter_filter1.running = true;
|
||||
smeter_filter = 1;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_1
|
||||
break;
|
||||
case 2:
|
||||
smeter_filter2.running = true;
|
||||
smeter_filter = 2;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_2
|
||||
break;
|
||||
case 3:
|
||||
smeter_filter3.running = true;
|
||||
smeter_filter = 3;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_3
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// End Functions
|
||||
//
|
||||
// Start Drawing
|
||||
@ -216,7 +113,16 @@ Item {
|
||||
|
||||
//
|
||||
// Waypoint Info (Top)
|
||||
//
|
||||
// Only visible when PathPlan is active (WP loaded)
|
||||
|
||||
SvgElementImage {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "waypoint-labels"
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
visible: SystemAlarms.Alarm_PathPlan == 1
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
@ -266,7 +172,7 @@ Item {
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
visible: OPLinkStatus.LinkState == 4 //OPLink Connected
|
||||
visible: SystemAlarms.Alarm_PathPlan == 1
|
||||
|
||||
MouseArea { id: total_dist_mouseArea; anchors.fill: parent; cursorShape: Qt.PointingHandCursor; onClicked: reset_distance()}
|
||||
|
||||
@ -352,6 +258,166 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Battery Info (Top)
|
||||
// Only visible when PathPlan not active and Battery module enabled
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: topbattery_voltamp_bg
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-label-voltamp-bg"
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: FlightBatterySettings.NbCells > 0 ? info.batColors[SystemAlarms.Alarm_Battery] : "black"
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-labels"
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: topbattery_volt
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-volt-text"
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: "transparent"
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Voltage.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: topbattery_amp
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-amp-text"
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: "transparent"
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Current.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: topbattery_milliamp
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-milliamp-text"
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
visible: (SystemAlarms.Alarm_PathPlan != 1) && (HwSettings.OptionalModules_Battery == 1)
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": info.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: topbattery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.ConsumedEnergy.toFixed(0)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Default counter
|
||||
// Only visible when PathPlan not active
|
||||
|
||||
SvgElementImage {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-total-distance-label"
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
visible: SystemAlarms.Alarm_PathPlan != 1
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "topbattery-total-distance-text"
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
visible: SystemAlarms.Alarm_PathPlan != 1
|
||||
|
||||
MouseArea { id: total_dist_mouseArea2; anchors.fill: parent; cursorShape: Qt.PointingHandCursor; onClicked: reset_distance()}
|
||||
|
||||
Text {
|
||||
text: total_distance > 1000 ? total_distance_km.toFixed(2) +" Km" : total_distance.toFixed(0)+" m"
|
||||
anchors.right: parent.right
|
||||
color: "cyan"
|
||||
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
|
||||
Timer {
|
||||
interval: 1000; running: true; repeat: true;
|
||||
onTriggered: {if (GPSPositionSensor.Status == 3) compute_distance(PositionState.East,PositionState.North)}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
SvgElementImage {
|
||||
id: mask_SatBar
|
||||
elementName: "satbar-mask"
|
||||
@ -473,630 +539,6 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Rc-Input panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_bg
|
||||
elementName: "rc-input-bg"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_input_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
id: rc_input_anim
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_labels
|
||||
elementName: "rc-input-labels"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_input_labels; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_mousearea
|
||||
elementName: "rc-input-panel-mousearea"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_rcinput;
|
||||
anchors.fill: parent;
|
||||
cursorShape: hide_display_bat == false && hide_display_oplm == false ? Qt.WhatsThisCursor : Qt.ArrowCursor
|
||||
onClicked: hide_display_bat == false && hide_display_oplm == false ? hide_display_rcinput() : 0
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_input_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_throttle
|
||||
elementName: "rc-throttle"
|
||||
sceneSize: info.sceneSize
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: (scaledBounds.height * sceneItem.height) * (ManualControlCommand.Throttle)
|
||||
|
||||
x: scaledBounds.x * sceneItem.width
|
||||
y: (scaledBounds.y * sceneItem.height) - rc_throttle.height + (scaledBounds.height * sceneItem.height)
|
||||
|
||||
smooth: true
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_throttle; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_stick
|
||||
elementName: "rc-stick"
|
||||
sceneSize: info.sceneSize
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
|
||||
x: (scaledBounds.x * sceneItem.width) + (ManualControlCommand.Roll * rc_stick.width * 2.5)
|
||||
y: (scaledBounds.y * sceneItem.height) + (ManualControlCommand.Pitch * rc_stick.width * 2.5)
|
||||
|
||||
smooth: true
|
||||
|
||||
//rotate it around his center
|
||||
transform: Rotation {
|
||||
angle: ManualControlCommand.Yaw * 90
|
||||
origin.y : rc_stick.height / 2
|
||||
origin.x : rc_stick.width / 2
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_rc !== true
|
||||
PropertyChanges { target: rc_stick; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Battery panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_bg
|
||||
elementName: "battery-bg"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 10
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_volt
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-volt-text"
|
||||
z: 11
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_volt; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: info.batColors[SystemAlarms.Alarm_Battery]
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Voltage.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_amp
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-amp-text"
|
||||
z: 12
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_amp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: info.batColors[SystemAlarms.Alarm_Battery]
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Current.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_milliamp
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-milliamp-text"
|
||||
z: 13
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_milliamp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": info.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.ConsumedEnergy.toFixed(0)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_estimated_flight_time
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "battery-estimated-flight-time"
|
||||
z: 14
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_estimated_flight_time; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
//color: info.batColors[SystemAlarms.Alarm_Battery]
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": info.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: formatTime(est_time_h) + ":" + formatTime(est_time_m) + ":" + formatTime(est_time_s)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_labels
|
||||
elementName: "battery-labels"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 15
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_labels; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_mousearea
|
||||
elementName: "battery-panel-mousearea"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 16
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_battery;
|
||||
anchors.fill: parent;
|
||||
cursorShape: hide_display_rc == false && hide_display_oplm == false ? Qt.WhatsThisCursor : Qt.ArrowCursor
|
||||
onClicked: hide_display_rc == false && hide_display_oplm == false ? hide_display_battery() : 0
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_bat !== true
|
||||
PropertyChanges { target: battery_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// OPLM panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_bg
|
||||
elementName: "oplm-bg"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 20
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: oplm_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_bg
|
||||
elementName: "smeter-bg"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 21
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: smeter_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_scale
|
||||
elementName: "smeter-scale"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 22
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: smeter_scale; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_needle
|
||||
elementName: "smeter-needle"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 23
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: smeter_needle; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
transform: Rotation {
|
||||
angle: smeter_angle.toFixed(1)
|
||||
origin.y : smeter_needle.height
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_mask
|
||||
elementName: "smeter-mask"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 24
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: smeter_mask; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_button_bg
|
||||
elementName: "oplm-button-bg"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 25
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: oplm_button_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
model: 4
|
||||
|
||||
SvgElementImage {
|
||||
z: 25
|
||||
property variant idButton_oplm: "oplm_button_" + index
|
||||
property variant idButton_oplm_mousearea: "oplm_button_mousearea" + index
|
||||
property variant button_color: "button"+index+"_color"
|
||||
|
||||
id: idButton_oplm
|
||||
|
||||
elementName: "oplm-button-" + index
|
||||
sceneSize: info.sceneSize
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
border.color: "red"
|
||||
border.width: parent.width * 0.04
|
||||
radius: border.width*3
|
||||
color: "transparent"
|
||||
opacity: smeter_filter == index ? 0.5 : 0
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
id: idButton_oplm_mousearea;
|
||||
anchors.fill: parent;
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: select_oplm(index)
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: idButton_oplm; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_id_label
|
||||
elementName: "oplm-id-label"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 26
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: oplm_id_label; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: oplm_id_text
|
||||
sceneSize: info.sceneSize
|
||||
elementName: "oplm-id-text"
|
||||
z: 27
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: oplm_id_text; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: oplm_pair_id > 0 ? oplm_pair_id.toString(16) : "-- -- -- --"
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
capitalization: Font.AllUppercase
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_mousearea
|
||||
elementName: "oplm-panel-mousearea"
|
||||
sceneSize: info.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 26
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_oplm;
|
||||
anchors.fill: parent;
|
||||
cursorShape: hide_display_rc == false && hide_display_bat == false ? Qt.WhatsThisCursor : Qt.ArrowCursor
|
||||
onClicked: hide_display_rc == false && hide_display_bat == false ? hide_display_oplink() : 0
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: hide_display_oplm !== true
|
||||
PropertyChanges { target: oplm_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: info_border
|
||||
elementName: "info-border"
|
||||
|
1088
ground/openpilotgcs/share/openpilotgcs/pfd/default/Panels.qml
Normal file
1088
ground/openpilotgcs/share/openpilotgcs/pfd/default/Panels.qml
Normal file
@ -0,0 +1,1088 @@
|
||||
import QtQuick 2.0
|
||||
|
||||
Item {
|
||||
id: panels
|
||||
property variant sceneSize
|
||||
|
||||
property real est_flight_time: Math.round(FlightBatteryState.EstimatedFlightTime)
|
||||
property real est_time_h: (est_flight_time > 0 ? Math.floor(est_flight_time / 3600) : 0 )
|
||||
property real est_time_m: (est_flight_time > 0 ? Math.floor((est_flight_time - est_time_h*3600)/60) : 0)
|
||||
property real est_time_s: (est_flight_time > 0 ? Math.floor(est_flight_time - est_time_h*3600 - est_time_m*60) : 0)
|
||||
|
||||
function formatTime(time) {
|
||||
if (time === 0)
|
||||
return "00"
|
||||
if (time < 10)
|
||||
return "0" + time;
|
||||
else
|
||||
return time.toString();
|
||||
}
|
||||
|
||||
//
|
||||
// Panel functions
|
||||
//
|
||||
|
||||
property bool show_panels: false
|
||||
property bool hide_display_rc: false
|
||||
property bool hide_display_bat: false
|
||||
property bool hide_display_oplm: false
|
||||
|
||||
function close_panels(){
|
||||
if (show_panels == true)
|
||||
show_panels = false;
|
||||
}
|
||||
|
||||
function hide_display_rcinput(){
|
||||
show_panels = true;
|
||||
rc_input_bg.z = 10
|
||||
battery_bg.z = -1
|
||||
oplm_bg.z = -1
|
||||
system_bg.z = -1
|
||||
}
|
||||
|
||||
function hide_display_battery(){
|
||||
show_panels = true;
|
||||
rc_input_bg.z = 10
|
||||
battery_bg.z = 20
|
||||
oplm_bg.z = -1
|
||||
system_bg.z = -1
|
||||
}
|
||||
|
||||
function hide_display_oplink(){
|
||||
show_panels = true;
|
||||
rc_input_bg.z = 10
|
||||
battery_bg.z = 20
|
||||
oplm_bg.z = 30
|
||||
system_bg.z = -1
|
||||
}
|
||||
|
||||
function hide_display_system(){
|
||||
show_panels = true;
|
||||
rc_input_bg.z = 10
|
||||
battery_bg.z = 20
|
||||
oplm_bg.z = 30
|
||||
system_bg.z = 40
|
||||
}
|
||||
|
||||
// Uninitialised, Ok, Warning, Critical, Error
|
||||
property variant batColors : ["#2c2929", "green", "orange", "red", "red"]
|
||||
|
||||
property real smeter_angle
|
||||
|
||||
property real memory_free : SystemStats.HeapRemaining > 1024 ? SystemStats.HeapRemaining / 1024 : SystemStats.HeapRemaining
|
||||
|
||||
// Needed to get correctly int8 value, reset value (-127) on disconnect
|
||||
property int oplm0_db: telemetry_link == 1 ? OPLinkStatus.PairSignalStrengths_0 : -127
|
||||
property int oplm1_db: telemetry_link == 1 ? OPLinkStatus.PairSignalStrengths_1 : -127
|
||||
property int oplm2_db: telemetry_link == 1 ? OPLinkStatus.PairSignalStrengths_2 : -127
|
||||
property int oplm3_db: telemetry_link == 1 ? OPLinkStatus.PairSignalStrengths_3 : -127
|
||||
|
||||
property real telemetry_sum
|
||||
property real telemetry_sum_old
|
||||
property bool telemetry_link
|
||||
|
||||
// Hack : check if telemetry is active. Works with real link and log replay
|
||||
|
||||
function telemetry_check(){
|
||||
telemetry_sum = OPLinkStatus.RXRate + OPLinkStatus.RXRate
|
||||
|
||||
if (telemetry_sum != telemetry_sum_old || OPLinkStatus.LinkState == 4){
|
||||
telemetry_link = 1
|
||||
} else {
|
||||
telemetry_link = 0
|
||||
}
|
||||
telemetry_sum_old = telemetry_sum
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: telemetry_activity
|
||||
interval: 1200; running: true; repeat: true
|
||||
onTriggered: telemetry_check()
|
||||
}
|
||||
|
||||
// Filtering for S-meter. Smeter range -127dB <--> -13dB = S9+60dB
|
||||
|
||||
Timer {
|
||||
id: smeter_filter0
|
||||
interval: 100; running: true; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm0_db + 13))
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: smeter_filter1
|
||||
interval: 100; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm1_db + 13))
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: smeter_filter2
|
||||
interval: 100; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm2_db + 13))
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: smeter_filter3
|
||||
interval: 100; repeat: true
|
||||
onTriggered: smeter_angle = (0.90 * smeter_angle) + (0.1 * (oplm3_db + 13))
|
||||
}
|
||||
|
||||
property int smeter_filter
|
||||
property variant oplm_pair_id : OPLinkStatus.PairIDs_0
|
||||
|
||||
function select_oplm(index){
|
||||
smeter_filter0.running = false;
|
||||
smeter_filter1.running = false;
|
||||
smeter_filter2.running = false;
|
||||
smeter_filter3.running = false;
|
||||
|
||||
switch(index) {
|
||||
case 0:
|
||||
smeter_filter0.running = true;
|
||||
smeter_filter = 0;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_0
|
||||
break;
|
||||
case 1:
|
||||
smeter_filter1.running = true;
|
||||
smeter_filter = 1;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_1
|
||||
break;
|
||||
case 2:
|
||||
smeter_filter2.running = true;
|
||||
smeter_filter = 2;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_2
|
||||
break;
|
||||
case 3:
|
||||
smeter_filter3.running = true;
|
||||
smeter_filter = 3;
|
||||
oplm_pair_id = OPLinkStatus.PairIDs_3
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// End Functions
|
||||
//
|
||||
// Start Drawing
|
||||
|
||||
//
|
||||
// Close panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: close_bg
|
||||
elementName: "close-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: close_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (close_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
id: close_anim
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: close_mousearea
|
||||
elementName: "close-panel-mousearea"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_close;
|
||||
anchors.fill: parent;
|
||||
cursorShape: show_panels == true ? Qt.WhatsThisCursor : Qt.ArrowCursor
|
||||
onClicked: close_panels()
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: close_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (close_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Rc-Input panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_bg
|
||||
elementName: "rc-input-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 10
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: rc_input_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
id: rc_input_anim
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_labels
|
||||
elementName: "rc-input-labels"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: rc_input_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: rc_input_labels; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_input_mousearea
|
||||
elementName: "rc-input-panel-mousearea"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: rc_input_bg.z+1
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_rcinput;
|
||||
anchors.fill: parent;
|
||||
cursorShape: hide_display_bat == false && hide_display_oplm == false ? Qt.WhatsThisCursor : Qt.ArrowCursor
|
||||
onClicked: hide_display_bat == false && hide_display_oplm == false ? hide_display_rcinput() : 0
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: rc_input_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_throttle
|
||||
elementName: "rc-throttle"
|
||||
sceneSize: panels.sceneSize
|
||||
z: rc_input_bg.z+2
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: (scaledBounds.height * sceneItem.height) * (ManualControlCommand.Throttle)
|
||||
|
||||
x: scaledBounds.x * sceneItem.width
|
||||
y: (scaledBounds.y * sceneItem.height) - rc_throttle.height + (scaledBounds.height * sceneItem.height)
|
||||
|
||||
smooth: true
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: rc_throttle; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: rc_stick
|
||||
elementName: "rc-stick"
|
||||
sceneSize: panels.sceneSize
|
||||
z: rc_input_bg.z+3
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
|
||||
x: (scaledBounds.x * sceneItem.width) + (ManualControlCommand.Roll * rc_stick.width * 2.5)
|
||||
y: (scaledBounds.y * sceneItem.height) + (ManualControlCommand.Pitch * rc_stick.width * 2.5)
|
||||
|
||||
smooth: true
|
||||
|
||||
//rotate it around his center
|
||||
transform: Rotation {
|
||||
angle: ManualControlCommand.Yaw * 90
|
||||
origin.y : rc_stick.height / 2
|
||||
origin.x : rc_stick.width / 2
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: rc_stick; x: Math.floor(scaledBounds.x * sceneItem.width) - (rc_input_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Battery panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_bg
|
||||
elementName: "battery-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 20
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_volt
|
||||
sceneSize: panels.sceneSize
|
||||
elementName: "battery-volt-text"
|
||||
z: battery_bg.z+1
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_volt; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: panels.batColors[SystemAlarms.Alarm_Battery]
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Voltage.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_amp
|
||||
sceneSize: panels.sceneSize
|
||||
elementName: "battery-amp-text"
|
||||
z: battery_bg.z+2
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_amp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
color: panels.batColors[SystemAlarms.Alarm_Battery]
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.Current.toFixed(2)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_milliamp
|
||||
sceneSize: panels.sceneSize
|
||||
elementName: "battery-milliamp-text"
|
||||
z: battery_bg.z+3
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_milliamp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": panels.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: FlightBatteryState.ConsumedEnergy.toFixed(0)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: battery_estimated_flight_time
|
||||
sceneSize: panels.sceneSize
|
||||
elementName: "battery-estimated-flight-time"
|
||||
z: battery_bg.z+4
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_estimated_flight_time; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
//color: panels.batColors[SystemAlarms.Alarm_Battery]
|
||||
|
||||
// Alarm based on FlightBatteryState.EstimatedFlightTime < 120s orange, < 60s red
|
||||
color: (FlightBatteryState.EstimatedFlightTime <= 120 && FlightBatteryState.EstimatedFlightTime > 60 ? "orange" :
|
||||
(FlightBatteryState.EstimatedFlightTime <= 60 ? "red": panels.batColors[SystemAlarms.Alarm_Battery]))
|
||||
|
||||
border.color: "white"
|
||||
border.width: battery_volt.width * 0.01
|
||||
radius: border.width * 4
|
||||
|
||||
Text {
|
||||
text: formatTime(est_time_h) + ":" + formatTime(est_time_m) + ":" + formatTime(est_time_s)
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 0.6)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_labels
|
||||
elementName: "battery-labels"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: battery_bg.z+5
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_labels; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: battery_mousearea
|
||||
elementName: "battery-panel-mousearea"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: battery_bg.z+6
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_battery;
|
||||
anchors.fill: parent;
|
||||
cursorShape: Qt.WhatsThisCursor
|
||||
onClicked: hide_display_battery()
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: battery_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// OPLM panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_bg
|
||||
elementName: "oplm-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 30
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: oplm_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_bg
|
||||
elementName: "smeter-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: smeter_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_scale
|
||||
elementName: "smeter-scale"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z+2
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: smeter_scale; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_needle
|
||||
elementName: "smeter-needle"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z+3
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: smeter_needle; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
transform: Rotation {
|
||||
angle: smeter_angle.toFixed(1)
|
||||
origin.y : smeter_needle.height
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: smeter_mask
|
||||
elementName: "smeter-mask"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z+4
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: smeter_mask; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_button_bg
|
||||
elementName: "oplm-button-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z+5
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: oplm_button_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Repeater {
|
||||
model: 4
|
||||
|
||||
SvgElementImage {
|
||||
z: oplm_bg.z+5
|
||||
property variant idButton_oplm: "oplm_button_" + index
|
||||
property variant idButton_oplm_mousearea: "oplm_button_mousearea" + index
|
||||
property variant button_color: "button"+index+"_color"
|
||||
|
||||
id: idButton_oplm
|
||||
|
||||
elementName: "oplm-button-" + index
|
||||
sceneSize: panels.sceneSize
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
border.color: "red"
|
||||
border.width: parent.width * 0.04
|
||||
radius: border.width*3
|
||||
color: "transparent"
|
||||
opacity: smeter_filter == index ? 0.5 : 0
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
id: idButton_oplm_mousearea;
|
||||
anchors.fill: parent;
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: select_oplm(index)
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: idButton_oplm; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_id_label
|
||||
elementName: "oplm-id-label"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z+6
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: oplm_id_label; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: oplm_id_text
|
||||
sceneSize: panels.sceneSize
|
||||
elementName: "oplm-id-text"
|
||||
z: oplm_bg.z+7
|
||||
|
||||
width: scaledBounds.width * sceneItem.width
|
||||
height: scaledBounds.height * sceneItem.height
|
||||
y: scaledBounds.y * sceneItem.height
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: oplm_id_text; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: oplm_pair_id > 0 ? oplm_pair_id.toString(16) : "-- -- -- --"
|
||||
anchors.centerIn: parent
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
capitalization: Font.AllUppercase
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: oplm_mousearea
|
||||
elementName: "oplm-panel-mousearea"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: oplm_bg.z
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_oplm;
|
||||
anchors.fill: parent;
|
||||
cursorShape: Qt.WhatsThisCursor
|
||||
onClicked: hide_display_oplink()
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: oplm_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// System panel
|
||||
//
|
||||
|
||||
SvgElementImage {
|
||||
id: system_bg
|
||||
elementName: "system-bg"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: 40
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
id: system_anim
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_frametype
|
||||
elementName: "system-frame-type"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_frametype; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ["FixedWing", "FixedWingElevon", "FixedWingVtail", "VTOL", "HeliCP", "QuadX", "QuadP",
|
||||
"Hexa+", "Octo+", "Custom", "HexaX", "HexaH", "OctoV", "OctoCoaxP", "OctoCoaxX", "OctoX", "HexaCoax",
|
||||
"Tricopter", "GroundVehicleCar", "GroundVehicleDiff", "GroundVehicleMoto"][SystemSettings.AirframeType]
|
||||
anchors.right: parent.right
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_cpuloadtemp
|
||||
elementName: "system-cpu-load-temp"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_cpuloadtemp; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
// CC3D hack, Cputemp not working
|
||||
text: SystemStats.CPULoad+"% - "+
|
||||
[String(SystemStats.CPUTemp).charCodeAt(0) == "64" ? "??" : String(SystemStats.CPUTemp).charCodeAt(0)] +"°C"
|
||||
anchors.right: parent.right
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_memfree
|
||||
elementName: "system-mem-free"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_memfree; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: SystemStats.HeapRemaining > 1024 ? memory_free.toFixed(2) +"Kb" : memory_free +"bytes"
|
||||
anchors.right: parent.right
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_fusion_algo
|
||||
elementName: "system-attitude-estimation-algo"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_fusion_algo; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ["None", "Complementary", "CompMag", "Comp+Mag+GPS", "EKFIndoor", "EKFOutdoor"][RevoSettings.FusionAlgorithm]
|
||||
anchors.right: parent.right
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.2)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_mag_used
|
||||
elementName: "system-mag-used"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_mag_used; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ["Invalid", "OnBoard", "External"][MagState.Source]
|
||||
anchors.right: parent.right
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementPositionItem {
|
||||
id: system_gpstype
|
||||
elementName: "system-gps-type"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_gpstype; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ["Unknown", "NMEA", "UBX", "UBX7", "UBX8"][GPSPositionSensor.SensorType]
|
||||
anchors.right: parent.right
|
||||
color: "white"
|
||||
font {
|
||||
family: "Arial"
|
||||
pixelSize: Math.floor(parent.height * 1.4)
|
||||
weight: Font.DemiBold
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SvgElementImage {
|
||||
id: system_mousearea
|
||||
elementName: "system-panel-mousearea"
|
||||
sceneSize: panels.sceneSize
|
||||
y: Math.floor(scaledBounds.y * sceneItem.height)
|
||||
z: system_bg.z+1
|
||||
|
||||
MouseArea {
|
||||
id: hidedisp_system;
|
||||
anchors.fill: parent;
|
||||
cursorShape: Qt.WhatsThisCursor
|
||||
onClicked: hide_display_system()
|
||||
}
|
||||
|
||||
states: State {
|
||||
name: "fading"
|
||||
when: show_panels !== true
|
||||
PropertyChanges { target: system_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
|
||||
}
|
||||
|
||||
transitions: Transition {
|
||||
SequentialAnimation {
|
||||
PropertyAnimation { property: "x"; duration: 800 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -83,6 +83,11 @@ Rectangle {
|
||||
sceneSize: sceneItem.viewportSize
|
||||
}
|
||||
|
||||
Panels {
|
||||
anchors.fill: parent
|
||||
sceneSize: sceneItem.viewportSize
|
||||
}
|
||||
|
||||
Warnings {
|
||||
anchors.fill: parent
|
||||
sceneSize: sceneItem.viewportSize
|
||||
|
@ -22,6 +22,67 @@
|
||||
inkscape:export-ydpi="72">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient12805">
|
||||
<stop
|
||||
style="stop-color:#191919;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop12807" />
|
||||
<stop
|
||||
style="stop-color:#191919;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop12809" />
|
||||
</linearGradient>
|
||||
<marker
|
||||
inkscape:stockid="Arrow2Send"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="Arrow2Send"
|
||||
style="overflow:visible;">
|
||||
<path
|
||||
id="path6885"
|
||||
style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
|
||||
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
|
||||
transform="scale(0.3) rotate(180) translate(-2.3,0)" />
|
||||
</marker>
|
||||
<marker
|
||||
inkscape:stockid="Arrow2Mend"
|
||||
orient="auto"
|
||||
refY="0.0"
|
||||
refX="0.0"
|
||||
id="Arrow2Mend"
|
||||
style="overflow:visible;">
|
||||
<path
|
||||
id="path6879"
|
||||
style="fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
|
||||
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
|
||||
transform="scale(0.6) rotate(180) translate(0,0)" />
|
||||
</marker>
|
||||
<linearGradient
|
||||
id="linearGradient5144">
|
||||
<stop
|
||||
style="stop-color:#a90000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5146" />
|
||||
<stop
|
||||
style="stop-color:#fff9ff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5148" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5081">
|
||||
<stop
|
||||
style="stop-color:#153df9;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5083" />
|
||||
<stop
|
||||
style="stop-color:#153df9;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5085" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6590">
|
||||
<stop
|
||||
@ -191,6 +252,74 @@
|
||||
y1="443.99783"
|
||||
x2="153.8302"
|
||||
y2="442.49057" />
|
||||
<linearGradient
|
||||
y2="39.685001"
|
||||
x2="34.534"
|
||||
y1="12.285"
|
||||
x1="14.463"
|
||||
gradientTransform="matrix(1.2419,0,0,1.2419,152.31048,211.32537)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3013-6"
|
||||
xlink:href="#linearGradient3281-6"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="linearGradient3281-6"
|
||||
y2="39.685001"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="34.534"
|
||||
gradientTransform="matrix(1.2419,0,0,1.2419,-45.146605,-19.897271)"
|
||||
y1="12.285"
|
||||
x1="14.463"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3266-3"
|
||||
style="stop-color:#c9c9c9"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3276-6"
|
||||
style="stop-color:#f8f8f8"
|
||||
offset=".25" />
|
||||
<stop
|
||||
id="stop3272-0"
|
||||
style="stop-color:#e2e2e2"
|
||||
offset=".5" />
|
||||
<stop
|
||||
id="stop3274-1"
|
||||
style="stop-color:#b0b0b0"
|
||||
offset=".75" />
|
||||
<stop
|
||||
id="stop3268-1"
|
||||
style="stop-color:#c9c9c9"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5081"
|
||||
id="linearGradient5140"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.72681147,0,0,0.72681203,51.886659,97.24824)"
|
||||
x1="173.84364"
|
||||
y1="306.16443"
|
||||
x2="192.77324"
|
||||
y2="321.63202" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5144"
|
||||
id="linearGradient5150"
|
||||
x1="185.89207"
|
||||
y1="292.12827"
|
||||
x2="197.19637"
|
||||
y2="303.79398"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient12805"
|
||||
id="linearGradient12811"
|
||||
x1="182.40804"
|
||||
y1="378.5622"
|
||||
x2="187.44969"
|
||||
y2="378.5622"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
@ -199,12 +328,12 @@
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2"
|
||||
inkscape:cx="73.095704"
|
||||
inkscape:cy="134.35603"
|
||||
inkscape:zoom="2.1478368"
|
||||
inkscape:cx="247.68069"
|
||||
inkscape:cy="165.05075"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer63"
|
||||
showgrid="true"
|
||||
inkscape:current-layer="layer77"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
@ -217,17 +346,17 @@
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:object-nodes="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:object-paths="false"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-nodes="false"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:snap-grids="true"
|
||||
inkscape:snap-grids="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
inkscape:snap-nodes="false"
|
||||
inkscape:bbox-paths="false"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:snap-intersection-paths="false"
|
||||
inkscape:snap-object-midpoints="false"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:snap-object-midpoints="true"
|
||||
inkscape:snap-center="false"
|
||||
inkscape:snap-bbox-edge-midpoints="false">
|
||||
<sodipodi:guide
|
||||
@ -300,12 +429,12 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="center-line"
|
||||
d="m -179.5,169.08132 l 997,0"
|
||||
d="M -179.5,169.08132 L 817.5,169.08132"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="pitch0"
|
||||
d="m 266,169.08132 l 106,0"
|
||||
d="M 266,169.08132 L 372,169.08132"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
</g>
|
||||
</g>
|
||||
@ -313,15 +442,13 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer69"
|
||||
inkscape:label="foreground_layer"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<rect
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:url(#radialGradient4865);fill-opacity:1;stroke:none"
|
||||
d="M -0.5,-0.5 L 642,-0.5 L 642,481 L -0.5,481 z"
|
||||
id="foreground"
|
||||
width="641.5"
|
||||
height="481.5"
|
||||
x="-0.5"
|
||||
y="-0.5" />
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
@ -358,11 +485,11 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6182"
|
||||
d="m 303.37607,149 l 32.7768,0"
|
||||
d="M 303.37607,149 L 336.15287,149"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.77784,129 l 67.97326,0"
|
||||
d="M 285.77784,129 L 353.7511,129"
|
||||
id="path6190"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
@ -370,12 +497,12 @@
|
||||
id="pitch_label10L"
|
||||
inkscape:label="#pitch_label10L">
|
||||
<path
|
||||
d="m 269.90234,132.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
|
||||
d="M 269.90234,132.49326 L 271.83594,132.49326 L 271.83594,125.81943 L 269.73242,126.2413 L 269.73242,125.16318 L 271.82422,124.7413 L 273.00781,124.7413 L 273.00781,132.49326 L 274.94141,132.49326 L 274.94141,133.48935 L 269.90234,133.48935 L 269.90234,132.49326"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6614"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,125.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,125.5206 C 279.25976,125.52061 278.80078,125.82139 278.49219,126.42294 C 278.1875,127.02061 278.03515,127.921 278.03516,129.12411 C 278.03515,130.32334 278.1875,131.22373 278.49219,131.82529 C 278.80078,132.42294 279.25976,132.72177 279.86914,132.72177 C 280.48242,132.72177 280.9414,132.42294 281.24609,131.82529 C 281.55468,131.22373 281.70898,130.32334 281.70898,129.12411 C 281.70898,127.921 281.55468,127.02061 281.24609,126.42294 C 280.9414,125.82139 280.48242,125.52061 279.86914,125.5206 M 279.86914,124.5831 C 280.8496,124.58311 281.59765,124.97178 282.11328,125.74911 C 282.63281,126.52256 282.89257,127.64756 282.89258,129.12411 C 282.89257,130.59677 282.63281,131.72177 282.11328,132.49911 C 281.59765,133.27255 280.8496,133.65927 279.86914,133.65927 C 278.88867,133.65927 278.13867,133.27255 277.61914,132.49911 C 277.10351,131.72177 276.8457,130.59677 276.8457,129.12411 C 276.8457,127.64756 277.10351,126.52256 277.61914,125.74911 C 278.13867,124.97178 278.88867,124.58311 279.86914,124.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6616"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -384,37 +511,37 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label10R">
|
||||
<path
|
||||
d="m 357.90234,132.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
|
||||
d="M 357.90234,132.49326 L 359.83594,132.49326 L 359.83594,125.81943 L 357.73242,126.2413 L 357.73242,125.16318 L 359.82422,124.7413 L 361.00781,124.7413 L 361.00781,132.49326 L 362.94141,132.49326 L 362.94141,133.48935 L 357.90234,133.48935 L 357.90234,132.49326"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6792"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,125.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,125.5206 C 367.25976,125.52061 366.80078,125.82139 366.49219,126.42294 C 366.1875,127.02061 366.03515,127.921 366.03516,129.12411 C 366.03515,130.32334 366.1875,131.22373 366.49219,131.82529 C 366.80078,132.42294 367.25976,132.72177 367.86914,132.72177 C 368.48242,132.72177 368.9414,132.42294 369.24609,131.82529 C 369.55468,131.22373 369.70898,130.32334 369.70898,129.12411 C 369.70898,127.921 369.55468,127.02061 369.24609,126.42294 C 368.9414,125.82139 368.48242,125.52061 367.86914,125.5206 M 367.86914,124.5831 C 368.8496,124.58311 369.59765,124.97178 370.11328,125.74911 C 370.63281,126.52256 370.89257,127.64756 370.89258,129.12411 C 370.89257,130.59677 370.63281,131.72177 370.11328,132.49911 C 369.59765,133.27255 368.8496,133.65927 367.86914,133.65927 C 366.88867,133.65927 366.13867,133.27255 365.61914,132.49911 C 365.10351,131.72177 364.8457,130.59677 364.8457,129.12411 C 364.8457,127.64756 365.10351,126.52256 365.61914,125.74911 C 366.13867,124.97178 366.88867,124.58311 367.86914,124.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6794"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 303.37607,109 l 32.7768,0"
|
||||
d="M 303.37607,109 L 336.15287,109"
|
||||
id="path6304"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6306"
|
||||
d="m 285.77784,89 l 67.97326,0"
|
||||
d="M 285.77784,89 L 353.7511,89"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label20L"
|
||||
inkscape:label="#pitch_label20L">
|
||||
<path
|
||||
d="m 270.7168,92.493256 l 4.13086,0 l 0,0.996093 l -5.55469,0 l 0,-0.996093 c 0.44922,-0.464843 1.06054,-1.087889 1.83398,-1.869141 c 0.77734,-0.785153 1.26562,-1.291011 1.46485,-1.517578 c 0.3789,-0.425777 0.64257,-0.785151 0.79101,-1.078125 c 0.15234,-0.296869 0.22851,-0.587885 0.22852,-0.873047 c -1e-5,-0.464837 -0.16407,-0.843743 -0.49219,-1.136719 c -0.32422,-0.292961 -0.74805,-0.439445 -1.27148,-0.439453 c -0.3711,8e-6 -0.76368,0.06446 -1.17774,0.193359 c -0.41016,0.128914 -0.84961,0.324227 -1.31836,0.585938 l 0,-1.195313 c 0.47656,-0.191397 0.92188,-0.335928 1.33594,-0.433593 c 0.41406,-0.09765 0.79297,-0.146476 1.13672,-0.146485 c 0.90624,9e-6 1.6289,0.226572 2.16797,0.679688 c 0.53905,0.453133 0.80858,1.058601 0.80859,1.816406 c -10e-6,0.359381 -0.0684,0.701178 -0.20508,1.025391 c -0.13282,0.320317 -0.37696,0.699223 -0.73242,1.136718 c -0.0977,0.113286 -0.40821,0.441411 -0.93164,0.984375 c -0.52344,0.539066 -1.26172,1.294924 -2.21484,2.267579"
|
||||
d="M 270.7168,92.493256 L 274.84766,92.493256 L 274.84766,93.489349 L 269.29297,93.489349 L 269.29297,92.493256 C 269.74219,92.028413 270.35351,91.405367 271.12695,90.624115 C 271.90429,89.838962 272.39257,89.333104 272.5918,89.106537 C 272.9707,88.68076 273.23437,88.321386 273.38281,88.028412 C 273.53515,87.731543 273.61132,87.440527 273.61133,87.155365 C 273.61132,86.690528 273.44726,86.311622 273.11914,86.018646 C 272.79492,85.725685 272.37109,85.579201 271.84766,85.579193 C 271.47656,85.579201 271.08398,85.643653 270.66992,85.772552 C 270.25976,85.901466 269.82031,86.096779 269.35156,86.35849 L 269.35156,85.163177 C 269.82812,84.97178 270.27344,84.827249 270.6875,84.729584 C 271.10156,84.631934 271.48047,84.583108 271.82422,84.583099 C 272.73046,84.583108 273.45312,84.809671 273.99219,85.262787 C 274.53124,85.71592 274.80077,86.321388 274.80078,87.079193 C 274.80077,87.438574 274.73238,87.780371 274.5957,88.104584 C 274.46288,88.424901 274.21874,88.803807 273.86328,89.241302 C 273.76558,89.354588 273.45507,89.682713 272.93164,90.225677 C 272.4082,90.764743 271.66992,91.520601 270.7168,92.493256"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6609"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,85.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 279.86914,85.520599 C 279.25976,85.520607 278.80078,85.821388 278.49219,86.422943 C 278.1875,87.020606 278.03515,87.920996 278.03516,89.124115 C 278.03515,90.323337 278.1875,91.223727 278.49219,91.825287 C 278.80078,92.422944 279.25976,92.721772 279.86914,92.721771 C 280.48242,92.721772 280.9414,92.422944 281.24609,91.825287 C 281.55468,91.223727 281.70898,90.323337 281.70898,89.124115 C 281.70898,87.920996 281.55468,87.020606 281.24609,86.422943 C 280.9414,85.821388 280.48242,85.520607 279.86914,85.520599 M 279.86914,84.583099 C 280.8496,84.583108 281.59765,84.97178 282.11328,85.749115 C 282.63281,86.522559 282.89257,87.647558 282.89258,89.124115 C 282.89257,90.596774 282.63281,91.721773 282.11328,92.499115 C 281.59765,93.272553 280.8496,93.659271 279.86914,93.659271 C 278.88867,93.659271 278.13867,93.272553 277.61914,92.499115 C 277.10351,91.721773 276.8457,90.596774 276.8457,89.124115 C 276.8457,87.647558 277.10351,86.522559 277.61914,85.749115 C 278.13867,84.97178 278.88867,84.583108 279.86914,84.583099"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6611"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -423,36 +550,36 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label20R">
|
||||
<path
|
||||
d="m 358.7168,92.493256 l 4.13086,0 l 0,0.996093 l -5.55469,0 l 0,-0.996093 c 0.44922,-0.464843 1.06054,-1.087889 1.83398,-1.869141 c 0.77734,-0.785153 1.26562,-1.291011 1.46485,-1.517578 c 0.3789,-0.425777 0.64257,-0.785151 0.79101,-1.078125 c 0.15234,-0.296869 0.22851,-0.587885 0.22852,-0.873047 c -1e-5,-0.464837 -0.16407,-0.843743 -0.49219,-1.136719 c -0.32422,-0.292961 -0.74805,-0.439445 -1.27148,-0.439453 c -0.3711,8e-6 -0.76368,0.06446 -1.17774,0.193359 c -0.41016,0.128914 -0.84961,0.324227 -1.31836,0.585938 l 0,-1.195313 c 0.47656,-0.191397 0.92188,-0.335928 1.33594,-0.433593 c 0.41406,-0.09765 0.79297,-0.146476 1.13672,-0.146485 c 0.90624,9e-6 1.6289,0.226572 2.16797,0.679688 c 0.53905,0.453133 0.80858,1.058601 0.80859,1.816406 c -10e-6,0.359381 -0.0684,0.701178 -0.20508,1.025391 c -0.13282,0.320317 -0.37696,0.699223 -0.73242,1.136718 c -0.0977,0.113286 -0.40821,0.441411 -0.93164,0.984375 c -0.52344,0.539066 -1.26172,1.294924 -2.21484,2.267579"
|
||||
d="M 358.7168,92.493256 L 362.84766,92.493256 L 362.84766,93.489349 L 357.29297,93.489349 L 357.29297,92.493256 C 357.74219,92.028413 358.35351,91.405367 359.12695,90.624115 C 359.90429,89.838962 360.39257,89.333104 360.5918,89.106537 C 360.9707,88.68076 361.23437,88.321386 361.38281,88.028412 C 361.53515,87.731543 361.61132,87.440527 361.61133,87.155365 C 361.61132,86.690528 361.44726,86.311622 361.11914,86.018646 C 360.79492,85.725685 360.37109,85.579201 359.84766,85.579193 C 359.47656,85.579201 359.08398,85.643653 358.66992,85.772552 C 358.25976,85.901466 357.82031,86.096779 357.35156,86.35849 L 357.35156,85.163177 C 357.82812,84.97178 358.27344,84.827249 358.6875,84.729584 C 359.10156,84.631934 359.48047,84.583108 359.82422,84.583099 C 360.73046,84.583108 361.45312,84.809671 361.99219,85.262787 C 362.53124,85.71592 362.80077,86.321388 362.80078,87.079193 C 362.80077,87.438574 362.73238,87.780371 362.5957,88.104584 C 362.46288,88.424901 362.21874,88.803807 361.86328,89.241302 C 361.76558,89.354588 361.45507,89.682713 360.93164,90.225677 C 360.4082,90.764743 359.66992,91.520601 358.7168,92.493256"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6787"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,85.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 367.86914,85.520599 C 367.25976,85.520607 366.80078,85.821388 366.49219,86.422943 C 366.1875,87.020606 366.03515,87.920996 366.03516,89.124115 C 366.03515,90.323337 366.1875,91.223727 366.49219,91.825287 C 366.80078,92.422944 367.25976,92.721772 367.86914,92.721771 C 368.48242,92.721772 368.9414,92.422944 369.24609,91.825287 C 369.55468,91.223727 369.70898,90.323337 369.70898,89.124115 C 369.70898,87.920996 369.55468,87.020606 369.24609,86.422943 C 368.9414,85.821388 368.48242,85.520607 367.86914,85.520599 M 367.86914,84.583099 C 368.8496,84.583108 369.59765,84.97178 370.11328,85.749115 C 370.63281,86.522559 370.89257,87.647558 370.89258,89.124115 C 370.89257,90.596774 370.63281,91.721773 370.11328,92.499115 C 369.59765,93.272553 368.8496,93.659271 367.86914,93.659271 C 366.88867,93.659271 366.13867,93.272553 365.61914,92.499115 C 365.10351,91.721773 364.8457,90.596774 364.8457,89.124115 C 364.8457,87.647558 365.10351,86.522559 365.61914,85.749115 C 366.13867,84.97178 366.88867,84.583108 367.86914,84.583099"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6789"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 303.37607,189 l 32.7768,0"
|
||||
d="M 303.37607,189 L 336.15287,189"
|
||||
id="path7556"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7642"
|
||||
d="m 285.77784,249 l 67.97326,0"
|
||||
d="M 285.77784,249 L 353.7511,249"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-20L">
|
||||
<path
|
||||
d="m 270.7168,252.49326 l 4.13086,0 l 0,0.99609 l -5.55469,0 l 0,-0.99609 c 0.44922,-0.46485 1.06054,-1.08789 1.83398,-1.86915 c 0.77734,-0.78515 1.26562,-1.29101 1.46485,-1.51757 c 0.3789,-0.42578 0.64257,-0.78515 0.79101,-1.07813 c 0.15234,-0.29687 0.22851,-0.58788 0.22852,-0.87305 c -1e-5,-0.46483 -0.16407,-0.84374 -0.49219,-1.13671 c -0.32422,-0.29296 -0.74805,-0.43945 -1.27148,-0.43946 c -0.3711,10e-6 -0.76368,0.0645 -1.17774,0.19336 c -0.41016,0.12892 -0.84961,0.32423 -1.31836,0.58594 l 0,-1.19531 c 0.47656,-0.1914 0.92188,-0.33593 1.33594,-0.4336 c 0.41406,-0.0976 0.79297,-0.14647 1.13672,-0.14648 c 0.90624,1e-5 1.6289,0.22657 2.16797,0.67969 c 0.53905,0.45313 0.80858,1.0586 0.80859,1.8164 c -10e-6,0.35938 -0.0684,0.70118 -0.20508,1.02539 c -0.13282,0.32032 -0.37696,0.69923 -0.73242,1.13672 c -0.0977,0.11329 -0.40821,0.44141 -0.93164,0.98438 c -0.52344,0.53906 -1.26172,1.29492 -2.21484,2.26758"
|
||||
d="M 270.7168,252.49326 L 274.84766,252.49326 L 274.84766,253.48935 L 269.29297,253.48935 L 269.29297,252.49326 C 269.74219,252.02841 270.35351,251.40537 271.12695,250.62411 C 271.90429,249.83896 272.39257,249.3331 272.5918,249.10654 C 272.9707,248.68076 273.23437,248.32139 273.38281,248.02841 C 273.53515,247.73154 273.61132,247.44053 273.61133,247.15536 C 273.61132,246.69053 273.44726,246.31162 273.11914,246.01865 C 272.79492,245.72569 272.37109,245.5792 271.84766,245.57919 C 271.47656,245.5792 271.08398,245.64369 270.66992,245.77255 C 270.25976,245.90147 269.82031,246.09678 269.35156,246.35849 L 269.35156,245.16318 C 269.82812,244.97178 270.27344,244.82725 270.6875,244.72958 C 271.10156,244.63198 271.48047,244.58311 271.82422,244.5831 C 272.73046,244.58311 273.45312,244.80967 273.99219,245.26279 C 274.53124,245.71592 274.80077,246.32139 274.80078,247.07919 C 274.80077,247.43857 274.73238,247.78037 274.5957,248.10458 C 274.46288,248.4249 274.21874,248.80381 273.86328,249.2413 C 273.76558,249.35459 273.45507,249.68271 272.93164,250.22568 C 272.4082,250.76474 271.66992,251.5206 270.7168,252.49326"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6689"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,245.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,245.5206 C 279.25976,245.52061 278.80078,245.82139 278.49219,246.42294 C 278.1875,247.02061 278.03515,247.921 278.03516,249.12411 C 278.03515,250.32334 278.1875,251.22373 278.49219,251.82529 C 278.80078,252.42294 279.25976,252.72177 279.86914,252.72177 C 280.48242,252.72177 280.9414,252.42294 281.24609,251.82529 C 281.55468,251.22373 281.70898,250.32334 281.70898,249.12411 C 281.70898,247.921 281.55468,247.02061 281.24609,246.42294 C 280.9414,245.82139 280.48242,245.52061 279.86914,245.5206 M 279.86914,244.5831 C 280.8496,244.58311 281.59765,244.97178 282.11328,245.74911 C 282.63281,246.52256 282.89257,247.64756 282.89258,249.12411 C 282.89257,250.59677 282.63281,251.72177 282.11328,252.49911 C 281.59765,253.27255 280.8496,253.65927 279.86914,253.65927 C 278.88867,253.65927 278.13867,253.27255 277.61914,252.49911 C 277.10351,251.72177 276.8457,250.59677 276.8457,249.12411 C 276.8457,247.64756 277.10351,246.52256 277.61914,245.74911 C 278.13867,244.97178 278.88867,244.58311 279.86914,244.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6691"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -461,12 +588,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-20R">
|
||||
<path
|
||||
d="m 358.7168,252.49326 l 4.13086,0 l 0,0.99609 l -5.55469,0 l 0,-0.99609 c 0.44922,-0.46485 1.06054,-1.08789 1.83398,-1.86915 c 0.77734,-0.78515 1.26562,-1.29101 1.46485,-1.51757 c 0.3789,-0.42578 0.64257,-0.78515 0.79101,-1.07813 c 0.15234,-0.29687 0.22851,-0.58788 0.22852,-0.87305 c -1e-5,-0.46483 -0.16407,-0.84374 -0.49219,-1.13671 c -0.32422,-0.29296 -0.74805,-0.43945 -1.27148,-0.43946 c -0.3711,10e-6 -0.76368,0.0645 -1.17774,0.19336 c -0.41016,0.12892 -0.84961,0.32423 -1.31836,0.58594 l 0,-1.19531 c 0.47656,-0.1914 0.92188,-0.33593 1.33594,-0.4336 c 0.41406,-0.0976 0.79297,-0.14647 1.13672,-0.14648 c 0.90624,1e-5 1.6289,0.22657 2.16797,0.67969 c 0.53905,0.45313 0.80858,1.0586 0.80859,1.8164 c -10e-6,0.35938 -0.0684,0.70118 -0.20508,1.02539 c -0.13282,0.32032 -0.37696,0.69923 -0.73242,1.13672 c -0.0977,0.11329 -0.40821,0.44141 -0.93164,0.98438 c -0.52344,0.53906 -1.26172,1.29492 -2.21484,2.26758"
|
||||
d="M 358.7168,252.49326 L 362.84766,252.49326 L 362.84766,253.48935 L 357.29297,253.48935 L 357.29297,252.49326 C 357.74219,252.02841 358.35351,251.40537 359.12695,250.62411 C 359.90429,249.83896 360.39257,249.3331 360.5918,249.10654 C 360.9707,248.68076 361.23437,248.32139 361.38281,248.02841 C 361.53515,247.73154 361.61132,247.44053 361.61133,247.15536 C 361.61132,246.69053 361.44726,246.31162 361.11914,246.01865 C 360.79492,245.72569 360.37109,245.5792 359.84766,245.57919 C 359.47656,245.5792 359.08398,245.64369 358.66992,245.77255 C 358.25976,245.90147 357.82031,246.09678 357.35156,246.35849 L 357.35156,245.16318 C 357.82812,244.97178 358.27344,244.82725 358.6875,244.72958 C 359.10156,244.63198 359.48047,244.58311 359.82422,244.5831 C 360.73046,244.58311 361.45312,244.80967 361.99219,245.26279 C 362.53124,245.71592 362.80077,246.32139 362.80078,247.07919 C 362.80077,247.43857 362.73238,247.78037 362.5957,248.10458 C 362.46288,248.4249 362.21874,248.80381 361.86328,249.2413 C 361.76558,249.35459 361.45507,249.68271 360.93164,250.22568 C 360.4082,250.76474 359.66992,251.5206 358.7168,252.49326"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6694"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,245.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,245.5206 C 367.25976,245.52061 366.80078,245.82139 366.49219,246.42294 C 366.1875,247.02061 366.03515,247.921 366.03516,249.12411 C 366.03515,250.32334 366.1875,251.22373 366.49219,251.82529 C 366.80078,252.42294 367.25976,252.72177 367.86914,252.72177 C 368.48242,252.72177 368.9414,252.42294 369.24609,251.82529 C 369.55468,251.22373 369.70898,250.32334 369.70898,249.12411 C 369.70898,247.921 369.55468,247.02061 369.24609,246.42294 C 368.9414,245.82139 368.48242,245.52061 367.86914,245.5206 M 367.86914,244.5831 C 368.8496,244.58311 369.59765,244.97178 370.11328,245.74911 C 370.63281,246.52256 370.89257,247.64756 370.89258,249.12411 C 370.89257,250.59677 370.63281,251.72177 370.11328,252.49911 C 369.59765,253.27255 368.8496,253.65927 367.86914,253.65927 C 366.88867,253.65927 366.13867,253.27255 365.61914,252.49911 C 365.10351,251.72177 364.8457,250.59677 364.8457,249.12411 C 364.8457,247.64756 365.10351,246.52256 365.61914,245.74911 C 366.13867,244.97178 366.88867,244.58311 367.86914,244.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6696"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -474,23 +601,23 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path7652"
|
||||
d="m 303.37607,229 l 32.7768,0"
|
||||
d="M 303.37607,229 L 336.15287,229"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 285.77784,209 l 67.97326,0"
|
||||
d="M 285.77784,209 L 353.7511,209"
|
||||
id="path7654"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-10L">
|
||||
<path
|
||||
d="m 269.90234,212.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
|
||||
d="M 269.90234,212.49326 L 271.83594,212.49326 L 271.83594,205.81943 L 269.73242,206.2413 L 269.73242,205.16318 L 271.82422,204.7413 L 273.00781,204.7413 L 273.00781,212.49326 L 274.94141,212.49326 L 274.94141,213.48935 L 269.90234,213.48935 L 269.90234,212.49326"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6699"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,205.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,205.5206 C 279.25976,205.52061 278.80078,205.82139 278.49219,206.42294 C 278.1875,207.02061 278.03515,207.921 278.03516,209.12411 C 278.03515,210.32334 278.1875,211.22373 278.49219,211.82529 C 278.80078,212.42294 279.25976,212.72177 279.86914,212.72177 C 280.48242,212.72177 280.9414,212.42294 281.24609,211.82529 C 281.55468,211.22373 281.70898,210.32334 281.70898,209.12411 C 281.70898,207.921 281.55468,207.02061 281.24609,206.42294 C 280.9414,205.82139 280.48242,205.52061 279.86914,205.5206 M 279.86914,204.5831 C 280.8496,204.58311 281.59765,204.97178 282.11328,205.74911 C 282.63281,206.52256 282.89257,207.64756 282.89258,209.12411 C 282.89257,210.59677 282.63281,211.72177 282.11328,212.49911 C 281.59765,213.27255 280.8496,213.65927 279.86914,213.65927 C 278.88867,213.65927 278.13867,213.27255 277.61914,212.49911 C 277.10351,211.72177 276.8457,210.59677 276.8457,209.12411 C 276.8457,207.64756 277.10351,206.52256 277.61914,205.74911 C 278.13867,204.97178 278.88867,204.58311 279.86914,204.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6701"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -499,37 +626,37 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-10R">
|
||||
<path
|
||||
d="m 357.90234,212.49326 l 1.9336,0 l 0,-6.67383 l -2.10352,0.42187 l 0,-1.07812 l 2.0918,-0.42188 l 1.18359,0 l 0,7.75196 l 1.9336,0 l 0,0.99609 l -5.03907,0 l 0,-0.99609"
|
||||
d="M 357.90234,212.49326 L 359.83594,212.49326 L 359.83594,205.81943 L 357.73242,206.2413 L 357.73242,205.16318 L 359.82422,204.7413 L 361.00781,204.7413 L 361.00781,212.49326 L 362.94141,212.49326 L 362.94141,213.48935 L 357.90234,213.48935 L 357.90234,212.49326"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6704"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,205.5206 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,205.5206 C 367.25976,205.52061 366.80078,205.82139 366.49219,206.42294 C 366.1875,207.02061 366.03515,207.921 366.03516,209.12411 C 366.03515,210.32334 366.1875,211.22373 366.49219,211.82529 C 366.80078,212.42294 367.25976,212.72177 367.86914,212.72177 C 368.48242,212.72177 368.9414,212.42294 369.24609,211.82529 C 369.55468,211.22373 369.70898,210.32334 369.70898,209.12411 C 369.70898,207.921 369.55468,207.02061 369.24609,206.42294 C 368.9414,205.82139 368.48242,205.52061 367.86914,205.5206 M 367.86914,204.5831 C 368.8496,204.58311 369.59765,204.97178 370.11328,205.74911 C 370.63281,206.52256 370.89257,207.64756 370.89258,209.12411 C 370.89257,210.59677 370.63281,211.72177 370.11328,212.49911 C 369.59765,213.27255 368.8496,213.65927 367.86914,213.65927 C 366.88867,213.65927 366.13867,213.27255 365.61914,212.49911 C 365.10351,211.72177 364.8457,210.59677 364.8457,209.12411 C 364.8457,207.64756 365.10351,206.52256 365.61914,205.74911 C 366.13867,204.97178 366.88867,204.58311 367.86914,204.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6706"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 303.37607,69 l 32.7768,0"
|
||||
d="M 303.37607,69 L 336.15287,69"
|
||||
id="path4493"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4495"
|
||||
d="m 285.77784,49 l 67.97326,0"
|
||||
d="M 285.77784,49 L 353.7511,49"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label30L"
|
||||
inkscape:label="#pitch_label30L">
|
||||
<path
|
||||
d="m 273.2832,48.772552 c 0.5664,0.121099 1.00781,0.373052 1.32422,0.75586 c 0.32031,0.382816 0.48046,0.855472 0.48047,1.417969 c -1e-5,0.863283 -0.29688,1.531251 -0.89062,2.003906 c -0.59376,0.472656 -1.43751,0.708984 -2.53125,0.708984 c -0.36719,0 -0.7461,-0.03711 -1.13672,-0.111328 c -0.38672,-0.07031 -0.78711,-0.177734 -1.20118,-0.322266 l 0,-1.142578 c 0.32813,0.191408 0.6875,0.335939 1.07813,0.433594 c 0.39062,0.09766 0.79883,0.146485 1.22461,0.146484 c 0.74218,1e-6 1.30664,-0.146483 1.69336,-0.439453 c 0.39062,-0.292967 0.58593,-0.718748 0.58594,-1.277343 c -1e-5,-0.515622 -0.18165,-0.917966 -0.54493,-1.207032 c -0.35938,-0.292964 -0.86133,-0.439449 -1.50586,-0.439453 l -1.01953,0 l 0,-0.972656 l 1.06641,0 c 0.58203,5e-6 1.02734,-0.115229 1.33594,-0.345703 c 0.30859,-0.234369 0.46288,-0.570307 0.46289,-1.007813 c -1e-5,-0.449211 -0.16016,-0.792961 -0.48047,-1.03125 c -0.31641,-0.242179 -0.77149,-0.363273 -1.36524,-0.363281 c -0.32422,8e-6 -0.67187,0.03516 -1.04296,0.105469 c -0.3711,0.07032 -0.7793,0.179695 -1.22461,0.328125 l 0,-1.054688 c 0.44921,-0.124991 0.86914,-0.218741 1.25976,-0.28125 c 0.39453,-0.06249 0.76562,-0.09374 1.11328,-0.09375 c 0.89844,9e-6 1.60937,0.205087 2.13282,0.615235 c 0.52343,0.406258 0.78515,0.957038 0.78515,1.652343 c 0,0.484382 -0.13868,0.894537 -0.41601,1.230469 c -0.27735,0.332037 -0.67188,0.562505 -1.1836,0.691406"
|
||||
d="M 273.2832,48.772552 C 273.8496,48.893651 274.29101,49.145604 274.60742,49.528412 C 274.92773,49.911228 275.08788,50.383884 275.08789,50.946381 C 275.08788,51.809664 274.79101,52.477632 274.19727,52.950287 C 273.60351,53.422943 272.75976,53.659271 271.66602,53.659271 C 271.29883,53.659271 270.91992,53.622161 270.5293,53.547943 C 270.14258,53.477633 269.74219,53.370209 269.32812,53.225677 L 269.32812,52.083099 C 269.65625,52.274507 270.01562,52.419038 270.40625,52.516693 C 270.79687,52.614353 271.20508,52.663178 271.63086,52.663177 C 272.37304,52.663178 272.9375,52.516694 273.32422,52.223724 C 273.71484,51.930757 273.91015,51.504976 273.91016,50.946381 C 273.91015,50.430759 273.72851,50.028415 273.36523,49.739349 C 273.00585,49.446385 272.5039,49.2999 271.85937,49.299896 L 270.83984,49.299896 L 270.83984,48.32724 L 271.90625,48.32724 C 272.48828,48.327245 272.93359,48.212011 273.24219,47.981537 C 273.55078,47.747168 273.70507,47.41123 273.70508,46.973724 C 273.70507,46.524513 273.54492,46.180763 273.22461,45.942474 C 272.9082,45.700295 272.45312,45.579201 271.85937,45.579193 C 271.53515,45.579201 271.1875,45.614353 270.81641,45.684662 C 270.44531,45.754982 270.03711,45.864357 269.5918,46.012787 L 269.5918,44.958099 C 270.04101,44.833108 270.46094,44.739358 270.85156,44.676849 C 271.24609,44.614359 271.61718,44.583109 271.96484,44.583099 C 272.86328,44.583108 273.57421,44.788186 274.09766,45.198334 C 274.62109,45.604592 274.88281,46.155372 274.88281,46.850677 C 274.88281,47.335059 274.74413,47.745214 274.4668,48.081146 C 274.18945,48.413183 273.79492,48.643651 273.2832,48.772552"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6604"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,45.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 279.86914,45.520599 C 279.25976,45.520607 278.80078,45.821388 278.49219,46.422943 C 278.1875,47.020606 278.03515,47.920996 278.03516,49.124115 C 278.03515,50.323337 278.1875,51.223727 278.49219,51.825287 C 278.80078,52.422944 279.25976,52.721772 279.86914,52.721771 C 280.48242,52.721772 280.9414,52.422944 281.24609,51.825287 C 281.55468,51.223727 281.70898,50.323337 281.70898,49.124115 C 281.70898,47.920996 281.55468,47.020606 281.24609,46.422943 C 280.9414,45.821388 280.48242,45.520607 279.86914,45.520599 M 279.86914,44.583099 C 280.8496,44.583108 281.59765,44.97178 282.11328,45.749115 C 282.63281,46.522559 282.89257,47.647558 282.89258,49.124115 C 282.89257,50.596774 282.63281,51.721773 282.11328,52.499115 C 281.59765,53.272553 280.8496,53.659271 279.86914,53.659271 C 278.88867,53.659271 278.13867,53.272553 277.61914,52.499115 C 277.10351,51.721773 276.8457,50.596774 276.8457,49.124115 C 276.8457,47.647558 277.10351,46.522559 277.61914,45.749115 C 278.13867,44.97178 278.88867,44.583108 279.86914,44.583099"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6606"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -538,12 +665,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label30R">
|
||||
<path
|
||||
d="m 361.2832,48.772552 c 0.5664,0.121099 1.00781,0.373052 1.32422,0.75586 c 0.32031,0.382816 0.48046,0.855472 0.48047,1.417969 c -1e-5,0.863283 -0.29688,1.531251 -0.89062,2.003906 c -0.59376,0.472656 -1.43751,0.708984 -2.53125,0.708984 c -0.36719,0 -0.7461,-0.03711 -1.13672,-0.111328 c -0.38672,-0.07031 -0.78711,-0.177734 -1.20118,-0.322266 l 0,-1.142578 c 0.32813,0.191408 0.6875,0.335939 1.07813,0.433594 c 0.39062,0.09766 0.79883,0.146485 1.22461,0.146484 c 0.74218,1e-6 1.30664,-0.146483 1.69336,-0.439453 c 0.39062,-0.292967 0.58593,-0.718748 0.58594,-1.277343 c -1e-5,-0.515622 -0.18165,-0.917966 -0.54493,-1.207032 c -0.35938,-0.292964 -0.86133,-0.439449 -1.50586,-0.439453 l -1.01953,0 l 0,-0.972656 l 1.06641,0 c 0.58203,5e-6 1.02734,-0.115229 1.33594,-0.345703 c 0.30859,-0.234369 0.46288,-0.570307 0.46289,-1.007813 c -1e-5,-0.449211 -0.16016,-0.792961 -0.48047,-1.03125 c -0.31641,-0.242179 -0.77149,-0.363273 -1.36524,-0.363281 c -0.32422,8e-6 -0.67187,0.03516 -1.04296,0.105469 c -0.3711,0.07032 -0.7793,0.179695 -1.22461,0.328125 l 0,-1.054688 c 0.44921,-0.124991 0.86914,-0.218741 1.25976,-0.28125 c 0.39453,-0.06249 0.76562,-0.09374 1.11328,-0.09375 c 0.89844,9e-6 1.60937,0.205087 2.13282,0.615235 c 0.52343,0.406258 0.78515,0.957038 0.78515,1.652343 c 0,0.484382 -0.13868,0.894537 -0.41601,1.230469 c -0.27735,0.332037 -0.67188,0.562505 -1.1836,0.691406"
|
||||
d="M 361.2832,48.772552 C 361.8496,48.893651 362.29101,49.145604 362.60742,49.528412 C 362.92773,49.911228 363.08788,50.383884 363.08789,50.946381 C 363.08788,51.809664 362.79101,52.477632 362.19727,52.950287 C 361.60351,53.422943 360.75976,53.659271 359.66602,53.659271 C 359.29883,53.659271 358.91992,53.622161 358.5293,53.547943 C 358.14258,53.477633 357.74219,53.370209 357.32812,53.225677 L 357.32812,52.083099 C 357.65625,52.274507 358.01562,52.419038 358.40625,52.516693 C 358.79687,52.614353 359.20508,52.663178 359.63086,52.663177 C 360.37304,52.663178 360.9375,52.516694 361.32422,52.223724 C 361.71484,51.930757 361.91015,51.504976 361.91016,50.946381 C 361.91015,50.430759 361.72851,50.028415 361.36523,49.739349 C 361.00585,49.446385 360.5039,49.2999 359.85937,49.299896 L 358.83984,49.299896 L 358.83984,48.32724 L 359.90625,48.32724 C 360.48828,48.327245 360.93359,48.212011 361.24219,47.981537 C 361.55078,47.747168 361.70507,47.41123 361.70508,46.973724 C 361.70507,46.524513 361.54492,46.180763 361.22461,45.942474 C 360.9082,45.700295 360.45312,45.579201 359.85937,45.579193 C 359.53515,45.579201 359.1875,45.614353 358.81641,45.684662 C 358.44531,45.754982 358.03711,45.864357 357.5918,46.012787 L 357.5918,44.958099 C 358.04101,44.833108 358.46094,44.739358 358.85156,44.676849 C 359.24609,44.614359 359.61718,44.583109 359.96484,44.583099 C 360.86328,44.583108 361.57421,44.788186 362.09766,45.198334 C 362.62109,45.604592 362.88281,46.155372 362.88281,46.850677 C 362.88281,47.335059 362.74413,47.745214 362.4668,48.081146 C 362.18945,48.413183 361.79492,48.643651 361.2832,48.772552"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6782"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,45.520599 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 367.86914,45.520599 C 367.25976,45.520607 366.80078,45.821388 366.49219,46.422943 C 366.1875,47.020606 366.03515,47.920996 366.03516,49.124115 C 366.03515,50.323337 366.1875,51.223727 366.49219,51.825287 C 366.80078,52.422944 367.25976,52.721772 367.86914,52.721771 C 368.48242,52.721772 368.9414,52.422944 369.24609,51.825287 C 369.55468,51.223727 369.70898,50.323337 369.70898,49.124115 C 369.70898,47.920996 369.55468,47.020606 369.24609,46.422943 C 368.9414,45.821388 368.48242,45.520607 367.86914,45.520599 M 367.86914,44.583099 C 368.8496,44.583108 369.59765,44.97178 370.11328,45.749115 C 370.63281,46.522559 370.89257,47.647558 370.89258,49.124115 C 370.89257,50.596774 370.63281,51.721773 370.11328,52.499115 C 369.59765,53.272553 368.8496,53.659271 367.86914,53.659271 C 366.88867,53.659271 366.13867,53.272553 365.61914,52.499115 C 365.10351,51.721773 364.8457,50.596774 364.8457,49.124115 C 364.8457,47.647558 365.10351,46.522559 365.61914,45.749115 C 366.13867,44.97178 366.88867,44.583108 367.86914,44.583099"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6784"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -551,7 +678,7 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4505"
|
||||
d="m 303.37607,29 l 32.7768,0"
|
||||
d="M 303.37607,29 L 336.15287,29"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
@ -563,12 +690,12 @@
|
||||
id="pitch_label40L"
|
||||
inkscape:label="#pitch_label40L">
|
||||
<path
|
||||
d="m 272.94922,5.7725525 l -2.98828,4.6699215 l 2.98828,0 l 0,-4.6699215 m -0.31055,-1.03125 l 1.48828,0 l 0,5.7011715 l 1.24805,0 l 0,0.984375 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.142578 l 3.63867,-5.5429685"
|
||||
d="M 272.94922,5.7725525 L 269.96094,10.442474 L 272.94922,10.442474 L 272.94922,5.7725525 M 272.63867,4.7413025 L 274.12695,4.7413025 L 274.12695,10.442474 L 275.375,10.442474 L 275.375,11.426849 L 274.12695,11.426849 L 274.12695,13.489349 L 272.94922,13.489349 L 272.94922,11.426849 L 269,11.426849 L 269,10.284271 L 272.63867,4.7413025"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6599"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,5.5205994 c -0.60938,7.9e-6 -1.06836,0.3007889 -1.37695,0.9023437 c -0.30469,0.5976627 -0.45704,1.4980525 -0.45703,2.7011719 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.2031194 -0.1543,-2.1035092 -0.46289,-2.7011719 C 280.9414,5.8213883 280.48242,5.5206073 279.86914,5.5205994 m 0,-0.9375 c 0.98046,8.9e-6 1.72851,0.3886804 2.24414,1.1660156 c 0.51953,0.7734445 0.77929,1.8984433 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.4765567 0.25781,-2.6015555 0.77344,-3.375 c 0.51953,-0.7773352 1.26953,-1.1660067 2.25,-1.1660156"
|
||||
d="M 279.86914,5.5205994 C 279.25976,5.5206073 278.80078,5.8213883 278.49219,6.4229431 C 278.1875,7.0206058 278.03515,7.9209956 278.03516,9.124115 C 278.03515,10.323337 278.1875,11.223727 278.49219,11.825287 C 278.80078,12.422944 279.25976,12.721772 279.86914,12.721771 C 280.48242,12.721772 280.9414,12.422944 281.24609,11.825287 C 281.55468,11.223727 281.70898,10.323337 281.70898,9.124115 C 281.70898,7.9209956 281.55468,7.0206058 281.24609,6.4229431 C 280.9414,5.8213883 280.48242,5.5206073 279.86914,5.5205994 M 279.86914,4.5830994 C 280.8496,4.5831083 281.59765,4.9717798 282.11328,5.749115 C 282.63281,6.5225595 282.89257,7.6475583 282.89258,9.124115 C 282.89257,10.596774 282.63281,11.721773 282.11328,12.499115 C 281.59765,13.272553 280.8496,13.659271 279.86914,13.659271 C 278.88867,13.659271 278.13867,13.272553 277.61914,12.499115 C 277.10351,11.721773 276.8457,10.596774 276.8457,9.124115 C 276.8457,7.6475583 277.10351,6.5225595 277.61914,5.749115 C 278.13867,4.9717798 278.88867,4.5831083 279.86914,4.5830994"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6601"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -577,12 +704,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label40R">
|
||||
<path
|
||||
d="m 360.94922,5.7725525 l -2.98828,4.6699215 l 2.98828,0 l 0,-4.6699215 m -0.31055,-1.03125 l 1.48828,0 l 0,5.7011715 l 1.24805,0 l 0,0.984375 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.142578 l 3.63867,-5.5429685"
|
||||
d="M 360.94922,5.7725525 L 357.96094,10.442474 L 360.94922,10.442474 L 360.94922,5.7725525 M 360.63867,4.7413025 L 362.12695,4.7413025 L 362.12695,10.442474 L 363.375,10.442474 L 363.375,11.426849 L 362.12695,11.426849 L 362.12695,13.489349 L 360.94922,13.489349 L 360.94922,11.426849 L 357,11.426849 L 357,10.284271 L 360.63867,4.7413025"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6777"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,5.5205994 c -0.60938,7.9e-6 -1.06836,0.3007889 -1.37695,0.9023437 c -0.30469,0.5976627 -0.45704,1.4980525 -0.45703,2.7011719 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.2031194 -0.1543,-2.1035092 -0.46289,-2.7011719 C 368.9414,5.8213883 368.48242,5.5206073 367.86914,5.5205994 m 0,-0.9375 c 0.98046,8.9e-6 1.72851,0.3886804 2.24414,1.1660156 c 0.51953,0.7734445 0.77929,1.8984433 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.4765567 0.25781,-2.6015555 0.77344,-3.375 c 0.51953,-0.7773352 1.26953,-1.1660067 2.25,-1.1660156"
|
||||
d="M 367.86914,5.5205994 C 367.25976,5.5206073 366.80078,5.8213883 366.49219,6.4229431 C 366.1875,7.0206058 366.03515,7.9209956 366.03516,9.124115 C 366.03515,10.323337 366.1875,11.223727 366.49219,11.825287 C 366.80078,12.422944 367.25976,12.721772 367.86914,12.721771 C 368.48242,12.721772 368.9414,12.422944 369.24609,11.825287 C 369.55468,11.223727 369.70898,10.323337 369.70898,9.124115 C 369.70898,7.9209956 369.55468,7.0206058 369.24609,6.4229431 C 368.9414,5.8213883 368.48242,5.5206073 367.86914,5.5205994 M 367.86914,4.5830994 C 368.8496,4.5831083 369.59765,4.9717798 370.11328,5.749115 C 370.63281,6.5225595 370.89257,7.6475583 370.89258,9.124115 C 370.89257,10.596774 370.63281,11.721773 370.11328,12.499115 C 369.59765,13.272553 368.8496,13.659271 367.86914,13.659271 C 366.88867,13.659271 366.13867,13.272553 365.61914,12.499115 C 365.10351,11.721773 364.8457,10.596774 364.8457,9.124115 C 364.8457,7.6475583 365.10351,6.5225595 365.61914,5.749115 C 366.13867,4.9717798 366.88867,4.5831083 367.86914,4.5830994"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6779"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -590,11 +717,11 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4517"
|
||||
d="m 303.37607,-11 l 32.7768,0"
|
||||
d="M 303.37607,-11 L 336.15287,-11"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.77784,-31 l 67.97326,0"
|
||||
d="M 285.77784,-31 L 353.7511,-31"
|
||||
id="path4519"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
@ -602,12 +729,12 @@
|
||||
id="pitch_label50L"
|
||||
inkscape:label="#pitch_label50L">
|
||||
<path
|
||||
d="m 269.70898,-35.258698 l 4.64649,0 l 0,0.996094 l -3.5625,0 l 0,2.144531 c 0.17187,-0.05859 0.34375,-0.101556 0.51562,-0.128906 c 0.17188,-0.03124 0.34375,-0.04687 0.51563,-0.04687 c 0.97656,6e-6 1.74999,0.267584 2.32031,0.802735 c 0.57031,0.53516 0.85546,1.259769 0.85547,2.173828 c -10e-6,0.941408 -0.29298,1.673829 -0.87891,2.197265 c -0.58594,0.519532 -1.41211,0.779297 -2.47851,0.779297 c -0.36719,0 -0.74219,-0.03125 -1.125,-0.09375 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.189453 c 0.35156,0.191408 0.71485,0.333986 1.08985,0.427734 c 0.375,0.09375 0.77148,0.140626 1.18945,0.140625 c 0.67578,1e-6 1.21093,-0.177733 1.60547,-0.533203 c 0.39453,-0.355467 0.59179,-0.837888 0.5918,-1.447265 c -1e-5,-0.609372 -0.19727,-1.091793 -0.5918,-1.447266 c -0.39454,-0.355464 -0.92969,-0.533198 -1.60547,-0.533203 c -0.31641,5e-6 -0.63281,0.03516 -0.94922,0.105469 c -0.3125,0.07032 -0.63281,0.179692 -0.96094,0.328125 l 0,-4.394532"
|
||||
d="M 269.70898,-35.258698 L 274.35547,-35.258698 L 274.35547,-34.262604 L 270.79297,-34.262604 L 270.79297,-32.118073 C 270.96484,-32.176663 271.13672,-32.219629 271.30859,-32.246979 C 271.48047,-32.278219 271.65234,-32.293849 271.82422,-32.293849 C 272.80078,-32.293843 273.57421,-32.026265 274.14453,-31.491114 C 274.71484,-30.955954 274.99999,-30.231345 275,-29.317286 C 274.99999,-28.375878 274.70702,-27.643457 274.12109,-27.120021 C 273.53515,-26.600489 272.70898,-26.340724 271.64258,-26.340724 C 271.27539,-26.340724 270.90039,-26.371974 270.51758,-26.434474 C 270.13867,-26.496974 269.74609,-26.590724 269.33984,-26.715724 L 269.33984,-27.905177 C 269.6914,-27.713769 270.05469,-27.571191 270.42969,-27.477443 C 270.80469,-27.383693 271.20117,-27.336817 271.61914,-27.336818 C 272.29492,-27.336817 272.83007,-27.514551 273.22461,-27.870021 C 273.61914,-28.225488 273.8164,-28.707909 273.81641,-29.317286 C 273.8164,-29.926658 273.61914,-30.409079 273.22461,-30.764552 C 272.83007,-31.120016 272.29492,-31.29775 271.61914,-31.297755 C 271.30273,-31.29775 270.98633,-31.262595 270.66992,-31.192286 C 270.35742,-31.121966 270.03711,-31.012594 269.70898,-30.864161 L 269.70898,-35.258693"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6594"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,-34.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 279.86914,-34.479401 C 279.25976,-34.479393 278.80078,-34.178612 278.49219,-33.577057 C 278.1875,-32.979394 278.03515,-32.079004 278.03516,-30.875885 C 278.03515,-29.676663 278.1875,-28.776273 278.49219,-28.174713 C 278.80078,-27.577056 279.25976,-27.278228 279.86914,-27.278229 C 280.48242,-27.278228 280.9414,-27.577056 281.24609,-28.174713 C 281.55468,-28.776273 281.70898,-29.676663 281.70898,-30.875885 C 281.70898,-32.079004 281.55468,-32.979394 281.24609,-33.577057 C 280.9414,-34.178612 280.48242,-34.479393 279.86914,-34.479401 M 279.86914,-35.416901 C 280.8496,-35.416892 281.59765,-35.02822 282.11328,-34.250885 C 282.63281,-33.477441 282.89257,-32.352442 282.89258,-30.875885 C 282.89257,-29.403226 282.63281,-28.278227 282.11328,-27.500885 C 281.59765,-26.727447 280.8496,-26.340729 279.86914,-26.340729 C 278.88867,-26.340729 278.13867,-26.727447 277.61914,-27.500885 C 277.10351,-28.278227 276.8457,-29.403226 276.8457,-30.875885 C 276.8457,-32.352442 277.10351,-33.477441 277.61914,-34.250885 C 278.13867,-35.02822 278.88867,-35.416892 279.86914,-35.416901"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6596"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -616,37 +743,37 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label50R">
|
||||
<path
|
||||
d="m 357.70898,-35.258698 l 4.64649,0 l 0,0.996094 l -3.5625,0 l 0,2.144531 c 0.17187,-0.05859 0.34375,-0.101556 0.51562,-0.128906 c 0.17188,-0.03124 0.34375,-0.04687 0.51563,-0.04687 c 0.97656,6e-6 1.74999,0.267584 2.32031,0.802735 c 0.57031,0.53516 0.85546,1.259769 0.85547,2.173828 c -10e-6,0.941408 -0.29298,1.673829 -0.87891,2.197265 c -0.58594,0.519532 -1.41211,0.779297 -2.47851,0.779297 c -0.36719,0 -0.74219,-0.03125 -1.125,-0.09375 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.189453 c 0.35156,0.191408 0.71485,0.333986 1.08985,0.427734 c 0.375,0.09375 0.77148,0.140626 1.18945,0.140625 c 0.67578,1e-6 1.21093,-0.177733 1.60547,-0.533203 c 0.39453,-0.355467 0.59179,-0.837888 0.5918,-1.447265 c -1e-5,-0.609372 -0.19727,-1.091793 -0.5918,-1.447266 c -0.39454,-0.355464 -0.92969,-0.533198 -1.60547,-0.533203 c -0.31641,5e-6 -0.63281,0.03516 -0.94922,0.105469 c -0.3125,0.07032 -0.63281,0.179692 -0.96094,0.328125 l 0,-4.394532"
|
||||
d="M 357.70898,-35.258698 L 362.35547,-35.258698 L 362.35547,-34.262604 L 358.79297,-34.262604 L 358.79297,-32.118073 C 358.96484,-32.176663 359.13672,-32.219629 359.30859,-32.246979 C 359.48047,-32.278219 359.65234,-32.293849 359.82422,-32.293849 C 360.80078,-32.293843 361.57421,-32.026265 362.14453,-31.491114 C 362.71484,-30.955954 362.99999,-30.231345 363,-29.317286 C 362.99999,-28.375878 362.70702,-27.643457 362.12109,-27.120021 C 361.53515,-26.600489 360.70898,-26.340724 359.64258,-26.340724 C 359.27539,-26.340724 358.90039,-26.371974 358.51758,-26.434474 C 358.13867,-26.496974 357.74609,-26.590724 357.33984,-26.715724 L 357.33984,-27.905177 C 357.6914,-27.713769 358.05469,-27.571191 358.42969,-27.477443 C 358.80469,-27.383693 359.20117,-27.336817 359.61914,-27.336818 C 360.29492,-27.336817 360.83007,-27.514551 361.22461,-27.870021 C 361.61914,-28.225488 361.8164,-28.707909 361.81641,-29.317286 C 361.8164,-29.926658 361.61914,-30.409079 361.22461,-30.764552 C 360.83007,-31.120016 360.29492,-31.29775 359.61914,-31.297755 C 359.30273,-31.29775 358.98633,-31.262595 358.66992,-31.192286 C 358.35742,-31.121966 358.03711,-31.012594 357.70898,-30.864161 L 357.70898,-35.258693"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6772"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,-34.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 367.86914,-34.479401 C 367.25976,-34.479393 366.80078,-34.178612 366.49219,-33.577057 C 366.1875,-32.979394 366.03515,-32.079004 366.03516,-30.875885 C 366.03515,-29.676663 366.1875,-28.776273 366.49219,-28.174713 C 366.80078,-27.577056 367.25976,-27.278228 367.86914,-27.278229 C 368.48242,-27.278228 368.9414,-27.577056 369.24609,-28.174713 C 369.55468,-28.776273 369.70898,-29.676663 369.70898,-30.875885 C 369.70898,-32.079004 369.55468,-32.979394 369.24609,-33.577057 C 368.9414,-34.178612 368.48242,-34.479393 367.86914,-34.479401 M 367.86914,-35.416901 C 368.8496,-35.416892 369.59765,-35.02822 370.11328,-34.250885 C 370.63281,-33.477441 370.89257,-32.352442 370.89258,-30.875885 C 370.89257,-29.403226 370.63281,-28.278227 370.11328,-27.500885 C 369.59765,-26.727447 368.8496,-26.340729 367.86914,-26.340729 C 366.88867,-26.340729 366.13867,-26.727447 365.61914,-27.500885 C 365.10351,-28.278227 364.8457,-29.403226 364.8457,-30.875885 C 364.8457,-32.352442 365.10351,-33.477441 365.61914,-34.250885 C 366.13867,-35.02822 366.88867,-35.416892 367.86914,-35.416901"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6774"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 303.37607,-51 l 32.7768,0"
|
||||
d="M 303.37607,-51 L 336.15287,-51"
|
||||
id="path4529"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4531"
|
||||
d="m 285.77784,-71 l 67.97326,0"
|
||||
d="M 285.77784,-71 L 353.7511,-71"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label60L"
|
||||
inkscape:label="#pitch_label10L">
|
||||
<path
|
||||
d="m 272.375,-71.356354 c -0.53125,5e-6 -0.95313,0.181646 -1.26563,0.544922 c -0.30859,0.363285 -0.46289,0.861332 -0.46289,1.494141 c 0,0.628908 0.1543,1.126955 0.46289,1.49414 c 0.3125,0.363283 0.73438,0.544923 1.26563,0.544922 c 0.53125,10e-7 0.95117,-0.181639 1.25977,-0.544922 c 0.31249,-0.367185 0.46874,-0.865232 0.46875,-1.49414 c -10e-6,-0.632809 -0.15626,-1.130856 -0.46875,-1.494141 c -0.3086,-0.363276 -0.72852,-0.544917 -1.25977,-0.544922 m 2.34961,-3.708984 l 0,1.078125 c -0.29688,-0.140618 -0.59766,-0.248039 -0.90234,-0.322266 c -0.30079,-0.07421 -0.59962,-0.11132 -0.89649,-0.111328 c -0.78125,8e-6 -1.37891,0.26368 -1.79297,0.791016 c -0.41016,0.52735 -0.64453,1.324224 -0.70312,2.390625 c 0.23046,-0.339839 0.51953,-0.599604 0.86718,-0.779297 c 0.34766,-0.183588 0.73047,-0.275385 1.14844,-0.275391 c 0.8789,6e-6 1.57226,0.267584 2.08008,0.802735 c 0.51171,0.531254 0.76757,1.255863 0.76758,2.173828 c -1e-5,0.898439 -0.26563,1.619142 -0.79688,2.162109 c -0.53125,0.542969 -1.23828,0.814453 -2.12109,0.814453 c -1.01172,0 -1.78516,-0.386718 -2.32031,-1.160156 c -0.53516,-0.777342 -0.80274,-1.902341 -0.80274,-3.375 c 0,-1.382807 0.32813,-2.484368 0.98438,-3.304688 c 0.65625,-0.82421 1.5371,-1.236319 2.64258,-1.236328 c 0.29687,9e-6 0.59569,0.02931 0.89648,0.08789 c 0.30468,0.0586 0.62109,0.146493 0.94922,0.263672"
|
||||
d="M 272.375,-71.356354 C 271.84375,-71.356349 271.42187,-71.174708 271.10937,-70.811432 C 270.80078,-70.448147 270.64648,-69.9501 270.64648,-69.317291 C 270.64648,-68.688383 270.80078,-68.190336 271.10937,-67.823151 C 271.42187,-67.459868 271.84375,-67.278228 272.375,-67.278229 C 272.90625,-67.278228 273.32617,-67.459868 273.63477,-67.823151 C 273.94726,-68.190336 274.10351,-68.688383 274.10352,-69.317291 C 274.10351,-69.9501 273.94726,-70.448147 273.63477,-70.811432 C 273.32617,-71.174708 272.90625,-71.356349 272.375,-71.356354 M 274.72461,-75.065338 L 274.72461,-73.987213 C 274.42773,-74.127831 274.12695,-74.235252 273.82227,-74.309479 C 273.52148,-74.383689 273.22265,-74.420799 272.92578,-74.420807 C 272.14453,-74.420799 271.54687,-74.157127 271.13281,-73.629791 C 270.72265,-73.102441 270.48828,-72.305567 270.42969,-71.239166 C 270.66015,-71.579005 270.94922,-71.83877 271.29687,-72.018463 C 271.64453,-72.202051 272.02734,-72.293848 272.44531,-72.293854 C 273.32421,-72.293848 274.01757,-72.02627 274.52539,-71.491119 C 275.0371,-70.959865 275.29296,-70.235256 275.29297,-69.317291 C 275.29296,-68.418852 275.02734,-67.698149 274.49609,-67.155182 C 273.96484,-66.612213 273.25781,-66.340729 272.375,-66.340729 C 271.36328,-66.340729 270.58984,-66.727447 270.05469,-67.500885 C 269.51953,-68.278227 269.25195,-69.403226 269.25195,-70.875885 C 269.25195,-72.258692 269.58008,-73.360253 270.23633,-74.180573 C 270.89258,-75.004783 271.77343,-75.416892 272.87891,-75.416901 C 273.17578,-75.416892 273.4746,-75.387591 273.77539,-75.329011 C 274.08007,-75.270411 274.39648,-75.182518 274.72461,-75.065339"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6589"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,-74.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 279.86914,-74.479401 C 279.25976,-74.479393 278.80078,-74.178612 278.49219,-73.577057 C 278.1875,-72.979394 278.03515,-72.079004 278.03516,-70.875885 C 278.03515,-69.676663 278.1875,-68.776273 278.49219,-68.174713 C 278.80078,-67.577056 279.25976,-67.278228 279.86914,-67.278229 C 280.48242,-67.278228 280.9414,-67.577056 281.24609,-68.174713 C 281.55468,-68.776273 281.70898,-69.676663 281.70898,-70.875885 C 281.70898,-72.079004 281.55468,-72.979394 281.24609,-73.577057 C 280.9414,-74.178612 280.48242,-74.479393 279.86914,-74.479401 M 279.86914,-75.416901 C 280.8496,-75.416892 281.59765,-75.02822 282.11328,-74.250885 C 282.63281,-73.477441 282.89257,-72.352442 282.89258,-70.875885 C 282.89257,-69.403226 282.63281,-68.278227 282.11328,-67.500885 C 281.59765,-66.727447 280.8496,-66.340729 279.86914,-66.340729 C 278.88867,-66.340729 278.13867,-66.727447 277.61914,-67.500885 C 277.10351,-68.278227 276.8457,-69.403226 276.8457,-70.875885 C 276.8457,-72.352442 277.10351,-73.477441 277.61914,-74.250885 C 278.13867,-75.02822 278.88867,-75.416892 279.86914,-75.416901"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6591"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -655,37 +782,37 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label60R">
|
||||
<path
|
||||
d="m 360.375,-71.356354 c -0.53125,5e-6 -0.95313,0.181646 -1.26563,0.544922 c -0.30859,0.363285 -0.46289,0.861332 -0.46289,1.494141 c 0,0.628908 0.1543,1.126955 0.46289,1.49414 c 0.3125,0.363283 0.73438,0.544923 1.26563,0.544922 c 0.53125,10e-7 0.95117,-0.181639 1.25977,-0.544922 c 0.31249,-0.367185 0.46874,-0.865232 0.46875,-1.49414 c -10e-6,-0.632809 -0.15626,-1.130856 -0.46875,-1.494141 c -0.3086,-0.363276 -0.72852,-0.544917 -1.25977,-0.544922 m 2.34961,-3.708984 l 0,1.078125 c -0.29688,-0.140618 -0.59766,-0.248039 -0.90234,-0.322266 c -0.30079,-0.07421 -0.59962,-0.11132 -0.89649,-0.111328 c -0.78125,8e-6 -1.37891,0.26368 -1.79297,0.791016 c -0.41016,0.52735 -0.64453,1.324224 -0.70312,2.390625 c 0.23046,-0.339839 0.51953,-0.599604 0.86718,-0.779297 c 0.34766,-0.183588 0.73047,-0.275385 1.14844,-0.275391 c 0.8789,6e-6 1.57226,0.267584 2.08008,0.802735 c 0.51171,0.531254 0.76757,1.255863 0.76758,2.173828 c -1e-5,0.898439 -0.26563,1.619142 -0.79688,2.162109 c -0.53125,0.542969 -1.23828,0.814453 -2.12109,0.814453 c -1.01172,0 -1.78516,-0.386718 -2.32031,-1.160156 c -0.53516,-0.777342 -0.80274,-1.902341 -0.80274,-3.375 c 0,-1.382807 0.32813,-2.484368 0.98438,-3.304688 c 0.65625,-0.82421 1.5371,-1.236319 2.64258,-1.236328 c 0.29687,9e-6 0.59569,0.02931 0.89648,0.08789 c 0.30468,0.0586 0.62109,0.146493 0.94922,0.263672"
|
||||
d="M 360.375,-71.356354 C 359.84375,-71.356349 359.42187,-71.174708 359.10937,-70.811432 C 358.80078,-70.448147 358.64648,-69.9501 358.64648,-69.317291 C 358.64648,-68.688383 358.80078,-68.190336 359.10937,-67.823151 C 359.42187,-67.459868 359.84375,-67.278228 360.375,-67.278229 C 360.90625,-67.278228 361.32617,-67.459868 361.63477,-67.823151 C 361.94726,-68.190336 362.10351,-68.688383 362.10352,-69.317291 C 362.10351,-69.9501 361.94726,-70.448147 361.63477,-70.811432 C 361.32617,-71.174708 360.90625,-71.356349 360.375,-71.356354 M 362.72461,-75.065338 L 362.72461,-73.987213 C 362.42773,-74.127831 362.12695,-74.235252 361.82227,-74.309479 C 361.52148,-74.383689 361.22265,-74.420799 360.92578,-74.420807 C 360.14453,-74.420799 359.54687,-74.157127 359.13281,-73.629791 C 358.72265,-73.102441 358.48828,-72.305567 358.42969,-71.239166 C 358.66015,-71.579005 358.94922,-71.83877 359.29687,-72.018463 C 359.64453,-72.202051 360.02734,-72.293848 360.44531,-72.293854 C 361.32421,-72.293848 362.01757,-72.02627 362.52539,-71.491119 C 363.0371,-70.959865 363.29296,-70.235256 363.29297,-69.317291 C 363.29296,-68.418852 363.02734,-67.698149 362.49609,-67.155182 C 361.96484,-66.612213 361.25781,-66.340729 360.375,-66.340729 C 359.36328,-66.340729 358.58984,-66.727447 358.05469,-67.500885 C 357.51953,-68.278227 357.25195,-69.403226 357.25195,-70.875885 C 357.25195,-72.258692 357.58008,-73.360253 358.23633,-74.180573 C 358.89258,-75.004783 359.77343,-75.416892 360.87891,-75.416901 C 361.17578,-75.416892 361.4746,-75.387591 361.77539,-75.329011 C 362.08007,-75.270411 362.39648,-75.182518 362.72461,-75.065339"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6757"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,-74.479401 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498053 -0.45703,2.701172 c -1e-5,1.199222 0.15234,2.099612 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,10e-7 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.203119 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.388681 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773438 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386718 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777335 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 367.86914,-74.479401 C 367.25976,-74.479393 366.80078,-74.178612 366.49219,-73.577057 C 366.1875,-72.979394 366.03515,-72.079004 366.03516,-70.875885 C 366.03515,-69.676663 366.1875,-68.776273 366.49219,-68.174713 C 366.80078,-67.577056 367.25976,-67.278228 367.86914,-67.278229 C 368.48242,-67.278228 368.9414,-67.577056 369.24609,-68.174713 C 369.55468,-68.776273 369.70898,-69.676663 369.70898,-70.875885 C 369.70898,-72.079004 369.55468,-72.979394 369.24609,-73.577057 C 368.9414,-74.178612 368.48242,-74.479393 367.86914,-74.479401 M 367.86914,-75.416901 C 368.8496,-75.416892 369.59765,-75.02822 370.11328,-74.250885 C 370.63281,-73.477441 370.89257,-72.352442 370.89258,-70.875885 C 370.89257,-69.403226 370.63281,-68.278227 370.11328,-67.500885 C 369.59765,-66.727447 368.8496,-66.340729 367.86914,-66.340729 C 366.88867,-66.340729 366.13867,-66.727447 365.61914,-67.500885 C 365.10351,-68.278227 364.8457,-69.403226 364.8457,-70.875885 C 364.8457,-72.352442 365.10351,-73.477441 365.61914,-74.250885 C 366.13867,-75.02822 366.88867,-75.416892 367.86914,-75.416901"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6759"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 303.37607,-91 l 32.7768,0"
|
||||
d="M 303.37607,-91 L 336.15287,-91"
|
||||
id="path4541"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4543"
|
||||
d="m 285.77784,-111 l 67.97326,0"
|
||||
d="M 285.77784,-111 L 353.7511,-111"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label70L"
|
||||
inkscape:label="#pitch_label70L">
|
||||
<path
|
||||
d="m 269.39844,-115.2587 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
|
||||
d="M 269.39844,-115.2587 L 275.02344,-115.2587 L 275.02344,-114.75479 L 271.84766,-106.51065 L 270.61133,-106.51065 L 273.59961,-114.2626 L 269.39844,-114.2626 L 269.39844,-115.2587"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6584"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,-114.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,-114.4794 C 279.25976,-114.47939 278.80078,-114.17861 278.49219,-113.57706 C 278.1875,-112.97939 278.03515,-112.079 278.03516,-110.87589 C 278.03515,-109.67666 278.1875,-108.77627 278.49219,-108.17471 C 278.80078,-107.57706 279.25976,-107.27823 279.86914,-107.27823 C 280.48242,-107.27823 280.9414,-107.57706 281.24609,-108.17471 C 281.55468,-108.77627 281.70898,-109.67666 281.70898,-110.87589 C 281.70898,-112.079 281.55468,-112.97939 281.24609,-113.57706 C 280.9414,-114.17861 280.48242,-114.47939 279.86914,-114.4794 M 279.86914,-115.4169 C 280.8496,-115.41689 281.59765,-115.02822 282.11328,-114.25089 C 282.63281,-113.47744 282.89257,-112.35244 282.89258,-110.87589 C 282.89257,-109.40323 282.63281,-108.27823 282.11328,-107.50089 C 281.59765,-106.72745 280.8496,-106.34073 279.86914,-106.34073 C 278.88867,-106.34073 278.13867,-106.72745 277.61914,-107.50089 C 277.10351,-108.27823 276.8457,-109.40323 276.8457,-110.87589 C 276.8457,-112.35244 277.10351,-113.47744 277.61914,-114.25089 C 278.13867,-115.02822 278.88867,-115.41689 279.86914,-115.4169"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6586"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -694,12 +821,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label70R">
|
||||
<path
|
||||
d="m 357.39844,-115.2587 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
|
||||
d="M 357.39844,-115.2587 L 363.02344,-115.2587 L 363.02344,-114.75479 L 359.84766,-106.51065 L 358.61133,-106.51065 L 361.59961,-114.2626 L 357.39844,-114.2626 L 357.39844,-115.2587"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6762"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,-114.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,-114.4794 C 367.25976,-114.47939 366.80078,-114.17861 366.49219,-113.57706 C 366.1875,-112.97939 366.03515,-112.079 366.03516,-110.87589 C 366.03515,-109.67666 366.1875,-108.77627 366.49219,-108.17471 C 366.80078,-107.57706 367.25976,-107.27823 367.86914,-107.27823 C 368.48242,-107.27823 368.9414,-107.57706 369.24609,-108.17471 C 369.55468,-108.77627 369.70898,-109.67666 369.70898,-110.87589 C 369.70898,-112.079 369.55468,-112.97939 369.24609,-113.57706 C 368.9414,-114.17861 368.48242,-114.47939 367.86914,-114.4794 M 367.86914,-115.4169 C 368.8496,-115.41689 369.59765,-115.02822 370.11328,-114.25089 C 370.63281,-113.47744 370.89257,-112.35244 370.89258,-110.87589 C 370.89257,-109.40323 370.63281,-108.27823 370.11328,-107.50089 C 369.59765,-106.72745 368.8496,-106.34073 367.86914,-106.34073 C 366.88867,-106.34073 366.13867,-106.72745 365.61914,-107.50089 C 365.10351,-108.27823 364.8457,-109.40323 364.8457,-110.87589 C 364.8457,-112.35244 365.10351,-113.47744 365.61914,-114.25089 C 366.13867,-115.02822 366.88867,-115.41689 367.86914,-115.4169"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6764"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -707,23 +834,23 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4553"
|
||||
d="m 303.37607,-131 l 32.7768,0"
|
||||
d="M 303.37607,-131 L 336.15287,-131"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 285.77784,-151 l 67.97326,0"
|
||||
d="M 285.77784,-151 L 353.7511,-151"
|
||||
id="path4555"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label80L">
|
||||
<path
|
||||
d="m 272.22852,-150.66495 c -0.56251,1e-5 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,1e-5 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,1e-5 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,1e-5 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
|
||||
d="M 272.22852,-150.66495 C 271.66601,-150.66494 271.22265,-150.51455 270.89844,-150.21378 C 270.57812,-149.91299 270.41797,-149.49893 270.41797,-148.97159 C 270.41797,-148.44424 270.57812,-148.03018 270.89844,-147.7294 C 271.22265,-147.42862 271.66601,-147.27823 272.22852,-147.27823 C 272.79101,-147.27823 273.23437,-147.42862 273.55859,-147.7294 C 273.88281,-148.03409 274.04492,-148.44815 274.04492,-148.97159 C 274.04492,-149.49893 273.88281,-149.91299 273.55859,-150.21378 C 273.23828,-150.51455 272.79492,-150.66494 272.22852,-150.66495 M 271.04492,-151.16885 C 270.53711,-151.29385 270.14062,-151.53018 269.85547,-151.87784 C 269.57422,-152.22549 269.43359,-152.64932 269.43359,-153.14932 C 269.43359,-153.84853 269.68164,-154.40127 270.17773,-154.80753 C 270.67773,-155.21377 271.36133,-155.41689 272.22852,-155.4169 C 273.0996,-155.41689 273.7832,-155.21377 274.2793,-154.80753 C 274.77538,-154.40127 275.02343,-153.84853 275.02344,-153.14932 C 275.02343,-152.64932 274.88085,-152.22549 274.5957,-151.87784 C 274.31445,-151.53018 273.92187,-151.29385 273.41797,-151.16885 C 273.98828,-151.03604 274.43163,-150.77627 274.74805,-150.38956 C 275.06835,-150.00283 275.22851,-149.53018 275.22852,-148.97159 C 275.22851,-148.12393 274.96874,-147.47354 274.44922,-147.02042 C 273.93359,-146.56729 273.19335,-146.34073 272.22852,-146.34073 C 271.26367,-146.34073 270.52148,-146.56729 270.00195,-147.02042 C 269.48633,-147.47354 269.22851,-148.12393 269.22852,-148.97159 C 269.22851,-149.53018 269.38867,-150.00283 269.70898,-150.38956 C 270.0293,-150.77627 270.47461,-151.03604 271.04492,-151.16885 M 270.61133,-153.03799 C 270.61133,-152.58486 270.75195,-152.23135 271.0332,-151.97745 C 271.31836,-151.72354 271.71679,-151.59658 272.22852,-151.59659 C 272.73632,-151.59658 273.13281,-151.72354 273.41797,-151.97745 C 273.70703,-152.23135 273.85156,-152.58486 273.85156,-153.03799 C 273.85156,-153.49111 273.70703,-153.84463 273.41797,-154.09854 C 273.13281,-154.35244 272.73632,-154.47939 272.22852,-154.4794 C 271.71679,-154.47939 271.31836,-154.35244 271.0332,-154.09854 C 270.75195,-153.84463 270.61133,-153.49111 270.61133,-153.03799"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6579"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,-154.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,-154.4794 C 279.25976,-154.47939 278.80078,-154.17861 278.49219,-153.57706 C 278.1875,-152.97939 278.03515,-152.079 278.03516,-150.87589 C 278.03515,-149.67666 278.1875,-148.77627 278.49219,-148.17471 C 278.80078,-147.57706 279.25976,-147.27823 279.86914,-147.27823 C 280.48242,-147.27823 280.9414,-147.57706 281.24609,-148.17471 C 281.55468,-148.77627 281.70898,-149.67666 281.70898,-150.87589 C 281.70898,-152.079 281.55468,-152.97939 281.24609,-153.57706 C 280.9414,-154.17861 280.48242,-154.47939 279.86914,-154.4794 M 279.86914,-155.4169 C 280.8496,-155.41689 281.59765,-155.02822 282.11328,-154.25089 C 282.63281,-153.47744 282.89257,-152.35244 282.89258,-150.87589 C 282.89257,-149.40323 282.63281,-148.27823 282.11328,-147.50089 C 281.59765,-146.72745 280.8496,-146.34073 279.86914,-146.34073 C 278.88867,-146.34073 278.13867,-146.72745 277.61914,-147.50089 C 277.10351,-148.27823 276.8457,-149.40323 276.8457,-150.87589 C 276.8457,-152.35244 277.10351,-153.47744 277.61914,-154.25089 C 278.13867,-155.02822 278.88867,-155.41689 279.86914,-155.4169"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6581"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -732,25 +859,25 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label80R">
|
||||
<path
|
||||
d="m 360.22852,-150.66495 c -0.56251,1e-5 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,1e-5 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,1e-5 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,1e-5 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
|
||||
d="M 360.22852,-150.66495 C 359.66601,-150.66494 359.22265,-150.51455 358.89844,-150.21378 C 358.57812,-149.91299 358.41797,-149.49893 358.41797,-148.97159 C 358.41797,-148.44424 358.57812,-148.03018 358.89844,-147.7294 C 359.22265,-147.42862 359.66601,-147.27823 360.22852,-147.27823 C 360.79101,-147.27823 361.23437,-147.42862 361.55859,-147.7294 C 361.88281,-148.03409 362.04492,-148.44815 362.04492,-148.97159 C 362.04492,-149.49893 361.88281,-149.91299 361.55859,-150.21378 C 361.23828,-150.51455 360.79492,-150.66494 360.22852,-150.66495 M 359.04492,-151.16885 C 358.53711,-151.29385 358.14062,-151.53018 357.85547,-151.87784 C 357.57422,-152.22549 357.43359,-152.64932 357.43359,-153.14932 C 357.43359,-153.84853 357.68164,-154.40127 358.17773,-154.80753 C 358.67773,-155.21377 359.36133,-155.41689 360.22852,-155.4169 C 361.0996,-155.41689 361.7832,-155.21377 362.2793,-154.80753 C 362.77538,-154.40127 363.02343,-153.84853 363.02344,-153.14932 C 363.02343,-152.64932 362.88085,-152.22549 362.5957,-151.87784 C 362.31445,-151.53018 361.92187,-151.29385 361.41797,-151.16885 C 361.98828,-151.03604 362.43163,-150.77627 362.74805,-150.38956 C 363.06835,-150.00283 363.22851,-149.53018 363.22852,-148.97159 C 363.22851,-148.12393 362.96874,-147.47354 362.44922,-147.02042 C 361.93359,-146.56729 361.19335,-146.34073 360.22852,-146.34073 C 359.26367,-146.34073 358.52148,-146.56729 358.00195,-147.02042 C 357.48633,-147.47354 357.22851,-148.12393 357.22852,-148.97159 C 357.22851,-149.53018 357.38867,-150.00283 357.70898,-150.38956 C 358.0293,-150.77627 358.47461,-151.03604 359.04492,-151.16885 M 358.61133,-153.03799 C 358.61133,-152.58486 358.75195,-152.23135 359.0332,-151.97745 C 359.31836,-151.72354 359.71679,-151.59658 360.22852,-151.59659 C 360.73632,-151.59658 361.13281,-151.72354 361.41797,-151.97745 C 361.70703,-152.23135 361.85156,-152.58486 361.85156,-153.03799 C 361.85156,-153.49111 361.70703,-153.84463 361.41797,-154.09854 C 361.13281,-154.35244 360.73632,-154.47939 360.22852,-154.4794 C 359.71679,-154.47939 359.31836,-154.35244 359.0332,-154.09854 C 358.75195,-153.84463 358.61133,-153.49111 358.61133,-153.03799"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6767"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,-154.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,-154.4794 C 367.25976,-154.47939 366.80078,-154.17861 366.49219,-153.57706 C 366.1875,-152.97939 366.03515,-152.079 366.03516,-150.87589 C 366.03515,-149.67666 366.1875,-148.77627 366.49219,-148.17471 C 366.80078,-147.57706 367.25976,-147.27823 367.86914,-147.27823 C 368.48242,-147.27823 368.9414,-147.57706 369.24609,-148.17471 C 369.55468,-148.77627 369.70898,-149.67666 369.70898,-150.87589 C 369.70898,-152.079 369.55468,-152.97939 369.24609,-153.57706 C 368.9414,-154.17861 368.48242,-154.47939 367.86914,-154.4794 M 367.86914,-155.4169 C 368.8496,-155.41689 369.59765,-155.02822 370.11328,-154.25089 C 370.63281,-153.47744 370.89257,-152.35244 370.89258,-150.87589 C 370.89257,-149.40323 370.63281,-148.27823 370.11328,-147.50089 C 369.59765,-146.72745 368.8496,-146.34073 367.86914,-146.34073 C 366.88867,-146.34073 366.13867,-146.72745 365.61914,-147.50089 C 365.10351,-148.27823 364.8457,-149.40323 364.8457,-150.87589 C 364.8457,-152.35244 365.10351,-153.47744 365.61914,-154.25089 C 366.13867,-155.02822 366.88867,-155.41689 367.86914,-155.4169"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6769"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 303.37607,-171 l 32.7768,0"
|
||||
d="M 303.37607,-171 L 336.15287,-171"
|
||||
id="path4565"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="pitch90"
|
||||
d="m 285.77784,-191 l 67.97326,0"
|
||||
d="M 285.77784,-191 L 353.7511,-191"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:label="#path4567" />
|
||||
<g
|
||||
@ -758,12 +885,12 @@
|
||||
id="pitch_label90L"
|
||||
inkscape:label="#pitch_label90L">
|
||||
<path
|
||||
d="m 269.73242,-186.69229 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.17969 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,1e-5 1.7832,0.38868 2.31445,1.16601 c 0.53515,0.77345 0.80273,1.89845 0.80274,3.375 c -1e-5,1.37891 -0.32813,2.48048 -0.98438,3.30469 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,1e-5 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
|
||||
d="M 269.73242,-186.69229 L 269.73242,-187.77042 C 270.0293,-187.62979 270.33008,-187.52237 270.63477,-187.44815 C 270.93945,-187.37395 271.23828,-187.33682 271.53125,-187.33682 C 272.3125,-187.33682 272.9082,-187.59854 273.31836,-188.12198 C 273.73242,-188.64932 273.96874,-189.44815 274.02734,-190.51846 C 273.80078,-190.18252 273.51367,-189.92471 273.16602,-189.74503 C 272.81835,-189.56534 272.43359,-189.47549 272.01172,-189.47549 C 271.13672,-189.47549 270.44336,-189.73916 269.93164,-190.26651 C 269.42383,-190.79776 269.16992,-191.52236 269.16992,-192.44034 C 269.16992,-193.33877 269.43555,-194.05947 269.9668,-194.60245 C 270.49804,-195.14541 271.20508,-195.41689 272.08789,-195.4169 C 273.0996,-195.41689 273.87109,-195.02822 274.40234,-194.25089 C 274.93749,-193.47744 275.20507,-192.35244 275.20508,-190.87589 C 275.20507,-189.49698 274.87695,-188.39541 274.2207,-187.5712 C 273.56835,-186.75088 272.68945,-186.34073 271.58398,-186.34073 C 271.28711,-186.34073 270.98633,-186.37003 270.68164,-186.42863 C 270.37695,-186.48723 270.06055,-186.57511 269.73242,-186.6923 M 272.08789,-190.40129 C 272.61914,-190.40128 273.03906,-190.58292 273.34766,-190.94621 C 273.66015,-191.30948 273.8164,-191.80753 273.81641,-192.44035 C 273.8164,-193.06925 273.66015,-193.56534 273.34766,-193.92863 C 273.03906,-194.29581 272.61914,-194.4794 272.08789,-194.47941 C 271.55664,-194.4794 271.13476,-194.29581 270.82227,-193.92863 C 270.51367,-193.56534 270.35937,-193.06925 270.35937,-192.44035 C 270.35937,-191.80753 270.51367,-191.30948 270.82227,-190.94621 C 271.13476,-190.58292 271.55664,-190.40128 272.08789,-190.40129"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6574"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,-194.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,-194.4794 C 279.25976,-194.47939 278.80078,-194.17861 278.49219,-193.57706 C 278.1875,-192.97939 278.03515,-192.079 278.03516,-190.87589 C 278.03515,-189.67666 278.1875,-188.77627 278.49219,-188.17471 C 278.80078,-187.57706 279.25976,-187.27823 279.86914,-187.27823 C 280.48242,-187.27823 280.9414,-187.57706 281.24609,-188.17471 C 281.55468,-188.77627 281.70898,-189.67666 281.70898,-190.87589 C 281.70898,-192.079 281.55468,-192.97939 281.24609,-193.57706 C 280.9414,-194.17861 280.48242,-194.47939 279.86914,-194.4794 M 279.86914,-195.4169 C 280.8496,-195.41689 281.59765,-195.02822 282.11328,-194.25089 C 282.63281,-193.47744 282.89257,-192.35244 282.89258,-190.87589 C 282.89257,-189.40323 282.63281,-188.27823 282.11328,-187.50089 C 281.59765,-186.72745 280.8496,-186.34073 279.86914,-186.34073 C 278.88867,-186.34073 278.13867,-186.72745 277.61914,-187.50089 C 277.10351,-188.27823 276.8457,-189.40323 276.8457,-190.87589 C 276.8457,-192.35244 277.10351,-193.47744 277.61914,-194.25089 C 278.13867,-195.02822 278.88867,-195.41689 279.86914,-195.4169"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6576"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -772,12 +899,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label90R">
|
||||
<path
|
||||
d="m 357.73242,-186.69229 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.17969 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,1e-5 1.7832,0.38868 2.31445,1.16601 c 0.53515,0.77345 0.80273,1.89845 0.80274,3.375 c -1e-5,1.37891 -0.32813,2.48048 -0.98438,3.30469 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,1e-5 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
|
||||
d="M 357.73242,-186.69229 L 357.73242,-187.77042 C 358.0293,-187.62979 358.33008,-187.52237 358.63477,-187.44815 C 358.93945,-187.37395 359.23828,-187.33682 359.53125,-187.33682 C 360.3125,-187.33682 360.9082,-187.59854 361.31836,-188.12198 C 361.73242,-188.64932 361.96874,-189.44815 362.02734,-190.51846 C 361.80078,-190.18252 361.51367,-189.92471 361.16602,-189.74503 C 360.81835,-189.56534 360.43359,-189.47549 360.01172,-189.47549 C 359.13672,-189.47549 358.44336,-189.73916 357.93164,-190.26651 C 357.42383,-190.79776 357.16992,-191.52236 357.16992,-192.44034 C 357.16992,-193.33877 357.43555,-194.05947 357.9668,-194.60245 C 358.49804,-195.14541 359.20508,-195.41689 360.08789,-195.4169 C 361.0996,-195.41689 361.87109,-195.02822 362.40234,-194.25089 C 362.93749,-193.47744 363.20507,-192.35244 363.20508,-190.87589 C 363.20507,-189.49698 362.87695,-188.39541 362.2207,-187.5712 C 361.56835,-186.75088 360.68945,-186.34073 359.58398,-186.34073 C 359.28711,-186.34073 358.98633,-186.37003 358.68164,-186.42863 C 358.37695,-186.48723 358.06055,-186.57511 357.73242,-186.6923 M 360.08789,-190.40129 C 360.61914,-190.40128 361.03906,-190.58292 361.34766,-190.94621 C 361.66015,-191.30948 361.8164,-191.80753 361.81641,-192.44035 C 361.8164,-193.06925 361.66015,-193.56534 361.34766,-193.92863 C 361.03906,-194.29581 360.61914,-194.4794 360.08789,-194.47941 C 359.55664,-194.4794 359.13476,-194.29581 358.82227,-193.92863 C 358.51367,-193.56534 358.35937,-193.06925 358.35937,-192.44035 C 358.35937,-191.80753 358.51367,-191.30948 358.82227,-190.94621 C 359.13476,-190.58292 359.55664,-190.40128 360.08789,-190.40129"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6569"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,-194.4794 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,-194.4794 C 367.25976,-194.47939 366.80078,-194.17861 366.49219,-193.57706 C 366.1875,-192.97939 366.03515,-192.079 366.03516,-190.87589 C 366.03515,-189.67666 366.1875,-188.77627 366.49219,-188.17471 C 366.80078,-187.57706 367.25976,-187.27823 367.86914,-187.27823 C 368.48242,-187.27823 368.9414,-187.57706 369.24609,-188.17471 C 369.55468,-188.77627 369.70898,-189.67666 369.70898,-190.87589 C 369.70898,-192.079 369.55468,-192.97939 369.24609,-193.57706 C 368.9414,-194.17861 368.48242,-194.47939 367.86914,-194.4794 M 367.86914,-195.4169 C 368.8496,-195.41689 369.59765,-195.02822 370.11328,-194.25089 C 370.63281,-193.47744 370.89257,-192.35244 370.89258,-190.87589 C 370.89257,-189.40323 370.63281,-188.27823 370.11328,-187.50089 C 369.59765,-186.72745 368.8496,-186.34073 367.86914,-186.34073 C 366.88867,-186.34073 366.13867,-186.72745 365.61914,-187.50089 C 365.10351,-188.27823 364.8457,-189.40323 364.8457,-190.87589 C 364.8457,-192.35244 365.10351,-193.47744 365.61914,-194.25089 C 366.13867,-195.02822 366.88867,-195.41689 367.86914,-195.4169"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6571"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -785,23 +912,23 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4577"
|
||||
d="m 303.37607,269 l 32.7768,0"
|
||||
d="M 303.37607,269 L 336.15287,269"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 285.77784,329 l 67.97326,0"
|
||||
d="M 285.77784,329 L 353.7511,329"
|
||||
id="path4579"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-40L">
|
||||
<path
|
||||
d="m 272.94922,325.77255 l -2.98828,4.66992 l 2.98828,0 l 0,-4.66992 m -0.31055,-1.03125 l 1.48828,0 l 0,5.70117 l 1.24805,0 l 0,0.98438 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.14258 l 3.63867,-5.54297"
|
||||
d="M 272.94922,325.77255 L 269.96094,330.44247 L 272.94922,330.44247 L 272.94922,325.77255 M 272.63867,324.7413 L 274.12695,324.7413 L 274.12695,330.44247 L 275.375,330.44247 L 275.375,331.42685 L 274.12695,331.42685 L 274.12695,333.48935 L 272.94922,333.48935 L 272.94922,331.42685 L 269,331.42685 L 269,330.28427 L 272.63867,324.7413"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6669"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,325.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,325.5206 C 279.25976,325.52061 278.80078,325.82139 278.49219,326.42294 C 278.1875,327.02061 278.03515,327.921 278.03516,329.12411 C 278.03515,330.32334 278.1875,331.22373 278.49219,331.82529 C 278.80078,332.42294 279.25976,332.72177 279.86914,332.72177 C 280.48242,332.72177 280.9414,332.42294 281.24609,331.82529 C 281.55468,331.22373 281.70898,330.32334 281.70898,329.12411 C 281.70898,327.921 281.55468,327.02061 281.24609,326.42294 C 280.9414,325.82139 280.48242,325.52061 279.86914,325.5206 M 279.86914,324.5831 C 280.8496,324.58311 281.59765,324.97178 282.11328,325.74911 C 282.63281,326.52256 282.89257,327.64756 282.89258,329.12411 C 282.89257,330.59677 282.63281,331.72177 282.11328,332.49911 C 281.59765,333.27255 280.8496,333.65927 279.86914,333.65927 C 278.88867,333.65927 278.13867,333.27255 277.61914,332.49911 C 277.10351,331.72177 276.8457,330.59677 276.8457,329.12411 C 276.8457,327.64756 277.10351,326.52256 277.61914,325.74911 C 278.13867,324.97178 278.88867,324.58311 279.86914,324.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6671"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -810,36 +937,36 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-40R">
|
||||
<path
|
||||
d="m 360.94922,325.77255 l -2.98828,4.66992 l 2.98828,0 l 0,-4.66992 m -0.31055,-1.03125 l 1.48828,0 l 0,5.70117 l 1.24805,0 l 0,0.98438 l -1.24805,0 l 0,2.0625 l -1.17773,0 l 0,-2.0625 l -3.94922,0 l 0,-1.14258 l 3.63867,-5.54297"
|
||||
d="M 360.94922,325.77255 L 357.96094,330.44247 L 360.94922,330.44247 L 360.94922,325.77255 M 360.63867,324.7413 L 362.12695,324.7413 L 362.12695,330.44247 L 363.375,330.44247 L 363.375,331.42685 L 362.12695,331.42685 L 362.12695,333.48935 L 360.94922,333.48935 L 360.94922,331.42685 L 357,331.42685 L 357,330.28427 L 360.63867,324.7413"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6674"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,325.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,325.5206 C 367.25976,325.52061 366.80078,325.82139 366.49219,326.42294 C 366.1875,327.02061 366.03515,327.921 366.03516,329.12411 C 366.03515,330.32334 366.1875,331.22373 366.49219,331.82529 C 366.80078,332.42294 367.25976,332.72177 367.86914,332.72177 C 368.48242,332.72177 368.9414,332.42294 369.24609,331.82529 C 369.55468,331.22373 369.70898,330.32334 369.70898,329.12411 C 369.70898,327.921 369.55468,327.02061 369.24609,326.42294 C 368.9414,325.82139 368.48242,325.52061 367.86914,325.5206 M 367.86914,324.5831 C 368.8496,324.58311 369.59765,324.97178 370.11328,325.74911 C 370.63281,326.52256 370.89257,327.64756 370.89258,329.12411 C 370.89257,330.59677 370.63281,331.72177 370.11328,332.49911 C 369.59765,333.27255 368.8496,333.65927 367.86914,333.65927 C 366.88867,333.65927 366.13867,333.27255 365.61914,332.49911 C 365.10351,331.72177 364.8457,330.59677 364.8457,329.12411 C 364.8457,327.64756 365.10351,326.52256 365.61914,325.74911 C 366.13867,324.97178 366.88867,324.58311 367.86914,324.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6676"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 303.37607,309 l 32.7768,0"
|
||||
d="M 303.37607,309 L 336.15287,309"
|
||||
id="path4589"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4591"
|
||||
d="m 285.77784,289 l 67.97326,0"
|
||||
d="M 285.77784,289 L 353.7511,289"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-30L">
|
||||
<path
|
||||
d="m 273.2832,288.77255 c 0.5664,0.1211 1.00781,0.37305 1.32422,0.75586 c 0.32031,0.38282 0.48046,0.85547 0.48047,1.41797 c -1e-5,0.86328 -0.29688,1.53125 -0.89062,2.00391 c -0.59376,0.47265 -1.43751,0.70898 -2.53125,0.70898 c -0.36719,0 -0.7461,-0.0371 -1.13672,-0.11133 c -0.38672,-0.0703 -0.78711,-0.17773 -1.20118,-0.32226 l 0,-1.14258 c 0.32813,0.19141 0.6875,0.33594 1.07813,0.43359 c 0.39062,0.0977 0.79883,0.14649 1.22461,0.14649 c 0.74218,0 1.30664,-0.14649 1.69336,-0.43946 c 0.39062,-0.29296 0.58593,-0.71874 0.58594,-1.27734 c -1e-5,-0.51562 -0.18165,-0.91796 -0.54493,-1.20703 c -0.35938,-0.29297 -0.86133,-0.43945 -1.50586,-0.43945 l -1.01953,0 l 0,-0.97266 l 1.06641,0 c 0.58203,10e-6 1.02734,-0.11523 1.33594,-0.3457 c 0.30859,-0.23437 0.46288,-0.57031 0.46289,-1.00782 c -1e-5,-0.44921 -0.16016,-0.79296 -0.48047,-1.03125 c -0.31641,-0.24218 -0.77149,-0.36327 -1.36524,-0.36328 c -0.32422,1e-5 -0.67187,0.0352 -1.04296,0.10547 c -0.3711,0.0703 -0.7793,0.1797 -1.22461,0.32813 l 0,-1.05469 c 0.44921,-0.12499 0.86914,-0.21874 1.25976,-0.28125 c 0.39453,-0.0625 0.76562,-0.0937 1.11328,-0.0937 c 0.89844,1e-5 1.60937,0.20509 2.13282,0.61523 c 0.52343,0.40626 0.78515,0.95704 0.78515,1.65235 c 0,0.48438 -0.13868,0.89453 -0.41601,1.23047 c -0.27735,0.33203 -0.67188,0.5625 -1.1836,0.6914"
|
||||
d="M 273.2832,288.77255 C 273.8496,288.89365 274.29101,289.1456 274.60742,289.52841 C 274.92773,289.91123 275.08788,290.38388 275.08789,290.94638 C 275.08788,291.80966 274.79101,292.47763 274.19727,292.95029 C 273.60351,293.42294 272.75976,293.65927 271.66602,293.65927 C 271.29883,293.65927 270.91992,293.62217 270.5293,293.54794 C 270.14258,293.47764 269.74219,293.37021 269.32812,293.22568 L 269.32812,292.0831 C 269.65625,292.27451 270.01562,292.41904 270.40625,292.51669 C 270.79687,292.61439 271.20508,292.66318 271.63086,292.66318 C 272.37304,292.66318 272.9375,292.51669 273.32422,292.22372 C 273.71484,291.93076 273.91015,291.50498 273.91016,290.94638 C 273.91015,290.43076 273.72851,290.02842 273.36523,289.73935 C 273.00585,289.44638 272.5039,289.2999 271.85937,289.2999 L 270.83984,289.2999 L 270.83984,288.32724 L 271.90625,288.32724 C 272.48828,288.32725 272.93359,288.21201 273.24219,287.98154 C 273.55078,287.74717 273.70507,287.41123 273.70508,286.97372 C 273.70507,286.52451 273.54492,286.18076 273.22461,285.94247 C 272.9082,285.70029 272.45312,285.5792 271.85937,285.57919 C 271.53515,285.5792 271.1875,285.61439 270.81641,285.68466 C 270.44531,285.75496 270.03711,285.86436 269.5918,286.01279 L 269.5918,284.9581 C 270.04101,284.83311 270.46094,284.73936 270.85156,284.67685 C 271.24609,284.61435 271.61718,284.58315 271.96484,284.58315 C 272.86328,284.58316 273.57421,284.78824 274.09766,285.19838 C 274.62109,285.60464 274.88281,286.15542 274.88281,286.85073 C 274.88281,287.33511 274.74413,287.74526 274.4668,288.0812 C 274.18945,288.41323 273.79492,288.6437 273.2832,288.7726"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6679"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,285.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,285.5206 C 279.25976,285.52061 278.80078,285.82139 278.49219,286.42294 C 278.1875,287.02061 278.03515,287.921 278.03516,289.12411 C 278.03515,290.32334 278.1875,291.22373 278.49219,291.82529 C 278.80078,292.42294 279.25976,292.72177 279.86914,292.72177 C 280.48242,292.72177 280.9414,292.42294 281.24609,291.82529 C 281.55468,291.22373 281.70898,290.32334 281.70898,289.12411 C 281.70898,287.921 281.55468,287.02061 281.24609,286.42294 C 280.9414,285.82139 280.48242,285.52061 279.86914,285.5206 M 279.86914,284.5831 C 280.8496,284.58311 281.59765,284.97178 282.11328,285.74911 C 282.63281,286.52256 282.89257,287.64756 282.89258,289.12411 C 282.89257,290.59677 282.63281,291.72177 282.11328,292.49911 C 281.59765,293.27255 280.8496,293.65927 279.86914,293.65927 C 278.88867,293.65927 278.13867,293.27255 277.61914,292.49911 C 277.10351,291.72177 276.8457,290.59677 276.8457,289.12411 C 276.8457,287.64756 277.10351,286.52256 277.61914,285.74911 C 278.13867,284.97178 278.88867,284.58311 279.86914,284.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6681"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -848,36 +975,36 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-30R">
|
||||
<path
|
||||
d="m 361.2832,288.77255 c 0.5664,0.1211 1.00781,0.37305 1.32422,0.75586 c 0.32031,0.38282 0.48046,0.85547 0.48047,1.41797 c -1e-5,0.86328 -0.29688,1.53125 -0.89062,2.00391 c -0.59376,0.47265 -1.43751,0.70898 -2.53125,0.70898 c -0.36719,0 -0.7461,-0.0371 -1.13672,-0.11133 c -0.38672,-0.0703 -0.78711,-0.17773 -1.20118,-0.32226 l 0,-1.14258 c 0.32813,0.19141 0.6875,0.33594 1.07813,0.43359 c 0.39062,0.0977 0.79883,0.14649 1.22461,0.14649 c 0.74218,0 1.30664,-0.14649 1.69336,-0.43946 c 0.39062,-0.29296 0.58593,-0.71874 0.58594,-1.27734 c -1e-5,-0.51562 -0.18165,-0.91796 -0.54493,-1.20703 c -0.35938,-0.29297 -0.86133,-0.43945 -1.50586,-0.43945 l -1.01953,0 l 0,-0.97266 l 1.06641,0 c 0.58203,10e-6 1.02734,-0.11523 1.33594,-0.3457 c 0.30859,-0.23437 0.46288,-0.57031 0.46289,-1.00782 c -1e-5,-0.44921 -0.16016,-0.79296 -0.48047,-1.03125 c -0.31641,-0.24218 -0.77149,-0.36327 -1.36524,-0.36328 c -0.32422,1e-5 -0.67187,0.0352 -1.04296,0.10547 c -0.3711,0.0703 -0.7793,0.1797 -1.22461,0.32813 l 0,-1.05469 c 0.44921,-0.12499 0.86914,-0.21874 1.25976,-0.28125 c 0.39453,-0.0625 0.76562,-0.0937 1.11328,-0.0937 c 0.89844,1e-5 1.60937,0.20509 2.13282,0.61523 c 0.52343,0.40626 0.78515,0.95704 0.78515,1.65235 c 0,0.48438 -0.13868,0.89453 -0.41601,1.23047 c -0.27735,0.33203 -0.67188,0.5625 -1.1836,0.6914"
|
||||
d="M 361.2832,288.77255 C 361.8496,288.89365 362.29101,289.1456 362.60742,289.52841 C 362.92773,289.91123 363.08788,290.38388 363.08789,290.94638 C 363.08788,291.80966 362.79101,292.47763 362.19727,292.95029 C 361.60351,293.42294 360.75976,293.65927 359.66602,293.65927 C 359.29883,293.65927 358.91992,293.62217 358.5293,293.54794 C 358.14258,293.47764 357.74219,293.37021 357.32812,293.22568 L 357.32812,292.0831 C 357.65625,292.27451 358.01562,292.41904 358.40625,292.51669 C 358.79687,292.61439 359.20508,292.66318 359.63086,292.66318 C 360.37304,292.66318 360.9375,292.51669 361.32422,292.22372 C 361.71484,291.93076 361.91015,291.50498 361.91016,290.94638 C 361.91015,290.43076 361.72851,290.02842 361.36523,289.73935 C 361.00585,289.44638 360.5039,289.2999 359.85937,289.2999 L 358.83984,289.2999 L 358.83984,288.32724 L 359.90625,288.32724 C 360.48828,288.32725 360.93359,288.21201 361.24219,287.98154 C 361.55078,287.74717 361.70507,287.41123 361.70508,286.97372 C 361.70507,286.52451 361.54492,286.18076 361.22461,285.94247 C 360.9082,285.70029 360.45312,285.5792 359.85937,285.57919 C 359.53515,285.5792 359.1875,285.61439 358.81641,285.68466 C 358.44531,285.75496 358.03711,285.86436 357.5918,286.01279 L 357.5918,284.9581 C 358.04101,284.83311 358.46094,284.73936 358.85156,284.67685 C 359.24609,284.61435 359.61718,284.58315 359.96484,284.58315 C 360.86328,284.58316 361.57421,284.78824 362.09766,285.19838 C 362.62109,285.60464 362.88281,286.15542 362.88281,286.85073 C 362.88281,287.33511 362.74413,287.74526 362.4668,288.0812 C 362.18945,288.41323 361.79492,288.6437 361.2832,288.7726"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6684"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,285.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,285.5206 C 367.25976,285.52061 366.80078,285.82139 366.49219,286.42294 C 366.1875,287.02061 366.03515,287.921 366.03516,289.12411 C 366.03515,290.32334 366.1875,291.22373 366.49219,291.82529 C 366.80078,292.42294 367.25976,292.72177 367.86914,292.72177 C 368.48242,292.72177 368.9414,292.42294 369.24609,291.82529 C 369.55468,291.22373 369.70898,290.32334 369.70898,289.12411 C 369.70898,287.921 369.55468,287.02061 369.24609,286.42294 C 368.9414,285.82139 368.48242,285.52061 367.86914,285.5206 M 367.86914,284.5831 C 368.8496,284.58311 369.59765,284.97178 370.11328,285.74911 C 370.63281,286.52256 370.89257,287.64756 370.89258,289.12411 C 370.89257,290.59677 370.63281,291.72177 370.11328,292.49911 C 369.59765,293.27255 368.8496,293.65927 367.86914,293.65927 C 366.88867,293.65927 366.13867,293.27255 365.61914,292.49911 C 365.10351,291.72177 364.8457,290.59677 364.8457,289.12411 C 364.8457,287.64756 365.10351,286.52256 365.61914,285.74911 C 366.13867,284.97178 366.88867,284.58311 367.86914,284.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6686"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 303.37607,349 l 32.7768,0"
|
||||
d="M 303.37607,349 L 336.15287,349"
|
||||
id="path4601"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4603"
|
||||
d="m 285.77784,409 l 67.97326,0"
|
||||
d="M 285.77784,409 L 353.7511,409"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-60L">
|
||||
<path
|
||||
d="m 272.375,408.64365 c -0.53125,0 -0.95313,0.18164 -1.26563,0.54492 c -0.30859,0.36328 -0.46289,0.86133 -0.46289,1.49414 c 0,0.62891 0.1543,1.12695 0.46289,1.49414 c 0.3125,0.36328 0.73438,0.54492 1.26563,0.54492 c 0.53125,0 0.95117,-0.18164 1.25977,-0.54492 c 0.31249,-0.36719 0.46874,-0.86523 0.46875,-1.49414 c -10e-6,-0.63281 -0.15626,-1.13086 -0.46875,-1.49414 c -0.3086,-0.36328 -0.72852,-0.54492 -1.25977,-0.54492 m 2.34961,-3.70899 l 0,1.07813 c -0.29688,-0.14062 -0.59766,-0.24804 -0.90234,-0.32227 c -0.30079,-0.0742 -0.59962,-0.11132 -0.89649,-0.11133 c -0.78125,1e-5 -1.37891,0.26368 -1.79297,0.79102 c -0.41016,0.52735 -0.64453,1.32422 -0.70312,2.39062 c 0.23046,-0.33983 0.51953,-0.5996 0.86718,-0.77929 c 0.34766,-0.18359 0.73047,-0.27539 1.14844,-0.27539 c 0.8789,0 1.57226,0.26758 2.08008,0.80273 c 0.51171,0.53126 0.76757,1.25586 0.76758,2.17383 c -1e-5,0.89844 -0.26563,1.61914 -0.79688,2.16211 c -0.53125,0.54297 -1.23828,0.81445 -2.12109,0.81445 c -1.01172,0 -1.78516,-0.38672 -2.32031,-1.16016 c -0.53516,-0.77734 -0.80274,-1.90234 -0.80274,-3.375 c 0,-1.3828 0.32813,-2.48436 0.98438,-3.30468 c 0.65625,-0.82421 1.5371,-1.23632 2.64258,-1.23633 c 0.29687,10e-6 0.59569,0.0293 0.89648,0.0879 c 0.30468,0.0586 0.62109,0.14649 0.94922,0.26367"
|
||||
d="M 272.375,408.64365 C 271.84375,408.64365 271.42187,408.82529 271.10937,409.18857 C 270.80078,409.55185 270.64648,410.0499 270.64648,410.68271 C 270.64648,411.31162 270.80078,411.80966 271.10937,412.17685 C 271.42187,412.54013 271.84375,412.72177 272.375,412.72177 C 272.90625,412.72177 273.32617,412.54013 273.63477,412.17685 C 273.94726,411.80966 274.10351,411.31162 274.10352,410.68271 C 274.10351,410.0499 273.94726,409.55185 273.63477,409.18857 C 273.32617,408.82529 272.90625,408.64365 272.375,408.64365 M 274.72461,404.93466 L 274.72461,406.01279 C 274.42773,405.87217 274.12695,405.76475 273.82227,405.69052 C 273.52148,405.61632 273.22265,405.5792 272.92578,405.57919 C 272.14453,405.5792 271.54687,405.84287 271.13281,406.37021 C 270.72265,406.89756 270.48828,407.69443 270.42969,408.76083 C 270.66015,408.421 270.94922,408.16123 271.29687,407.98154 C 271.64453,407.79795 272.02734,407.70615 272.44531,407.70615 C 273.32421,407.70615 274.01757,407.97373 274.52539,408.50888 C 275.0371,409.04014 275.29296,409.76474 275.29297,410.68271 C 275.29296,411.58115 275.02734,412.30185 274.49609,412.84482 C 273.96484,413.38779 273.25781,413.65927 272.375,413.65927 C 271.36328,413.65927 270.58984,413.27255 270.05469,412.49911 C 269.51953,411.72177 269.25195,410.59677 269.25195,409.12411 C 269.25195,407.74131 269.58008,406.63975 270.23633,405.81943 C 270.89258,404.99522 271.77343,404.58311 272.87891,404.5831 C 273.17578,404.58311 273.4746,404.6124 273.77539,404.671 C 274.08007,404.7296 274.39648,404.81749 274.72461,404.93467"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6649"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,405.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,405.5206 C 279.25976,405.52061 278.80078,405.82139 278.49219,406.42294 C 278.1875,407.02061 278.03515,407.921 278.03516,409.12411 C 278.03515,410.32334 278.1875,411.22373 278.49219,411.82529 C 278.80078,412.42294 279.25976,412.72177 279.86914,412.72177 C 280.48242,412.72177 280.9414,412.42294 281.24609,411.82529 C 281.55468,411.22373 281.70898,410.32334 281.70898,409.12411 C 281.70898,407.921 281.55468,407.02061 281.24609,406.42294 C 280.9414,405.82139 280.48242,405.52061 279.86914,405.5206 M 279.86914,404.5831 C 280.8496,404.58311 281.59765,404.97178 282.11328,405.74911 C 282.63281,406.52256 282.89257,407.64756 282.89258,409.12411 C 282.89257,410.59677 282.63281,411.72177 282.11328,412.49911 C 281.59765,413.27255 280.8496,413.65927 279.86914,413.65927 C 278.88867,413.65927 278.13867,413.27255 277.61914,412.49911 C 277.10351,411.72177 276.8457,410.59677 276.8457,409.12411 C 276.8457,407.64756 277.10351,406.52256 277.61914,405.74911 C 278.13867,404.97178 278.88867,404.58311 279.86914,404.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6651"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -886,12 +1013,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-60R">
|
||||
<path
|
||||
d="m 360.375,408.64365 c -0.53125,0 -0.95313,0.18164 -1.26563,0.54492 c -0.30859,0.36328 -0.46289,0.86133 -0.46289,1.49414 c 0,0.62891 0.1543,1.12695 0.46289,1.49414 c 0.3125,0.36328 0.73438,0.54492 1.26563,0.54492 c 0.53125,0 0.95117,-0.18164 1.25977,-0.54492 c 0.31249,-0.36719 0.46874,-0.86523 0.46875,-1.49414 c -10e-6,-0.63281 -0.15626,-1.13086 -0.46875,-1.49414 c -0.3086,-0.36328 -0.72852,-0.54492 -1.25977,-0.54492 m 2.34961,-3.70899 l 0,1.07813 c -0.29688,-0.14062 -0.59766,-0.24804 -0.90234,-0.32227 c -0.30079,-0.0742 -0.59962,-0.11132 -0.89649,-0.11133 c -0.78125,1e-5 -1.37891,0.26368 -1.79297,0.79102 c -0.41016,0.52735 -0.64453,1.32422 -0.70312,2.39062 c 0.23046,-0.33983 0.51953,-0.5996 0.86718,-0.77929 c 0.34766,-0.18359 0.73047,-0.27539 1.14844,-0.27539 c 0.8789,0 1.57226,0.26758 2.08008,0.80273 c 0.51171,0.53126 0.76757,1.25586 0.76758,2.17383 c -1e-5,0.89844 -0.26563,1.61914 -0.79688,2.16211 c -0.53125,0.54297 -1.23828,0.81445 -2.12109,0.81445 c -1.01172,0 -1.78516,-0.38672 -2.32031,-1.16016 c -0.53516,-0.77734 -0.80274,-1.90234 -0.80274,-3.375 c 0,-1.3828 0.32813,-2.48436 0.98438,-3.30468 c 0.65625,-0.82421 1.5371,-1.23632 2.64258,-1.23633 c 0.29687,10e-6 0.59569,0.0293 0.89648,0.0879 c 0.30468,0.0586 0.62109,0.14649 0.94922,0.26367"
|
||||
d="M 360.375,408.64365 C 359.84375,408.64365 359.42187,408.82529 359.10937,409.18857 C 358.80078,409.55185 358.64648,410.0499 358.64648,410.68271 C 358.64648,411.31162 358.80078,411.80966 359.10937,412.17685 C 359.42187,412.54013 359.84375,412.72177 360.375,412.72177 C 360.90625,412.72177 361.32617,412.54013 361.63477,412.17685 C 361.94726,411.80966 362.10351,411.31162 362.10352,410.68271 C 362.10351,410.0499 361.94726,409.55185 361.63477,409.18857 C 361.32617,408.82529 360.90625,408.64365 360.375,408.64365 M 362.72461,404.93466 L 362.72461,406.01279 C 362.42773,405.87217 362.12695,405.76475 361.82227,405.69052 C 361.52148,405.61632 361.22265,405.5792 360.92578,405.57919 C 360.14453,405.5792 359.54687,405.84287 359.13281,406.37021 C 358.72265,406.89756 358.48828,407.69443 358.42969,408.76083 C 358.66015,408.421 358.94922,408.16123 359.29687,407.98154 C 359.64453,407.79795 360.02734,407.70615 360.44531,407.70615 C 361.32421,407.70615 362.01757,407.97373 362.52539,408.50888 C 363.0371,409.04014 363.29296,409.76474 363.29297,410.68271 C 363.29296,411.58115 363.02734,412.30185 362.49609,412.84482 C 361.96484,413.38779 361.25781,413.65927 360.375,413.65927 C 359.36328,413.65927 358.58984,413.27255 358.05469,412.49911 C 357.51953,411.72177 357.25195,410.59677 357.25195,409.12411 C 357.25195,407.74131 357.58008,406.63975 358.23633,405.81943 C 358.89258,404.99522 359.77343,404.58311 360.87891,404.5831 C 361.17578,404.58311 361.4746,404.6124 361.77539,404.671 C 362.08007,404.7296 362.39648,404.81749 362.72461,404.93467"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6654"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,405.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,405.5206 C 367.25976,405.52061 366.80078,405.82139 366.49219,406.42294 C 366.1875,407.02061 366.03515,407.921 366.03516,409.12411 C 366.03515,410.32334 366.1875,411.22373 366.49219,411.82529 C 366.80078,412.42294 367.25976,412.72177 367.86914,412.72177 C 368.48242,412.72177 368.9414,412.42294 369.24609,411.82529 C 369.55468,411.22373 369.70898,410.32334 369.70898,409.12411 C 369.70898,407.921 369.55468,407.02061 369.24609,406.42294 C 368.9414,405.82139 368.48242,405.52061 367.86914,405.5206 M 367.86914,404.5831 C 368.8496,404.58311 369.59765,404.97178 370.11328,405.74911 C 370.63281,406.52256 370.89257,407.64756 370.89258,409.12411 C 370.89257,410.59677 370.63281,411.72177 370.11328,412.49911 C 369.59765,413.27255 368.8496,413.65927 367.86914,413.65927 C 366.88867,413.65927 366.13867,413.27255 365.61914,412.49911 C 365.10351,411.72177 364.8457,410.59677 364.8457,409.12411 C 364.8457,407.64756 365.10351,406.52256 365.61914,405.74911 C 366.13867,404.97178 366.88867,404.58311 367.86914,404.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6656"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -899,23 +1026,23 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4613"
|
||||
d="m 303.37607,389 l 32.7768,0"
|
||||
d="M 303.37607,389 L 336.15287,389"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 285.77784,369 l 67.97326,0"
|
||||
d="M 285.77784,369 L 353.7511,369"
|
||||
id="path4615"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-50L">
|
||||
<path
|
||||
d="m 269.70898,364.7413 l 4.64649,0 l 0,0.9961 l -3.5625,0 l 0,2.14453 c 0.17187,-0.0586 0.34375,-0.10156 0.51562,-0.12891 c 0.17188,-0.0312 0.34375,-0.0469 0.51563,-0.0469 c 0.97656,0 1.74999,0.26758 2.32031,0.80273 c 0.57031,0.53516 0.85546,1.25977 0.85547,2.17383 c -10e-6,0.94141 -0.29298,1.67383 -0.87891,2.19726 c -0.58594,0.51954 -1.41211,0.7793 -2.47851,0.7793 c -0.36719,0 -0.74219,-0.0312 -1.125,-0.0937 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.18945 c 0.35156,0.19141 0.71485,0.33398 1.08985,0.42773 c 0.375,0.0937 0.77148,0.14063 1.18945,0.14063 c 0.67578,0 1.21093,-0.17774 1.60547,-0.53321 c 0.39453,-0.35546 0.59179,-0.83788 0.5918,-1.44726 c -1e-5,-0.60937 -0.19727,-1.09179 -0.5918,-1.44727 c -0.39454,-0.35546 -0.92969,-0.5332 -1.60547,-0.5332 c -0.31641,0 -0.63281,0.0352 -0.94922,0.10547 c -0.3125,0.0703 -0.63281,0.17969 -0.96094,0.32812 l 0,-4.39453"
|
||||
d="M 269.70898,364.7413 L 274.35547,364.7413 L 274.35547,365.7374 L 270.79297,365.7374 L 270.79297,367.88193 C 270.96484,367.82333 271.13672,367.78037 271.30859,367.75302 C 271.48047,367.72182 271.65234,367.70612 271.82422,367.70612 C 272.80078,367.70612 273.57421,367.9737 274.14453,368.50885 C 274.71484,369.04401 274.99999,369.76862 275,370.68268 C 274.99999,371.62409 274.70702,372.35651 274.12109,372.87994 C 273.53515,373.39948 272.70898,373.65924 271.64258,373.65924 C 271.27539,373.65924 270.90039,373.62804 270.51758,373.56554 C 270.13867,373.50304 269.74609,373.40929 269.33984,373.28429 L 269.33984,372.09484 C 269.6914,372.28625 270.05469,372.42882 270.42969,372.52257 C 270.80469,372.61627 271.20117,372.6632 271.61914,372.6632 C 272.29492,372.6632 272.83007,372.48546 273.22461,372.12999 C 273.61914,371.77453 273.8164,371.29211 273.81641,370.68273 C 273.8164,370.07336 273.61914,369.59094 273.22461,369.23546 C 272.83007,368.88 272.29492,368.70226 271.61914,368.70226 C 271.30273,368.70226 270.98633,368.73746 270.66992,368.80773 C 270.35742,368.87803 270.03711,368.98742 269.70898,369.13585 L 269.70898,364.74132"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6659"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,365.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,365.5206 C 279.25976,365.52061 278.80078,365.82139 278.49219,366.42294 C 278.1875,367.02061 278.03515,367.921 278.03516,369.12411 C 278.03515,370.32334 278.1875,371.22373 278.49219,371.82529 C 278.80078,372.42294 279.25976,372.72177 279.86914,372.72177 C 280.48242,372.72177 280.9414,372.42294 281.24609,371.82529 C 281.55468,371.22373 281.70898,370.32334 281.70898,369.12411 C 281.70898,367.921 281.55468,367.02061 281.24609,366.42294 C 280.9414,365.82139 280.48242,365.52061 279.86914,365.5206 M 279.86914,364.5831 C 280.8496,364.58311 281.59765,364.97178 282.11328,365.74911 C 282.63281,366.52256 282.89257,367.64756 282.89258,369.12411 C 282.89257,370.59677 282.63281,371.72177 282.11328,372.49911 C 281.59765,373.27255 280.8496,373.65927 279.86914,373.65927 C 278.88867,373.65927 278.13867,373.27255 277.61914,372.49911 C 277.10351,371.72177 276.8457,370.59677 276.8457,369.12411 C 276.8457,367.64756 277.10351,366.52256 277.61914,365.74911 C 278.13867,364.97178 278.88867,364.58311 279.86914,364.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6661"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -924,12 +1051,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-50R">
|
||||
<path
|
||||
d="m 357.70898,364.7413 l 4.64649,0 l 0,0.9961 l -3.5625,0 l 0,2.14453 c 0.17187,-0.0586 0.34375,-0.10156 0.51562,-0.12891 c 0.17188,-0.0312 0.34375,-0.0469 0.51563,-0.0469 c 0.97656,0 1.74999,0.26758 2.32031,0.80273 c 0.57031,0.53516 0.85546,1.25977 0.85547,2.17383 c -10e-6,0.94141 -0.29298,1.67383 -0.87891,2.19726 c -0.58594,0.51954 -1.41211,0.7793 -2.47851,0.7793 c -0.36719,0 -0.74219,-0.0312 -1.125,-0.0937 c -0.37891,-0.0625 -0.77149,-0.15625 -1.17774,-0.28125 l 0,-1.18945 c 0.35156,0.19141 0.71485,0.33398 1.08985,0.42773 c 0.375,0.0937 0.77148,0.14063 1.18945,0.14063 c 0.67578,0 1.21093,-0.17774 1.60547,-0.53321 c 0.39453,-0.35546 0.59179,-0.83788 0.5918,-1.44726 c -1e-5,-0.60937 -0.19727,-1.09179 -0.5918,-1.44727 c -0.39454,-0.35546 -0.92969,-0.5332 -1.60547,-0.5332 c -0.31641,0 -0.63281,0.0352 -0.94922,0.10547 c -0.3125,0.0703 -0.63281,0.17969 -0.96094,0.32812 l 0,-4.39453"
|
||||
d="M 357.70898,364.7413 L 362.35547,364.7413 L 362.35547,365.7374 L 358.79297,365.7374 L 358.79297,367.88193 C 358.96484,367.82333 359.13672,367.78037 359.30859,367.75302 C 359.48047,367.72182 359.65234,367.70612 359.82422,367.70612 C 360.80078,367.70612 361.57421,367.9737 362.14453,368.50885 C 362.71484,369.04401 362.99999,369.76862 363,370.68268 C 362.99999,371.62409 362.70702,372.35651 362.12109,372.87994 C 361.53515,373.39948 360.70898,373.65924 359.64258,373.65924 C 359.27539,373.65924 358.90039,373.62804 358.51758,373.56554 C 358.13867,373.50304 357.74609,373.40929 357.33984,373.28429 L 357.33984,372.09484 C 357.6914,372.28625 358.05469,372.42882 358.42969,372.52257 C 358.80469,372.61627 359.20117,372.6632 359.61914,372.6632 C 360.29492,372.6632 360.83007,372.48546 361.22461,372.12999 C 361.61914,371.77453 361.8164,371.29211 361.81641,370.68273 C 361.8164,370.07336 361.61914,369.59094 361.22461,369.23546 C 360.83007,368.88 360.29492,368.70226 359.61914,368.70226 C 359.30273,368.70226 358.98633,368.73746 358.66992,368.80773 C 358.35742,368.87803 358.03711,368.98742 357.70898,369.13585 L 357.70898,364.74132"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6664"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,365.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,365.5206 C 367.25976,365.52061 366.80078,365.82139 366.49219,366.42294 C 366.1875,367.02061 366.03515,367.921 366.03516,369.12411 C 366.03515,370.32334 366.1875,371.22373 366.49219,371.82529 C 366.80078,372.42294 367.25976,372.72177 367.86914,372.72177 C 368.48242,372.72177 368.9414,372.42294 369.24609,371.82529 C 369.55468,371.22373 369.70898,370.32334 369.70898,369.12411 C 369.70898,367.921 369.55468,367.02061 369.24609,366.42294 C 368.9414,365.82139 368.48242,365.52061 367.86914,365.5206 M 367.86914,364.5831 C 368.8496,364.58311 369.59765,364.97178 370.11328,365.74911 C 370.63281,366.52256 370.89257,367.64756 370.89258,369.12411 C 370.89257,370.59677 370.63281,371.72177 370.11328,372.49911 C 369.59765,373.27255 368.8496,373.65927 367.86914,373.65927 C 366.88867,373.65927 366.13867,373.27255 365.61914,372.49911 C 365.10351,371.72177 364.8457,370.59677 364.8457,369.12411 C 364.8457,367.64756 365.10351,366.52256 365.61914,365.74911 C 366.13867,364.97178 366.88867,364.58311 367.86914,364.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6666"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -937,23 +1064,23 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4625"
|
||||
d="m 303.37607,429 l 32.7768,0"
|
||||
d="M 303.37607,429 L 336.15287,429"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 285.77784,489 l 67.97326,0"
|
||||
d="M 285.77784,489 L 353.7511,489"
|
||||
id="path4627"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-80L">
|
||||
<path
|
||||
d="m 272.22852,489.33505 c -0.56251,10e-6 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,10e-6 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,10e-6 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,10e-6 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
|
||||
d="M 272.22852,489.33505 C 271.66601,489.33506 271.22265,489.48545 270.89844,489.78622 C 270.57812,490.08701 270.41797,490.50107 270.41797,491.02841 C 270.41797,491.55576 270.57812,491.96982 270.89844,492.2706 C 271.22265,492.57138 271.66601,492.72177 272.22852,492.72177 C 272.79101,492.72177 273.23437,492.57138 273.55859,492.2706 C 273.88281,491.96591 274.04492,491.55185 274.04492,491.02841 C 274.04492,490.50107 273.88281,490.08701 273.55859,489.78622 C 273.23828,489.48545 272.79492,489.33506 272.22852,489.33505 M 271.04492,488.83115 C 270.53711,488.70615 270.14062,488.46982 269.85547,488.12216 C 269.57422,487.77451 269.43359,487.35068 269.43359,486.85068 C 269.43359,486.15147 269.68164,485.59873 270.17773,485.19247 C 270.67773,484.78623 271.36133,484.58311 272.22852,484.5831 C 273.0996,484.58311 273.7832,484.78623 274.2793,485.19247 C 274.77538,485.59873 275.02343,486.15147 275.02344,486.85068 C 275.02343,487.35068 274.88085,487.77451 274.5957,488.12216 C 274.31445,488.46982 273.92187,488.70615 273.41797,488.83115 C 273.98828,488.96396 274.43163,489.22373 274.74805,489.61044 C 275.06835,489.99717 275.22851,490.46982 275.22852,491.02841 C 275.22851,491.87607 274.96874,492.52646 274.44922,492.97958 C 273.93359,493.43271 273.19335,493.65927 272.22852,493.65927 C 271.26367,493.65927 270.52148,493.43271 270.00195,492.97958 C 269.48633,492.52646 269.22851,491.87607 269.22852,491.02841 C 269.22851,490.46982 269.38867,489.99717 269.70898,489.61044 C 270.0293,489.22373 270.47461,488.96396 271.04492,488.83115 M 270.61133,486.96201 C 270.61133,487.41514 270.75195,487.76865 271.0332,488.02255 C 271.31836,488.27646 271.71679,488.40342 272.22852,488.40341 C 272.73632,488.40342 273.13281,488.27646 273.41797,488.02255 C 273.70703,487.76865 273.85156,487.41514 273.85156,486.96201 C 273.85156,486.50889 273.70703,486.15537 273.41797,485.90146 C 273.13281,485.64756 272.73632,485.52061 272.22852,485.5206 C 271.71679,485.52061 271.31836,485.64756 271.0332,485.90146 C 270.75195,486.15537 270.61133,486.50889 270.61133,486.96201"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6629"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,485.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,485.5206 C 279.25976,485.52061 278.80078,485.82139 278.49219,486.42294 C 278.1875,487.02061 278.03515,487.921 278.03516,489.12411 C 278.03515,490.32334 278.1875,491.22373 278.49219,491.82529 C 278.80078,492.42294 279.25976,492.72177 279.86914,492.72177 C 280.48242,492.72177 280.9414,492.42294 281.24609,491.82529 C 281.55468,491.22373 281.70898,490.32334 281.70898,489.12411 C 281.70898,487.921 281.55468,487.02061 281.24609,486.42294 C 280.9414,485.82139 280.48242,485.52061 279.86914,485.5206 M 279.86914,484.5831 C 280.8496,484.58311 281.59765,484.97178 282.11328,485.74911 C 282.63281,486.52256 282.89257,487.64756 282.89258,489.12411 C 282.89257,490.59677 282.63281,491.72177 282.11328,492.49911 C 281.59765,493.27255 280.8496,493.65927 279.86914,493.65927 C 278.88867,493.65927 278.13867,493.27255 277.61914,492.49911 C 277.10351,491.72177 276.8457,490.59677 276.8457,489.12411 C 276.8457,487.64756 277.10351,486.52256 277.61914,485.74911 C 278.13867,484.97178 278.88867,484.58311 279.86914,484.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6631"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -962,36 +1089,36 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-80R">
|
||||
<path
|
||||
d="m 360.22852,489.33505 c -0.56251,10e-6 -1.00587,0.1504 -1.33008,0.45117 c -0.32032,0.30079 -0.48047,0.71485 -0.48047,1.24219 c 0,0.52735 0.16015,0.94141 0.48047,1.24219 c 0.32421,0.30078 0.76757,0.45117 1.33008,0.45117 c 0.56249,0 1.00585,-0.15039 1.33007,-0.45117 c 0.32422,-0.30469 0.48633,-0.71875 0.48633,-1.24219 c 0,-0.52734 -0.16211,-0.9414 -0.48633,-1.24219 c -0.32031,-0.30077 -0.76367,-0.45116 -1.33007,-0.45117 m -1.1836,-0.5039 c -0.50781,-0.125 -0.9043,-0.36133 -1.18945,-0.70899 c -0.28125,-0.34765 -0.42188,-0.77148 -0.42188,-1.27148 c 0,-0.69921 0.24805,-1.25195 0.74414,-1.65821 c 0.5,-0.40624 1.1836,-0.60936 2.05079,-0.60937 c 0.87108,10e-6 1.55468,0.20313 2.05078,0.60937 c 0.49608,0.40626 0.74413,0.959 0.74414,1.65821 c -10e-6,0.5 -0.14259,0.92383 -0.42774,1.27148 c -0.28125,0.34766 -0.67383,0.58399 -1.17773,0.70899 c 0.57031,0.13281 1.01366,0.39258 1.33008,0.77929 c 0.3203,0.38673 0.48046,0.85938 0.48047,1.41797 c -10e-6,0.84766 -0.25978,1.49805 -0.7793,1.95117 c -0.51563,0.45313 -1.25587,0.67969 -2.2207,0.67969 c -0.96485,0 -1.70704,-0.22656 -2.22657,-0.67969 c -0.51562,-0.45312 -0.77344,-1.10351 -0.77343,-1.95117 c -10e-6,-0.55859 0.16015,-1.03124 0.48046,-1.41797 c 0.32032,-0.38671 0.76563,-0.64648 1.33594,-0.77929 m -0.43359,-1.86914 c 0,0.45313 0.14062,0.80664 0.42187,1.06054 c 0.28516,0.25391 0.68359,0.38087 1.19532,0.38086 c 0.5078,10e-6 0.90429,-0.12695 1.18945,-0.38086 c 0.28906,-0.2539 0.43359,-0.60741 0.43359,-1.06054 c 0,-0.45312 -0.14453,-0.80664 -0.43359,-1.06055 c -0.28516,-0.2539 -0.68165,-0.38085 -1.18945,-0.38086 c -0.51173,10e-6 -0.91016,0.12696 -1.19532,0.38086 c -0.28125,0.25391 -0.42187,0.60743 -0.42187,1.06055"
|
||||
d="M 360.22852,489.33505 C 359.66601,489.33506 359.22265,489.48545 358.89844,489.78622 C 358.57812,490.08701 358.41797,490.50107 358.41797,491.02841 C 358.41797,491.55576 358.57812,491.96982 358.89844,492.2706 C 359.22265,492.57138 359.66601,492.72177 360.22852,492.72177 C 360.79101,492.72177 361.23437,492.57138 361.55859,492.2706 C 361.88281,491.96591 362.04492,491.55185 362.04492,491.02841 C 362.04492,490.50107 361.88281,490.08701 361.55859,489.78622 C 361.23828,489.48545 360.79492,489.33506 360.22852,489.33505 M 359.04492,488.83115 C 358.53711,488.70615 358.14062,488.46982 357.85547,488.12216 C 357.57422,487.77451 357.43359,487.35068 357.43359,486.85068 C 357.43359,486.15147 357.68164,485.59873 358.17773,485.19247 C 358.67773,484.78623 359.36133,484.58311 360.22852,484.5831 C 361.0996,484.58311 361.7832,484.78623 362.2793,485.19247 C 362.77538,485.59873 363.02343,486.15147 363.02344,486.85068 C 363.02343,487.35068 362.88085,487.77451 362.5957,488.12216 C 362.31445,488.46982 361.92187,488.70615 361.41797,488.83115 C 361.98828,488.96396 362.43163,489.22373 362.74805,489.61044 C 363.06835,489.99717 363.22851,490.46982 363.22852,491.02841 C 363.22851,491.87607 362.96874,492.52646 362.44922,492.97958 C 361.93359,493.43271 361.19335,493.65927 360.22852,493.65927 C 359.26367,493.65927 358.52148,493.43271 358.00195,492.97958 C 357.48633,492.52646 357.22851,491.87607 357.22852,491.02841 C 357.22851,490.46982 357.38867,489.99717 357.70898,489.61044 C 358.0293,489.22373 358.47461,488.96396 359.04492,488.83115 M 358.61133,486.96201 C 358.61133,487.41514 358.75195,487.76865 359.0332,488.02255 C 359.31836,488.27646 359.71679,488.40342 360.22852,488.40341 C 360.73632,488.40342 361.13281,488.27646 361.41797,488.02255 C 361.70703,487.76865 361.85156,487.41514 361.85156,486.96201 C 361.85156,486.50889 361.70703,486.15537 361.41797,485.90146 C 361.13281,485.64756 360.73632,485.52061 360.22852,485.5206 C 359.71679,485.52061 359.31836,485.64756 359.0332,485.90146 C 358.75195,486.15537 358.61133,486.50889 358.61133,486.96201"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6797"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,485.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,485.5206 C 367.25976,485.52061 366.80078,485.82139 366.49219,486.42294 C 366.1875,487.02061 366.03515,487.921 366.03516,489.12411 C 366.03515,490.32334 366.1875,491.22373 366.49219,491.82529 C 366.80078,492.42294 367.25976,492.72177 367.86914,492.72177 C 368.48242,492.72177 368.9414,492.42294 369.24609,491.82529 C 369.55468,491.22373 369.70898,490.32334 369.70898,489.12411 C 369.70898,487.921 369.55468,487.02061 369.24609,486.42294 C 368.9414,485.82139 368.48242,485.52061 367.86914,485.5206 M 367.86914,484.5831 C 368.8496,484.58311 369.59765,484.97178 370.11328,485.74911 C 370.63281,486.52256 370.89257,487.64756 370.89258,489.12411 C 370.89257,490.59677 370.63281,491.72177 370.11328,492.49911 C 369.59765,493.27255 368.8496,493.65927 367.86914,493.65927 C 366.88867,493.65927 366.13867,493.27255 365.61914,492.49911 C 365.10351,491.72177 364.8457,490.59677 364.8457,489.12411 C 364.8457,487.64756 365.10351,486.52256 365.61914,485.74911 C 366.13867,484.97178 366.88867,484.58311 367.86914,484.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6799"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 303.37607,469 l 32.7768,0"
|
||||
d="M 303.37607,469 L 336.15287,469"
|
||||
id="path4637"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4639"
|
||||
d="m 285.77784,449 l 67.97326,0"
|
||||
d="M 285.77784,449 L 353.7511,449"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-70L">
|
||||
<path
|
||||
d="m 269.39844,444.7413 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
|
||||
d="M 269.39844,444.7413 L 275.02344,444.7413 L 275.02344,445.24521 L 271.84766,453.48935 L 270.61133,453.48935 L 273.59961,445.7374 L 269.39844,445.7374 L 269.39844,444.7413"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6639"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,445.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 279.86914,445.5206 C 279.25976,445.52061 278.80078,445.82139 278.49219,446.42294 C 278.1875,447.02061 278.03515,447.921 278.03516,449.12411 C 278.03515,450.32334 278.1875,451.22373 278.49219,451.82529 C 278.80078,452.42294 279.25976,452.72177 279.86914,452.72177 C 280.48242,452.72177 280.9414,452.42294 281.24609,451.82529 C 281.55468,451.22373 281.70898,450.32334 281.70898,449.12411 C 281.70898,447.921 281.55468,447.02061 281.24609,446.42294 C 280.9414,445.82139 280.48242,445.52061 279.86914,445.5206 M 279.86914,444.5831 C 280.8496,444.58311 281.59765,444.97178 282.11328,445.74911 C 282.63281,446.52256 282.89257,447.64756 282.89258,449.12411 C 282.89257,450.59677 282.63281,451.72177 282.11328,452.49911 C 281.59765,453.27255 280.8496,453.65927 279.86914,453.65927 C 278.88867,453.65927 278.13867,453.27255 277.61914,452.49911 C 277.10351,451.72177 276.8457,450.59677 276.8457,449.12411 C 276.8457,447.64756 277.10351,446.52256 277.61914,445.74911 C 278.13867,444.97178 278.88867,444.58311 279.86914,444.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6641"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1000,24 +1127,24 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-70R">
|
||||
<path
|
||||
d="m 357.39844,444.7413 l 5.625,0 l 0,0.50391 l -3.17578,8.24414 l -1.23633,0 l 2.98828,-7.75195 l -4.20117,0 l 0,-0.9961"
|
||||
d="M 357.39844,444.7413 L 363.02344,444.7413 L 363.02344,445.24521 L 359.84766,453.48935 L 358.61133,453.48935 L 361.59961,445.7374 L 357.39844,445.7374 L 357.39844,444.7413"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6644"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,445.5206 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20311 -0.1543,-2.1035 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -1e-5,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 367.86914,445.5206 C 367.25976,445.52061 366.80078,445.82139 366.49219,446.42294 C 366.1875,447.02061 366.03515,447.921 366.03516,449.12411 C 366.03515,450.32334 366.1875,451.22373 366.49219,451.82529 C 366.80078,452.42294 367.25976,452.72177 367.86914,452.72177 C 368.48242,452.72177 368.9414,452.42294 369.24609,451.82529 C 369.55468,451.22373 369.70898,450.32334 369.70898,449.12411 C 369.70898,447.921 369.55468,447.02061 369.24609,446.42294 C 368.9414,445.82139 368.48242,445.52061 367.86914,445.5206 M 367.86914,444.5831 C 368.8496,444.58311 369.59765,444.97178 370.11328,445.74911 C 370.63281,446.52256 370.89257,447.64756 370.89258,449.12411 C 370.89257,450.59677 370.63281,451.72177 370.11328,452.49911 C 369.59765,453.27255 368.8496,453.65927 367.86914,453.65927 C 366.88867,453.65927 366.13867,453.27255 365.61914,452.49911 C 365.10351,451.72177 364.8457,450.59677 364.8457,449.12411 C 364.8457,447.64756 365.10351,446.52256 365.61914,445.74911 C 366.13867,444.97178 366.88867,444.58311 367.86914,444.5831"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6646"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 303.37607,509 l 32.7768,0"
|
||||
d="M 303.37607,509 L 336.15287,509"
|
||||
id="path4649"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4, 2;stroke-dashoffset:0"
|
||||
d="m 285.77784,529 l 67.97326,0"
|
||||
d="M 285.77784,529 L 353.7511,529"
|
||||
id="pitch-90"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path4663" />
|
||||
@ -1025,12 +1152,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-90L">
|
||||
<path
|
||||
d="m 269.73242,533.30774 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.1797 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,10e-6 1.7832,0.38868 2.31445,1.16602 c 0.53515,0.77344 0.80273,1.89844 0.80274,3.375 c -1e-5,1.3789 -0.32813,2.48047 -0.98438,3.30468 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,10e-6 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
|
||||
d="M 269.73242,533.30774 L 269.73242,532.22961 C 270.0293,532.37024 270.33008,532.47766 270.63477,532.55188 C 270.93945,532.62608 271.23828,532.66321 271.53125,532.66321 C 272.3125,532.66321 272.9082,532.40149 273.31836,531.87805 C 273.73242,531.35071 273.96874,530.55188 274.02734,529.48157 C 273.80078,529.81751 273.51367,530.07532 273.16602,530.255 C 272.81835,530.4347 272.43359,530.52454 272.01172,530.52454 C 271.13672,530.52454 270.44336,530.26087 269.93164,529.73352 C 269.42383,529.20227 269.16992,528.47767 269.16992,527.55969 C 269.16992,526.66126 269.43555,525.94056 269.9668,525.39758 C 270.49804,524.85462 271.20508,524.58314 272.08789,524.58313 C 273.0996,524.58314 273.87109,524.97181 274.40234,525.74915 C 274.93749,526.52259 275.20507,527.64759 275.20508,529.12415 C 275.20507,530.50305 274.87695,531.60462 274.2207,532.42883 C 273.56835,533.24915 272.68945,533.6593 271.58398,533.6593 C 271.28711,533.6593 270.98633,533.63 270.68164,533.5714 C 270.37695,533.5128 270.06055,533.42492 269.73242,533.30773 M 272.08789,529.59874 C 272.61914,529.59875 273.03906,529.41711 273.34766,529.05382 C 273.66015,528.69055 273.8164,528.1925 273.81641,527.55968 C 273.8164,526.93078 273.66015,526.43469 273.34766,526.0714 C 273.03906,525.70422 272.61914,525.52063 272.08789,525.52062 C 271.55664,525.52063 271.13476,525.70422 270.82227,526.0714 C 270.51367,526.43469 270.35937,526.93078 270.35937,527.55968 C 270.35937,528.1925 270.51367,528.69055 270.82227,529.05382 C 271.13476,529.41711 271.55664,529.59875 272.08789,529.59874"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6619"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 279.86914,525.52063 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70118 c -1e-5,1.19922 0.15234,2.09961 0.45703,2.70117 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70117 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70118 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16602 c 0.51953,0.77344 0.77929,1.89844 0.7793,3.375 c -1e-5,1.47265 -0.25977,2.59765 -0.7793,3.375 c -0.51563,0.77343 -1.26368,1.16015 -2.24414,1.16015 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16015 c -0.51563,-0.77735 -0.77344,-1.90235 -0.77344,-3.375 c 0,-1.47656 0.25781,-2.60156 0.77344,-3.375 c 0.51953,-0.77734 1.26953,-1.16601 2.25,-1.16602"
|
||||
d="M 279.86914,525.52063 C 279.25976,525.52064 278.80078,525.82142 278.49219,526.42297 C 278.1875,527.02064 278.03515,527.92103 278.03516,529.12415 C 278.03515,530.32337 278.1875,531.22376 278.49219,531.82532 C 278.80078,532.42297 279.25976,532.7218 279.86914,532.7218 C 280.48242,532.7218 280.9414,532.42297 281.24609,531.82532 C 281.55468,531.22376 281.70898,530.32337 281.70898,529.12415 C 281.70898,527.92103 281.55468,527.02064 281.24609,526.42297 C 280.9414,525.82142 280.48242,525.52064 279.86914,525.52063 M 279.86914,524.58313 C 280.8496,524.58314 281.59765,524.97181 282.11328,525.74915 C 282.63281,526.52259 282.89257,527.64759 282.89258,529.12415 C 282.89257,530.5968 282.63281,531.7218 282.11328,532.49915 C 281.59765,533.27258 280.8496,533.6593 279.86914,533.6593 C 278.88867,533.6593 278.13867,533.27258 277.61914,532.49915 C 277.10351,531.7218 276.8457,530.5968 276.8457,529.12415 C 276.8457,527.64759 277.10351,526.52259 277.61914,525.74915 C 278.13867,524.97181 278.88867,524.58314 279.86914,524.58313"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6621"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1039,12 +1166,12 @@
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="pitch_label-90R">
|
||||
<path
|
||||
d="m 357.73242,533.30774 l 0,-1.07813 c 0.29688,0.14063 0.59766,0.24805 0.90235,0.32227 c 0.30468,0.0742 0.60351,0.11133 0.89648,0.11133 c 0.78125,0 1.37695,-0.26172 1.78711,-0.78516 c 0.41406,-0.52734 0.65038,-1.32617 0.70898,-2.39648 c -0.22656,0.33594 -0.51367,0.59375 -0.86132,0.77343 c -0.34767,0.1797 -0.73243,0.26954 -1.1543,0.26954 c -0.875,0 -1.56836,-0.26367 -2.08008,-0.79102 c -0.50781,-0.53125 -0.76172,-1.25585 -0.76172,-2.17383 c 0,-0.89843 0.26563,-1.61913 0.79688,-2.16211 c 0.53124,-0.54296 1.23828,-0.81444 2.12109,-0.81445 c 1.01171,10e-6 1.7832,0.38868 2.31445,1.16602 c 0.53515,0.77344 0.80273,1.89844 0.80274,3.375 c -1e-5,1.3789 -0.32813,2.48047 -0.98438,3.30468 c -0.65235,0.82032 -1.53125,1.23047 -2.63672,1.23047 c -0.29687,0 -0.59765,-0.0293 -0.90234,-0.0879 c -0.30469,-0.0586 -0.62109,-0.14648 -0.94922,-0.26367 m 2.35547,-3.70899 c 0.53125,10e-6 0.95117,-0.18163 1.25977,-0.54492 c 0.31249,-0.36327 0.46874,-0.86132 0.46875,-1.49414 c -1e-5,-0.6289 -0.15626,-1.12499 -0.46875,-1.48828 c -0.3086,-0.36718 -0.72852,-0.55077 -1.25977,-0.55078 c -0.53125,10e-6 -0.95313,0.1836 -1.26562,0.55078 c -0.3086,0.36329 -0.4629,0.85938 -0.4629,1.48828 c 0,0.63282 0.1543,1.13087 0.4629,1.49414 c 0.31249,0.36329 0.73437,0.54493 1.26562,0.54492"
|
||||
d="M 357.73242,533.30774 L 357.73242,532.22961 C 358.0293,532.37024 358.33008,532.47766 358.63477,532.55188 C 358.93945,532.62608 359.23828,532.66321 359.53125,532.66321 C 360.3125,532.66321 360.9082,532.40149 361.31836,531.87805 C 361.73242,531.35071 361.96874,530.55188 362.02734,529.48157 C 361.80078,529.81751 361.51367,530.07532 361.16602,530.255 C 360.81835,530.4347 360.43359,530.52454 360.01172,530.52454 C 359.13672,530.52454 358.44336,530.26087 357.93164,529.73352 C 357.42383,529.20227 357.16992,528.47767 357.16992,527.55969 C 357.16992,526.66126 357.43555,525.94056 357.9668,525.39758 C 358.49804,524.85462 359.20508,524.58314 360.08789,524.58313 C 361.0996,524.58314 361.87109,524.97181 362.40234,525.74915 C 362.93749,526.52259 363.20507,527.64759 363.20508,529.12415 C 363.20507,530.50305 362.87695,531.60462 362.2207,532.42883 C 361.56835,533.24915 360.68945,533.6593 359.58398,533.6593 C 359.28711,533.6593 358.98633,533.63 358.68164,533.5714 C 358.37695,533.5128 358.06055,533.42492 357.73242,533.30773 M 360.08789,529.59874 C 360.61914,529.59875 361.03906,529.41711 361.34766,529.05382 C 361.66015,528.69055 361.8164,528.1925 361.81641,527.55968 C 361.8164,526.93078 361.66015,526.43469 361.34766,526.0714 C 361.03906,525.70422 360.61914,525.52063 360.08789,525.52062 C 359.55664,525.52063 359.13476,525.70422 358.82227,526.0714 C 358.51367,526.43469 358.35937,526.93078 358.35937,527.55968 C 358.35937,528.1925 358.51367,528.69055 358.82227,529.05382 C 359.13476,529.41711 359.55664,529.59875 360.08789,529.59874"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6624"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 367.86914,525.52063 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59767 -0.45704,1.49806 -0.45703,2.70118 c -1e-5,1.19922 0.15234,2.09961 0.45703,2.70117 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70117 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70118 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,10e-6 1.72851,0.38868 2.24414,1.16602 c 0.51953,0.77344 0.77929,1.89844 0.7793,3.375 c -1e-5,1.47265 -0.25977,2.59765 -0.7793,3.375 c -0.51563,0.77343 -1.26368,1.16015 -2.24414,1.16015 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16015 c -0.51563,-0.77735 -0.77344,-1.90235 -0.77344,-3.375 c 0,-1.47656 0.25781,-2.60156 0.77344,-3.375 c 0.51953,-0.77734 1.26953,-1.16601 2.25,-1.16602"
|
||||
d="M 367.86914,525.52063 C 367.25976,525.52064 366.80078,525.82142 366.49219,526.42297 C 366.1875,527.02064 366.03515,527.92103 366.03516,529.12415 C 366.03515,530.32337 366.1875,531.22376 366.49219,531.82532 C 366.80078,532.42297 367.25976,532.7218 367.86914,532.7218 C 368.48242,532.7218 368.9414,532.42297 369.24609,531.82532 C 369.55468,531.22376 369.70898,530.32337 369.70898,529.12415 C 369.70898,527.92103 369.55468,527.02064 369.24609,526.42297 C 368.9414,525.82142 368.48242,525.52064 367.86914,525.52063 M 367.86914,524.58313 C 368.8496,524.58314 369.59765,524.97181 370.11328,525.74915 C 370.63281,526.52259 370.89257,527.64759 370.89258,529.12415 C 370.89257,530.5968 370.63281,531.7218 370.11328,532.49915 C 369.59765,533.27258 368.8496,533.6593 367.86914,533.6593 C 366.88867,533.6593 366.13867,533.27258 365.61914,532.49915 C 365.10351,531.7218 364.8457,530.5968 364.8457,529.12415 C 364.8457,527.64759 365.10351,526.52259 365.61914,525.74915 C 366.13867,524.97181 366.88867,524.58314 367.86914,524.58313"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6626"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1297,11 +1424,73 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer95"
|
||||
inkscape:label="close-panel"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer96"
|
||||
inkscape:label="close-bg"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="fill:none;display:inline"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
|
||||
id="close-bg">
|
||||
<path
|
||||
sodipodi:nodetypes="csssccssscc"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,323.03076 L 163.99993,323.03076 C 166.76993,323.03076 168.99993,320.73701 168.99993,317.88783 L 168.99993,311.8548 C 168.99993,309.00562 166.76594,306.5586 163.99993,306.71187 z"
|
||||
id="path3908-6-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="close-icon"
|
||||
transform="matrix(0.86009397,0,0,0.86009397,0.18825858,65.744733)">
|
||||
<path
|
||||
transform="translate(-0.6835781,-2.0507343)"
|
||||
d="M 191.74365,291.50333 C 191.74365,294.80671 189.06573,297.48463 185.76234,297.48463 C 182.45896,297.48463 179.78104,294.80671 179.78104,291.50333 C 179.78104,288.19994 182.45896,285.52202 185.76234,285.52202 C 189.06573,285.52202 191.74365,288.19994 191.74365,291.50333 z"
|
||||
sodipodi:ry="5.9813085"
|
||||
sodipodi:rx="5.9813085"
|
||||
sodipodi:cy="291.50333"
|
||||
sodipodi:cx="185.76234"
|
||||
id="path4867"
|
||||
style="fill:url(#linearGradient5150);fill-opacity:1;stroke:#ffffff;stroke-width:0.80921388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4869"
|
||||
d="M 182.53038,286.9042 L 187.62715,292.00098"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 187.62715,286.9042 L 182.53038,292.00098"
|
||||
id="path4871"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer97"
|
||||
inkscape:label="close-panel-mousearea">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0.096870422"
|
||||
y="280.06769"
|
||||
x="174.09482"
|
||||
height="18.931952"
|
||||
width="21.372044"
|
||||
id="close-panel-mousearea"
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer83"
|
||||
inkscape:label="rc-input-panel"
|
||||
style="display:inline"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
@ -1310,23 +1499,18 @@
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g8289"
|
||||
transform="translate(0,-2)">
|
||||
transform="translate(0,-2.0678301)">
|
||||
<g
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)"
|
||||
id="rc-input-bg">
|
||||
<path
|
||||
sodipodi:nodetypes="sssscsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,311 c -2.77,0 -5,2.23 -5,5 l 0,140 c 0,2.77 2.23,5 5,5 L 145,461 l 19,0 c 2.77,0 5,-2.23 5,-5 l 0,-30 c 0,-2.77 -2.23,-5 -5,-5 l -14,0 l 0,-105 c 0,-2.77 -2.23,-5 -5,-5 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 145,461.00002 L 164,461.00002 C 166.77,461.00002 169,458.70627 169,455.85709 L 169,431.6649 C 169,428.81572 166.77,426.52197 164,426.52197 L 150,426.52197 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
|
||||
id="rc-bg"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 150,421 l 0,40"
|
||||
id="path4930"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
transform="matrix(1.5066271,0,0,1.440284,-73.58947,-192.08566)"
|
||||
transform="matrix(1.5066271,0,0,1.440284,-74.30771,-188.47457)"
|
||||
id="rc-input-icon">
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.29312041;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
@ -1339,7 +1523,7 @@
|
||||
ry="0.80000001" />
|
||||
<path
|
||||
transform="matrix(0.25,0,0,0.25,114.18623,329.53888)"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 C 157,442.10457 156.10457,443 155,443 C 153.89543,443 153,442.10457 153,441 C 153,439.89543 153.89543,439 155,439 C 156.10457,439 157,439.89543 157,441 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
@ -1355,7 +1539,7 @@
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 C 157,442.10457 156.10457,443 155,443 C 153.89543,443 153,442.10457 153,441 C 153,439.89543 153.89543,439 155,439 C 156.10457,439 157,439.89543 157,441 z"
|
||||
transform="matrix(0.625,0,0,0.625,55.875,163.98272)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -1365,11 +1549,11 @@
|
||||
sodipodi:cy="441"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:ry="2"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 C 157,442.10457 156.10457,443 155,443 C 153.89543,443 153,442.10457 153,441 C 153,439.89543 153.89543,439 155,439 C 156.10457,439 157,439.89543 157,441 z"
|
||||
transform="matrix(-0.25,0,0,-0.25,195.4413,550.05917)" />
|
||||
<path
|
||||
transform="matrix(-0.625,0,0,-0.625,253.625,715.23272)"
|
||||
d="m 157,441 a 2,2 0 1 1 -4,0 a 2,2 0 1 1 4,0 z"
|
||||
d="M 157,441 C 157,442.10457 156.10457,443 155,443 C 153.89543,443 153,442.10457 153,441 C 153,439.89543 153.89543,439 155,439 C 156.10457,439 157,439.89543 157,441 z"
|
||||
sodipodi:ry="2"
|
||||
sodipodi:rx="2"
|
||||
sodipodi:cy="441"
|
||||
@ -1388,7 +1572,7 @@
|
||||
style="fill:url(#linearGradient8314);fill-opacity:1;stroke:#ededed;stroke-width:0.08374871;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.81176471;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.5443666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none"
|
||||
d="m 154.54064,436.85572 l 0,-1.69713 l 5,-3"
|
||||
d="M 154.54064,436.85572 L 154.54064,435.15859 L 159.54064,432.15859"
|
||||
id="path3968"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
@ -1399,7 +1583,7 @@
|
||||
id="rc-input-labels"
|
||||
transform="translate(0,-2)">
|
||||
<path
|
||||
d="m 140,385 a 65,65 0 1 1 -130,0 a 65,65 0 1 1 130,0 z"
|
||||
d="M 140,385 C 140,420.89851 110.89851,450 75,450 C 39.101491,450 10,420.89851 10,385 C 10,349.10149 39.101491,320 75,320 C 110.89851,320 140,349.10149 140,385 z"
|
||||
sodipodi:ry="65"
|
||||
sodipodi:rx="65"
|
||||
sodipodi:cy="385"
|
||||
@ -1416,7 +1600,7 @@
|
||||
sodipodi:cy="385"
|
||||
sodipodi:rx="65"
|
||||
sodipodi:ry="65"
|
||||
d="m 140,385 a 65,65 0 1 1 -130,0 a 65,65 0 1 1 130,0 z"
|
||||
d="M 140,385 C 140,420.89851 110.89851,450 75,450 C 39.101491,450 10,420.89851 10,385 C 10,349.10149 39.101491,320 75,320 C 110.89851,320 140,349.10149 140,385 z"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)" />
|
||||
<rect
|
||||
y="367.09421"
|
||||
@ -1478,7 +1662,7 @@
|
||||
style="fill:url(#linearGradient5057);fill-opacity:1;stroke:none;display:inline"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<path
|
||||
d="m 85,385 a 10,10 0 1 1 -20,0 a 10,10 0 1 1 20,0 z"
|
||||
d="M 85,385 C 85,390.52285 80.522847,395 75,395 C 69.477153,395 65,390.52285 65,385 C 65,379.47715 69.477153,375 75,375 C 80.522847,375 85,379.47715 85,385 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="10"
|
||||
sodipodi:cy="385"
|
||||
@ -1503,7 +1687,7 @@
|
||||
sodipodi:role="line">THROTTLE</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#d90000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 81.414,387.28098 l 11,0.0872"
|
||||
d="M 81.414,387.28098 L 92.414,387.36818"
|
||||
id="path8757"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -1516,7 +1700,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#00ff00;fill-opacity:0.6125;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 92.727829,445.54335 c -3.74455,0.37024 -7.701236,0.3364 -11.59944,0 l 0,-60.31428 l 11.59944,0 z"
|
||||
d="M 92.727829,445.54335 C 88.983279,445.91359 85.026593,445.87975 81.128389,445.54335 L 81.128389,385.22907 L 92.727829,385.22907 z"
|
||||
id="rc-throttle"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -1533,7 +1717,7 @@
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-75.769595)">
|
||||
<path
|
||||
transform="translate(5,0)"
|
||||
d="m 80,385 a 10,10 0 1 1 -20,0 a 10,10 0 1 1 20,0 z"
|
||||
d="M 80,385 C 80,390.52285 75.522847,395 70,395 C 64.477153,395 60,390.52285 60,385 C 60,379.47715 64.477153,375 70,375 C 75.522847,375 80,379.47715 80,385 z"
|
||||
sodipodi:ry="10"
|
||||
sodipodi:rx="10"
|
||||
sodipodi:cy="385"
|
||||
@ -1546,7 +1730,7 @@
|
||||
style="fill:#eb0037;fill-opacity:1;stroke:#ea002e;stroke-width:0.98430401;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
inkscape:transform-center-x="3.4685256"
|
||||
inkscape:transform-center-y="-5.1293966"
|
||||
d="m 55,382.5 l -4.330127,8.66025 c 0,0 2.021368,-9.89355 0.624682,-12.00788 C 49.897869,377.03804 40,375 40,375 l 9.665064,-0.58013 l 9.665063,-0.58012 z"
|
||||
d="M 55,382.5 L 50.669873,391.16025 C 50.669873,391.16025 52.691241,381.2667 51.294555,379.15237 C 49.897869,377.03804 40,375 40,375 L 49.665064,374.41987 L 59.330127,373.83975 z"
|
||||
id="rc-yaw"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cczcccc" />
|
||||
@ -1561,10 +1745,10 @@
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rc-input-panel-mousearea"
|
||||
width="21.542944"
|
||||
height="45.007332"
|
||||
x="173.92392"
|
||||
y="413.2142"
|
||||
width="21.542856"
|
||||
height="39.22123"
|
||||
x="173.924"
|
||||
y="419.00034"
|
||||
rx="0.09687043"
|
||||
ry="0.096870422" />
|
||||
</g>
|
||||
@ -1573,7 +1757,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer84"
|
||||
inkscape:label="battery-panel"
|
||||
style="display:inline"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
@ -1588,20 +1772,14 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8224"
|
||||
d="m -1.8968835,311 c -2.77,0 -5,2.23 -5,5 l 0,140 c 0,2.77 2.23,5 5,5 L 150,461 l 7e-5,-40.39454 l 13.99993,0 c 2.77,0 5,-2.23 5,-5 l 0,-30 c 0,-2.77 -2.23084,-5.06819 -5,-5 l -14,0 L 150,316 c 0,-2.77 -2.23,-5 -5,-5 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150.00007,426.46407 L 164,426.46407 C 166.77,426.46407 169,424.17032 169,421.32114 L 169,397.12866 C 169,394.27948 166.77005,391.98556 164,391.98573 L 150,391.98573 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ssssccsssscsss" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8226"
|
||||
d="m 150,380.60546 l 7e-5,40"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<g
|
||||
id="battery-icon"
|
||||
transform="translate(-25.458981,10.243713)">
|
||||
transform="translate(-25.702698,19.078394)">
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.599971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect8252"
|
||||
width="10.563934"
|
||||
height="23.048584"
|
||||
@ -1620,7 +1798,7 @@
|
||||
ry="0.37989542" />
|
||||
<path
|
||||
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 187.02966,383.00388 l -5.04189,8.88331 l 3.24121,-0.12005 l -3.12116,7.56282 l 6.12228,-8.76327 l -3.48129,-0.12004 z"
|
||||
d="M 187.02966,383.00388 L 181.98777,391.88719 L 185.22898,391.76714 L 182.10782,399.32996 L 188.2301,390.56669 L 184.74881,390.44665 z"
|
||||
id="path8256"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
@ -1631,6 +1809,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer88"
|
||||
inkscape:label="battery-labels"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="battery-labels"
|
||||
@ -1642,22 +1821,22 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4641"
|
||||
d="m 620.206,52 l 0,-4.224819 l 0.64048,0 l 0,0.592748 c 0.13261,-0.206861 0.30897,-0.372618 0.5291,-0.497271 c 0.22012,-0.127298 0.47075,-0.190948 0.75188,-0.190953 c 0.31294,5e-6 0.56887,0.06498 0.76778,0.194931 c 0.20156,0.129957 0.34345,0.311627 0.42567,0.545009 c 0.33416,-0.493289 0.76911,-0.739935 1.30484,-0.73994 c 0.41903,5e-6 0.74126,0.116698 0.96669,0.350079 c 0.22543,0.230738 0.33814,0.587447 0.33815,1.070129 l 0,2.900087 l -0.71209,0 l 0,-2.661397 c -10e-6,-0.286425 -0.0239,-0.491964 -0.0716,-0.616617 c -0.0451,-0.127298 -0.12863,-0.229404 -0.25063,-0.306319 c -0.122,-0.07691 -0.26521,-0.115363 -0.42964,-0.115367 c -0.29704,4e-6 -0.54369,0.09946 -0.73994,0.298363 c -0.19626,0.19626 -0.29439,0.511861 -0.29438,0.946805 l 0,2.454532 l -0.71608,0 l 0,-2.744939 c 0,-0.31825 -0.0583,-0.55694 -0.17503,-0.716071 c -0.1167,-0.159123 -0.30765,-0.238686 -0.57286,-0.23869 c -0.20156,4e-6 -0.38854,0.05305 -0.56092,0.159127 c -0.16974,0.106088 -0.29306,0.261237 -0.36997,0.465446 c -0.0769,0.204216 -0.11537,0.4986 -0.11537,0.883154 l 0,2.191973 l -0.71607,0" />
|
||||
d="M 620.206,52 L 620.206,47.775181 L 620.84648,47.775181 L 620.84648,48.367929 C 620.97909,48.161068 621.15545,47.995311 621.37558,47.870658 C 621.5957,47.74336 621.84633,47.67971 622.12746,47.679705 C 622.4404,47.67971 622.69633,47.744685 622.89524,47.874636 C 623.0968,48.004593 623.23869,48.186263 623.32091,48.419645 C 623.65507,47.926356 624.09002,47.67971 624.62575,47.679705 C 625.04478,47.67971 625.36701,47.796403 625.59244,48.029784 C 625.81787,48.260522 625.93058,48.617231 625.93059,49.099913 L 625.93059,52 L 625.2185,52 L 625.2185,49.338603 C 625.21849,49.052178 625.1946,48.846639 625.1469,48.721986 C 625.1018,48.594688 625.01827,48.492582 624.89627,48.415667 C 624.77427,48.338757 624.63106,48.300304 624.46663,48.3003 C 624.16959,48.300304 623.92294,48.39976 623.72669,48.598663 C 623.53043,48.794923 623.4323,49.110524 623.43231,49.545468 L 623.43231,52 L 622.71623,52 L 622.71623,49.255061 C 622.71623,48.936811 622.65793,48.698121 622.5412,48.53899 C 622.4245,48.379867 622.23355,48.300304 621.96834,48.3003 C 621.76678,48.300304 621.5798,48.35335 621.40742,48.459427 C 621.23768,48.565515 621.11436,48.720664 621.03745,48.924873 C 620.96055,49.129089 620.92208,49.423473 620.92208,49.808027 L 620.92208,52 L 620.20601,52" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4645"
|
||||
d="m 632.45877,52 l 0,-5.832 l 0.71607,0 l 0,2.092518 c 0.33416,-0.387204 0.75585,-0.580808 1.26506,-0.580813 c 0.31294,5e-6 0.58479,0.06233 0.81552,0.186974 c 0.23073,0.122002 0.39516,0.291737 0.4933,0.509206 c 0.10077,0.217477 0.15116,0.533079 0.15117,0.946805 l 0,2.67731 l -0.71607,0 l 0,-2.67731 c -10e-6,-0.358032 -0.0782,-0.617939 -0.23472,-0.779721 c -0.15382,-0.164428 -0.37262,-0.246643 -0.65639,-0.246647 c -0.21218,4e-6 -0.41241,0.0557 -0.60071,0.167083 c -0.18565,0.10874 -0.31825,0.257259 -0.39782,0.445555 c -0.0796,0.188304 -0.11934,0.44821 -0.11934,0.779722 l 0,2.311318 l -0.71607,0" />
|
||||
d="M 632.45877,52 L 632.45877,46.168 L 633.17484,46.168 L 633.17484,48.260518 C 633.509,47.873314 633.93069,47.67971 634.4399,47.679705 C 634.75284,47.67971 635.02469,47.742035 635.25542,47.866679 C 635.48615,47.988681 635.65058,48.158416 635.74872,48.375885 C 635.84949,48.593362 635.89988,48.908964 635.89989,49.32269 L 635.89989,52 L 635.18382,52 L 635.18382,49.32269 C 635.18381,48.964658 635.10562,48.704751 634.9491,48.542969 C 634.79528,48.378541 634.57648,48.296326 634.29271,48.296322 C 634.08053,48.296326 633.8803,48.352022 633.692,48.463405 C 633.50635,48.572145 633.37375,48.720664 633.29418,48.90896 C 633.21458,49.097264 633.17484,49.35717 633.17484,49.688682 L 633.17484,52 L 632.45877,52" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4643"
|
||||
d="m 626.46764,52 l 2.23971,-5.832 l 0.83144,0 l 2.3869,5.832 l -0.87917,0 l -0.68027,-1.766308 l -2.43862,0 L 627.28714,52 l -0.8195,0 m 1.68277,-2.394859 l 1.97715,0 l -0.60866,-1.615138 c -0.18565,-0.490637 -0.32356,-0.893758 -0.41373,-1.209364 c -0.0743,0.373953 -0.17902,0.745248 -0.31428,1.113888 l -0.64048,1.710614" />
|
||||
d="M 626.46764,52 L 628.70735,46.168 L 629.53879,46.168 L 631.92569,52 L 631.04652,52 L 630.36625,50.233692 L 627.92763,50.233692 L 627.28714,52 L 626.46764,52 M 628.15041,49.605141 L 630.12756,49.605141 L 629.5189,47.990003 C 629.33325,47.499366 629.19534,47.096245 629.10517,46.780639 C 629.03087,47.154592 628.92615,47.525887 628.79089,47.894527 L 628.15041,49.605141" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(2.6441912,0,0,2.7434696,-1532.0391,272.46228)"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="battery-amp-label">
|
||||
<path
|
||||
d="m 631.84326,27.351151 l -1.00342,2.720946 l 2.0105,0 l -1.00708,-2.720946 m -0.41748,-0.72876 l 0.83862,0 l 2.08375,5.467529 l -0.76904,0 l -0.49805,-1.402588 l -2.4646,0 l -0.49805,1.402588 l -0.78003,0 l 2.0874,-5.467529"
|
||||
d="M 631.84326,27.351151 L 630.83984,30.072097 L 632.85034,30.072097 L 631.84326,27.351151 M 631.42578,26.622391 L 632.2644,26.622391 L 634.34815,32.08992 L 633.57911,32.08992 L 633.08106,30.687332 L 630.61646,30.687332 L 630.11841,32.08992 L 629.33838,32.08992 L 631.42578,26.622391"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path4614"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1670,41 +1849,41 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6809"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 l 0.82422,0 l 1.84766,4.9101562 l 1.85156,-4.9101562 l 0.82031,0 L 626.6626,14.08992 l -0.89453,0" />
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 L 624.36572,8.2578888 L 626.21338,13.168045 L 628.06494,8.2578888 L 628.88525,8.2578888 L 626.6626,14.08992 L 625.76807,14.08992" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="battery-time-left-label">
|
||||
<path
|
||||
d="m 122.65913,432.62387 l 0,-10.10156 l -3.77343,0 l 0,-1.35156 l 9.07812,0 l 0,1.35156 l -3.78906,0 l 0,10.10156 l -1.51563,0"
|
||||
d="M 122.65913,432.62387 L 122.65913,422.52231 L 118.8857,422.52231 L 118.8857,421.17075 L 127.96382,421.17075 L 127.96382,422.52231 L 124.17476,422.52231 L 124.17476,432.62387 L 122.65913,432.62387"
|
||||
id="path8733"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 129.84663,432.62387 l 0,-11.45312 l 1.51563,0 l 0,11.45312 l -1.51563,0"
|
||||
d="M 129.84663,432.62387 L 129.84663,421.17075 L 131.36226,421.17075 L 131.36226,432.62387 L 129.84663,432.62387"
|
||||
id="path8735"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 133.97945,432.62387 l 0,-11.45312 l 2.28125,0 l 2.71093,8.10937 c 0.25,0.75521 0.43229,1.32032 0.54688,1.69531 c 0.1302,-0.41666 0.33333,-1.02864 0.60937,-1.83593 l 2.74219,-7.96875 l 2.03906,0 l 0,11.45312 l -1.46093,0 l 0,-9.58594 l -3.32813,9.58594 l -1.36719,0 l -3.3125,-9.75 l 0,9.75 l -1.46093,0"
|
||||
d="M 133.97945,432.62387 L 133.97945,421.17075 L 136.2607,421.17075 L 138.97163,429.28012 C 139.22163,430.03533 139.40392,430.60044 139.51851,430.97543 C 139.64871,430.55877 139.85184,429.94679 140.12788,429.1395 L 142.87007,421.17075 L 144.90913,421.17075 L 144.90913,432.62387 L 143.4482,432.62387 L 143.4482,423.03793 L 140.12007,432.62387 L 138.75288,432.62387 L 135.44038,422.87387 L 135.44038,432.62387 L 133.97945,432.62387"
|
||||
id="path8737"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 147.40132,432.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76562,0 l 0,3.50781 l 6.33593,0 l 0,1.34375 l -6.33593,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54688,0"
|
||||
d="M 147.40132,432.62387 L 147.40132,421.17075 L 155.68257,421.17075 L 155.68257,422.52231 L 148.91695,422.52231 L 148.91695,426.03012 L 155.25288,426.03012 L 155.25288,427.37387 L 148.91695,427.37387 L 148.91695,431.27231 L 155.9482,431.27231 L 155.9482,432.62387 L 147.40132,432.62387"
|
||||
id="path8739"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 119.22945,452.62387 l 0,-11.45312 l 1.51562,0 l 0,10.10156 l 5.64063,0 l 0,1.35156 l -7.15625,0"
|
||||
d="M 119.22945,452.62387 L 119.22945,441.17075 L 120.74507,441.17075 L 120.74507,451.27231 L 126.3857,451.27231 L 126.3857,452.62387 L 119.22945,452.62387"
|
||||
id="path8741"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 128.22945,452.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76563,0 l 0,3.50781 l 6.33594,0 l 0,1.34375 l -6.33594,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54687,0"
|
||||
d="M 128.22945,452.62387 L 128.22945,441.17075 L 136.5107,441.17075 L 136.5107,442.52231 L 129.74507,442.52231 L 129.74507,446.03012 L 136.08101,446.03012 L 136.08101,447.37387 L 129.74507,447.37387 L 129.74507,451.27231 L 136.77632,451.27231 L 136.77632,452.62387 L 128.22945,452.62387"
|
||||
id="path8743"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 138.96382,452.62387 l 0,-11.45312 l 7.72656,0 l 0,1.35156 l -6.21093,0 l 0,3.54687 l 5.375,0 l 0,1.35157 l -5.375,0 l 0,5.20312 l -1.51563,0"
|
||||
d="M 138.96382,452.62387 L 138.96382,441.17075 L 146.69038,441.17075 L 146.69038,442.52231 L 140.47945,442.52231 L 140.47945,446.06918 L 145.85445,446.06918 L 145.85445,447.42075 L 140.47945,447.42075 L 140.47945,452.62387 L 138.96382,452.62387"
|
||||
id="path8745"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 151.58101,452.62387 l 0,-10.10156 l -3.77344,0 l 0,-1.35156 l 9.07813,0 l 0,1.35156 l -3.78907,0 l 0,10.10156 l -1.51562,0"
|
||||
d="M 151.58101,452.62387 L 151.58101,442.52231 L 147.80757,442.52231 L 147.80757,441.17075 L 156.8857,441.17075 L 156.8857,442.52231 L 153.09663,442.52231 L 153.09663,452.62387 L 151.58101,452.62387"
|
||||
id="path8747"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -1718,10 +1897,10 @@
|
||||
<rect
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="battery-panel-mousearea"
|
||||
width="21.192514"
|
||||
height="44.676563"
|
||||
width="21.542936"
|
||||
height="40.000702"
|
||||
x="173.92392"
|
||||
y="366.495"
|
||||
y="378.99966"
|
||||
rx="0.096870422"
|
||||
ry="0" />
|
||||
</g>
|
||||
@ -1748,27 +1927,27 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6494"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6496"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062" />
|
||||
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6498"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062" />
|
||||
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6500"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6502"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062" />
|
||||
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -1785,27 +1964,27 @@
|
||||
id="g8642"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,1.8860984,3.7600279)">
|
||||
<path
|
||||
d="m 37.344081,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268575,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890263,-0.52679 2.427392,-1.58037 c 0.543982,-1.06047 0.815984,-2.64772 0.816005,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346259,-1.5907 -2.427392,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.57931 -1.373802,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728411,0 -3.050555,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915874,-1.37033 2.238018,-2.0555 3.966429,-2.05552"
|
||||
d="M 37.344081,349.57585 C 36.269846,349.57586 35.460715,350.1061 34.916711,351.16656 C 34.379604,352.22015 34.111029,353.80741 34.111029,355.92833 C 34.111029,358.0424 34.379604,359.62965 34.916711,360.69012 C 35.460715,361.7437 36.269846,362.27049 37.344081,362.27049 C 38.425214,362.27049 39.234344,361.7437 39.771473,360.69012 C 40.315455,359.62965 40.587457,358.0424 40.587478,355.92833 C 40.587457,353.80741 40.315455,352.22015 39.771473,351.16656 C 39.234344,350.1061 38.425214,349.57586 37.344081,349.57585 M 37.344081,347.92317 C 39.072514,347.92319 40.391209,348.60836 41.300188,349.97869 C 42.216042,351.34217 42.673968,353.32538 42.67399,355.92833 C 42.673968,358.52442 42.216042,360.50764 41.300188,361.87798 C 40.391209,363.24145 39.072514,363.92317 37.344081,363.92317 C 35.61567,363.92317 34.293526,363.24145 33.377652,361.87798 C 32.468694,360.50764 32.014194,358.52442 32.014194,355.92833 C 32.014194,353.32538 32.468694,351.34217 33.377652,349.97869 C 34.293526,348.60836 35.61567,347.92319 37.344081,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4599"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 50.813421,349.57585 c -1.074237,10e-6 -1.883367,0.53025 -2.427371,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.427371,1.58037 c 1.081132,0 1.890241,-0.52679 2.42737,-1.58037 c 0.544004,-1.06047 0.816006,-2.64772 0.816027,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816027,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.42737,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956106,2.05552 c 0.915854,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457927,4.57931 -1.373781,5.94965 c -0.908978,1.36347 -2.227673,2.04519 -3.956106,2.04519 c -1.728433,0 -3.050576,-0.68172 -3.96643,-2.04519 c -0.908978,-1.37034 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363457,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.96643,-2.05552"
|
||||
d="M 50.813421,349.57585 C 49.739184,349.57586 48.930054,350.1061 48.38605,351.16656 C 47.848922,352.22015 47.580368,353.80741 47.580368,355.92833 C 47.580368,358.0424 47.848922,359.62965 48.38605,360.69012 C 48.930054,361.7437 49.739184,362.27049 50.813421,362.27049 C 51.894553,362.27049 52.703662,361.7437 53.240791,360.69012 C 53.784795,359.62965 54.056797,358.0424 54.056818,355.92833 C 54.056797,353.80741 53.784795,352.22015 53.240791,351.16656 C 52.703662,350.1061 51.894553,349.57586 50.813421,349.57585 M 50.813421,347.92317 C 52.541854,347.92319 53.860549,348.60836 54.769527,349.97869 C 55.685381,351.34217 56.143308,353.32538 56.143308,355.92833 C 56.143308,358.52442 55.685381,360.50764 54.769527,361.87798 C 53.860549,363.24145 52.541854,363.92317 50.813421,363.92317 C 49.084988,363.92317 47.762845,363.24145 46.846991,361.87798 C 45.938013,360.50764 45.483534,358.52442 45.483534,355.92833 C 45.483534,353.32538 45.938013,351.34217 46.846991,349.97869 C 47.762845,348.60836 49.084988,347.92319 50.813421,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4602"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 59.820516,361 L 62,361 l 0,2.62362 l -2.179484,0 l 0,-2.62362"
|
||||
d="M 59.820516,361 L 62,361 L 62,363.62362 L 59.820516,363.62362 L 59.820516,361"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4604"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 71.017419,349.57585 c -1.074236,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76177 c 0,2.11407 0.268554,3.70132 0.805683,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.42737,1.58037 c 1.081132,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544003,-1.06047 0.816005,-2.64772 0.816026,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816026,-4.76177 c -0.537129,-1.06046 -1.346239,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.37378,5.94964 c 0,2.59609 -0.457926,4.57931 -1.37378,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050575,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
|
||||
d="M 71.017419,349.57585 C 69.943183,349.57586 69.134053,350.1061 68.590049,351.16656 C 68.05292,352.22015 67.784366,353.80741 67.784366,355.92833 C 67.784366,358.0424 68.05292,359.62965 68.590049,360.69012 C 69.134053,361.7437 69.943183,362.27049 71.017419,362.27049 C 72.098551,362.27049 72.907661,361.7437 73.44479,360.69012 C 73.988793,359.62965 74.260795,358.0424 74.260816,355.92833 C 74.260795,353.80741 73.988793,352.22015 73.44479,351.16656 C 72.907661,350.1061 72.098551,349.57586 71.017419,349.57585 M 71.017419,347.92317 C 72.745852,347.92319 74.064547,348.60836 74.973526,349.97869 C 75.88938,351.34217 76.347306,353.32538 76.347306,355.92833 C 76.347306,358.52442 75.88938,360.50764 74.973526,361.87798 C 74.064547,363.24145 72.745852,363.92317 71.017419,363.92317 C 69.288987,363.92317 67.966844,363.24145 67.05099,361.87798 C 66.142032,360.50764 65.687532,358.52442 65.687532,355.92833 C 65.687532,353.32538 66.142032,351.34217 67.05099,349.97869 C 67.966844,348.60836 69.288987,347.92319 71.017419,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4606"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 84.486758,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544004,-1.06047 0.816005,-2.64772 0.816005,-4.76179 c 0,-2.12092 -0.272001,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728412,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915853,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457928,4.57931 -1.373781,5.94965 c -0.908979,1.36347 -2.227695,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050576,-0.68172 -3.966429,-2.04519 c -0.908979,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363458,-5.94964 c 0.915853,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
|
||||
d="M 84.486758,349.57585 C 83.412523,349.57586 82.603392,350.1061 82.059388,351.16656 C 81.52226,352.22015 81.253706,353.80741 81.253706,355.92833 C 81.253706,358.0424 81.52226,359.62965 82.059388,360.69012 C 82.603392,361.7437 83.412523,362.27049 84.486758,362.27049 C 85.567891,362.27049 86.377,361.7437 86.914129,360.69012 C 87.458133,359.62965 87.730134,358.0424 87.730134,355.92833 C 87.730134,353.80741 87.458133,352.22015 86.914129,351.16656 C 86.377,350.1061 85.567891,349.57586 84.486758,349.57585 M 84.486758,347.92317 C 86.21517,347.92319 87.533886,348.60836 88.442865,349.97869 C 89.358718,351.34217 89.816646,353.32538 89.816646,355.92833 C 89.816646,358.52442 89.358718,360.50764 88.442865,361.87798 C 87.533886,363.24145 86.21517,363.92317 84.486758,363.92317 C 82.758326,363.92317 81.436182,363.24145 80.520329,361.87798 C 79.61135,360.50764 79.156871,358.52442 79.156871,355.92833 C 79.156871,353.32538 79.61135,351.34217 80.520329,349.97869 C 81.436182,348.60836 82.758326,347.92319 84.486758,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4608"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1828,27 +2007,27 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6483"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 34.816055,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268575,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890263,-0.5268 2.427392,-1.58038 c 0.543982,-1.06046 0.815984,-2.64772 0.816005,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346259,-1.59069 -2.427392,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.5793 -1.373802,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728411,-10e-6 -3.050555,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
|
||||
d="M 34.816055,309.65268 C 33.74182,309.65269 32.932689,310.18292 32.388685,311.24338 C 31.851578,312.29697 31.583003,313.88423 31.583003,316.00516 C 31.583003,318.11922 31.851578,319.70648 32.388685,320.76694 C 32.932689,321.82052 33.74182,322.34732 34.816055,322.34732 C 35.897188,322.34732 36.706318,321.82052 37.243447,320.76694 C 37.787429,319.70648 38.059431,318.11922 38.059452,316.00516 C 38.059431,313.88423 37.787429,312.29697 37.243447,311.24338 C 36.706318,310.18292 35.897188,309.65269 34.816055,309.65268 M 34.816055,308 C 36.544488,308.00001 37.863183,308.68518 38.772162,310.05552 C 39.688016,311.41899 40.145942,313.4022 40.145964,316.00516 C 40.145942,318.60125 39.688016,320.58446 38.772162,321.95481 C 37.863183,323.31827 36.544488,323.99999 34.816055,324 C 33.087644,323.99999 31.7655,323.31827 30.849626,321.95481 C 29.940668,320.58446 29.486168,318.60125 29.486168,316.00516 C 29.486168,313.4022 29.940668,311.41899 30.849626,310.05552 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6485"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 48.285395,309.65268 c -1.074237,1e-5 -1.883367,0.53024 -2.427371,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.427371,1.58038 c 1.081132,0 1.890241,-0.5268 2.42737,-1.58038 c 0.544004,-1.06046 0.816006,-2.64772 0.816027,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816027,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.42737,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956106,2.05552 c 0.915854,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457927,4.5793 -1.373781,5.94965 c -0.908978,1.36346 -2.227673,2.04518 -3.956106,2.04519 c -1.728433,-10e-6 -3.050576,-0.68173 -3.96643,-2.04519 c -0.908978,-1.37035 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363457,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.96643,-2.05552" />
|
||||
d="M 48.285395,309.65268 C 47.211158,309.65269 46.402028,310.18292 45.858024,311.24338 C 45.320896,312.29697 45.052342,313.88423 45.052342,316.00516 C 45.052342,318.11922 45.320896,319.70648 45.858024,320.76694 C 46.402028,321.82052 47.211158,322.34732 48.285395,322.34732 C 49.366527,322.34732 50.175636,321.82052 50.712765,320.76694 C 51.256769,319.70648 51.528771,318.11922 51.528792,316.00516 C 51.528771,313.88423 51.256769,312.29697 50.712765,311.24338 C 50.175636,310.18292 49.366527,309.65269 48.285395,309.65268 M 48.285395,308 C 50.013828,308.00001 51.332523,308.68518 52.241501,310.05552 C 53.157355,311.41899 53.615282,313.4022 53.615282,316.00516 C 53.615282,318.60125 53.157355,320.58446 52.241501,321.95481 C 51.332523,323.31827 50.013828,323.99999 48.285395,324 C 46.556962,323.99999 45.234819,323.31827 44.318965,321.95481 C 43.409987,320.58446 42.955508,318.60125 42.955508,316.00516 C 42.955508,313.4022 43.409987,311.41899 44.318965,310.05552 C 45.234819,308.68518 46.556962,308.00001 48.285395,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6487"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 57.29249,321.07682 l 2.179484,0 l 0,2.62362 l -2.179484,0 l 0,-2.62362" />
|
||||
d="M 57.29249,321.07682 L 59.471974,321.07682 L 59.471974,323.70044 L 57.29249,323.70044 L 57.29249,321.07682" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6489"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 68.489393,309.65268 c -1.074236,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76178 c 0,2.11406 0.268554,3.70132 0.805683,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.42737,1.58038 c 1.081132,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544003,-1.06046 0.816005,-2.64772 0.816026,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816026,-4.76178 c -0.537129,-1.06046 -1.346239,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.37378,5.94964 c 0,2.59609 -0.457926,4.5793 -1.37378,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728432,-10e-6 -3.050575,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.966429,-2.05552" />
|
||||
d="M 68.489393,309.65268 C 67.415157,309.65269 66.606027,310.18292 66.062023,311.24338 C 65.524894,312.29697 65.25634,313.88423 65.25634,316.00516 C 65.25634,318.11922 65.524894,319.70648 66.062023,320.76694 C 66.606027,321.82052 67.415157,322.34732 68.489393,322.34732 C 69.570525,322.34732 70.379635,321.82052 70.916764,320.76694 C 71.460767,319.70648 71.732769,318.11922 71.73279,316.00516 C 71.732769,313.88423 71.460767,312.29697 70.916764,311.24338 C 70.379635,310.18292 69.570525,309.65269 68.489393,309.65268 M 68.489393,308 C 70.217826,308.00001 71.536521,308.68518 72.4455,310.05552 C 73.361354,311.41899 73.81928,313.4022 73.81928,316.00516 C 73.81928,318.60125 73.361354,320.58446 72.4455,321.95481 C 71.536521,323.31827 70.217826,323.99999 68.489393,324 C 66.760961,323.99999 65.438818,323.31827 64.522964,321.95481 C 63.614006,320.58446 63.159506,318.60125 63.159506,316.00516 C 63.159506,313.4022 63.614006,311.41899 64.522964,310.05552 C 65.438818,308.68518 66.760961,308.00001 68.489393,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6491"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="m 81.958732,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544004,-1.06046 0.816005,-2.64772 0.816005,-4.76178 c 0,-2.12093 -0.272001,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728412,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915853,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457928,4.5793 -1.373781,5.94965 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 c -1.728432,-10e-6 -3.050576,-0.68173 -3.966429,-2.04519 c -0.908979,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363458,-5.94964 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
|
||||
d="M 81.958732,309.65268 C 80.884497,309.65269 80.075366,310.18292 79.531362,311.24338 C 78.994234,312.29697 78.72568,313.88423 78.72568,316.00516 C 78.72568,318.11922 78.994234,319.70648 79.531362,320.76694 C 80.075366,321.82052 80.884497,322.34732 81.958732,322.34732 C 83.039865,322.34732 83.848974,321.82052 84.386103,320.76694 C 84.930107,319.70648 85.202108,318.11922 85.202108,316.00516 C 85.202108,313.88423 84.930107,312.29697 84.386103,311.24338 C 83.848974,310.18292 83.039865,309.65269 81.958732,309.65268 M 81.958732,308 C 83.687144,308.00001 85.00586,308.68518 85.914839,310.05552 C 86.830692,311.41899 87.28862,313.4022 87.28862,316.00516 C 87.28862,318.60125 86.830692,320.58446 85.914839,321.95481 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 C 80.2303,323.99999 78.908156,323.31827 77.992303,321.95481 C 77.083324,320.58446 76.628845,318.60125 76.628845,316.00516 C 76.628845,313.4022 77.083324,311.41899 77.992303,310.05552 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -1865,27 +2044,27 @@
|
||||
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)"
|
||||
id="g8667">
|
||||
<path
|
||||
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8669"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062"
|
||||
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8671"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062"
|
||||
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8673"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8675"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062"
|
||||
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path8677"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -1893,16 +2072,579 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer59"
|
||||
inkscape:label="system-panel"
|
||||
style="display:inline">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer76"
|
||||
inkscape:label="system-bg"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
|
||||
id="system-bg">
|
||||
<path
|
||||
sodipodi:nodetypes="ssssccsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,357.50853 L 163.99993,357.50853 C 166.76993,357.50853 168.99993,355.21478 168.99993,352.3656 L 168.99993,328.17313 C 168.99993,325.32395 166.77018,323.0302 163.99993,323.0302 L 149.99993,323.0302 L 150,311.85494 C 150.00002,309.00575 147.77,306.712 145,306.712 z"
|
||||
id="path3908-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="system-logo"
|
||||
transform="matrix(0.90669538,0,0,0.90669538,-8.4795829,48.599346)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 184.72982,317.12131 C 184.574,317.13191 184.42217,317.15621 184.26901,317.17371 L 184.25861,317.17358 L 183.89197,319.17396 C 183.29442,319.30999 182.73239,319.5409 182.22666,319.85469 L 180.58248,318.67126 C 180.138,319.0163 179.73351,319.41878 179.37807,319.85468 L 180.51982,321.51998 C 180.17306,322.04951 179.91236,322.65441 179.76558,323.28985 C 179.76575,323.29285 179.76563,323.29995 179.76545,323.30025 L 177.77558,323.61462 C 177.73918,323.91154 177.72318,324.21887 177.72318,324.52553 C 177.72318,324.77687 177.72918,325.02454 177.75458,325.2692 L 179.74445,325.62545 C 179.88598,326.31649 180.15483,326.96164 180.53,327.53137 L 179.34648,329.15479 C 179.6854,329.57571 180.07669,329.95878 180.4985,330.29626 L 182.17419,329.14439 C 182.75967,329.51775 183.4135,329.77984 184.12235,329.90885 L 184.43636,331.88816 C 184.65957,331.90866 184.88846,331.90926 185.11703,331.90926 C 185.43977,331.90926 185.74775,331.89676 186.05976,331.85696 L 186.43679,329.8354 C 187.10942,329.66817 187.74148,329.3776 188.29044,328.98716 L 189.90345,330.16015 C 190.3217,329.80423 190.70409,329.39536 191.03421,328.95565 L 189.86123,327.2592 C 190.17885,326.71053 190.39912,326.10531 190.51073,325.45783 L 192.49005,325.14347 C 192.50745,324.93702 192.51115,324.73661 192.51115,324.52547 C 192.51114,324.15884 192.46855,323.79923 192.41695,323.44699 L 190.40614,323.08036 C 190.24828,322.49856 189.98989,321.95563 189.66247,321.46767 L 190.84583,319.8442 C 190.47886,319.39555 190.0606,318.98115 189.59946,318.62933 L 187.89261,319.8023 C 187.40188,319.51226 186.8738,319.28945 186.30071,319.16344 L 185.98635,317.17355 C 185.70046,317.13985 185.41192,317.12115 185.117,317.12115 C 185.0372,317.12115 184.95546,317.11915 184.87636,317.12115 C 184.83746,317.12188 184.79966,317.11915 184.76108,317.12115 C 184.75068,317.12182 184.73988,317.1205 184.72958,317.12112 z M 185.00195,322.21104 C 185.04055,322.20904 185.07875,322.21106 185.11724,322.21105 C 186.35692,322.21105 187.36903,323.22317 187.36903,324.46285 C 187.36903,325.70253 186.35692,326.70391 185.11723,326.70391 C 183.87756,326.70425 182.87618,325.70253 182.87618,324.46285 C 182.87618,323.26171 183.8159,322.27138 185.00195,322.21105 z"
|
||||
style="color:#000000;fill:url(#linearGradient5140);fill-opacity:1;stroke:#ffffff;stroke-width:0.66174376;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path3243" />
|
||||
<g
|
||||
id="g6988"
|
||||
transform="matrix(0.04305917,0,0,0.04305917,455.27959,99.463818)"
|
||||
style="display:inline">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccccc"
|
||||
id="path5119"
|
||||
d="M -6075.2089,5056.1863 L -6101.7678,5041.1462 L -6078.4446,4955.0386 L -6137.4587,4922.8036 L -6267.6548,4978.071 L -6447.2307,4930.5585 L -6287.565,5038.7334 L -6225.1071,5188.2739 L -6144.1803,5214.7981 L -6118.7459,5119.1783 L -6093.663,5123.151 L -6075.2089,5056.1863 z"
|
||||
style="opacity:0.74060148;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:7.68412066;stroke-miterlimit:4;stroke-opacity:0.4125;stroke-dasharray:none"
|
||||
inkscape:transform-center-x="-19.122561"
|
||||
inkscape:transform-center-y="192.50793"
|
||||
inkscape:export-filename="C:\Documents and Settings\t12\My Documents\My Dropbox\graphicswork\openpilot.org\textplay.png"
|
||||
inkscape:export-xdpi="122.68"
|
||||
inkscape:export-ydpi="122.68"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-ydpi="122.68"
|
||||
inkscape:export-xdpi="122.68"
|
||||
inkscape:export-filename="C:\Documents and Settings\t12\My Documents\My Dropbox\graphicswork\openpilot.org\textplay.png"
|
||||
inkscape:transform-center-y="192.50793"
|
||||
inkscape:transform-center-x="-19.122561"
|
||||
style="fill:#4e94f6;fill-opacity:1;stroke:#212122;stroke-width:7.68412066;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M -6085.1735,5043.4152 L -6111.7324,5028.3751 L -6088.4092,4942.2675 L -6147.4233,4910.0325 L -6277.6194,4965.2999 L -6457.1953,4917.7874 L -6297.5296,5025.9623 L -6235.0717,5175.5028 L -6154.1449,5202.027 L -6128.7105,5106.4072 L -6103.6276,5110.3799 L -6085.1735,5043.4152 z"
|
||||
id="path6992"
|
||||
sodipodi:nodetypes="cccccccccccc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="frame-label"
|
||||
transform="translate(-0.82096087,24.266719)">
|
||||
<path
|
||||
d="M 5.1898856,297.7612 L 5.1898856,289.17136 L 10.984807,289.17136 L 10.984807,290.18503 L 6.3266044,290.18503 L 6.3266044,292.84518 L 10.357854,292.84518 L 10.357854,293.85886 L 6.3266044,293.85886 L 6.3266044,297.7612 L 5.1898856,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11276"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 12.320745,297.7612 L 12.320745,291.53854 L 13.269964,291.53854 L 13.269964,292.4819 C 13.512149,292.0405 13.734805,291.74949 13.937932,291.60886 C 14.144961,291.46824 14.371523,291.39793 14.61762,291.39792 C 14.973085,291.39793 15.334413,291.51121 15.701604,291.73776 L 15.338323,292.71628 C 15.080507,292.56394 14.822695,292.48777 14.564886,292.48776 C 14.334414,292.48777 14.127383,292.55808 13.943792,292.6987 C 13.760196,292.83542 13.629337,293.02683 13.551214,293.27292 C 13.434024,293.64792 13.375431,294.05808 13.375432,294.50339 L 13.375432,297.7612 L 12.320745,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11278"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 20.400823,296.99362 C 20.010194,297.32565 19.633241,297.56003 19.269964,297.69675 C 18.910585,297.83347 18.523867,297.90182 18.109807,297.90182 C 17.426212,297.90182 16.900822,297.73581 16.533636,297.40378 C 16.166447,297.06784 15.982854,296.64011 15.982854,296.12057 C 15.982854,295.81589 16.051213,295.53855 16.187932,295.28854 C 16.328557,295.03464 16.510197,294.83152 16.732854,294.67917 C 16.959415,294.52683 17.213321,294.41159 17.494573,294.33347 C 17.701602,294.27878 18.014102,294.22605 18.432073,294.17526 C 19.283632,294.0737 19.910584,293.95261 20.312932,293.81198 C 20.316834,293.66745 20.318787,293.57566 20.318792,293.53659 C 20.318787,293.10691 20.219178,292.80417 20.019964,292.62839 C 19.750428,292.39011 19.350038,292.27097 18.818792,292.27097 C 18.322695,292.27097 17.955508,292.35886 17.717229,292.53464 C 17.482852,292.70652 17.309024,293.01316 17.195745,293.45456 L 16.164495,293.31393 C 16.258244,292.87253 16.412541,292.51706 16.627386,292.24753 C 16.842228,291.9741 17.152775,291.76511 17.559026,291.62057 C 17.965274,291.47214 18.435976,291.39793 18.971136,291.39792 C 19.502382,291.39793 19.934022,291.46043 20.266057,291.58542 C 20.598084,291.71042 20.842224,291.86863 20.998479,292.06003 C 21.154724,292.24753 21.264099,292.48581 21.326604,292.77487 C 21.361755,292.95456 21.379333,293.27878 21.379339,293.74753 L 21.379339,295.15378 C 21.379333,296.13425 21.400817,296.75534 21.443792,297.01706 C 21.490661,297.27487 21.580505,297.52292 21.713323,297.7612 L 20.611761,297.7612 C 20.502381,297.54245 20.432068,297.28659 20.400823,296.99362 M 20.312932,294.63815 C 19.930116,294.79441 19.355897,294.92722 18.590276,295.03659 C 18.15668,295.09909 17.85004,295.16941 17.670354,295.24753 C 17.490665,295.32566 17.351993,295.44089 17.254339,295.59323 C 17.156681,295.74167 17.107853,295.90769 17.107854,296.09128 C 17.107853,296.37253 17.213321,296.6069 17.424261,296.7944 C 17.639102,296.9819 17.951602,297.07565 18.361761,297.07565 C 18.768007,297.07565 19.129335,296.98776 19.445745,296.81198 C 19.762147,296.63229 19.994569,296.38815 20.143011,296.07956 C 20.256287,295.84128 20.312928,295.48972 20.312932,295.02487 L 20.312932,294.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11280"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 23.019964,297.7612 L 23.019964,291.53854 L 23.963323,291.53854 L 23.963323,292.41159 C 24.158634,292.10691 24.418399,291.86277 24.74262,291.67917 C 25.066836,291.49167 25.435976,291.39793 25.850042,291.39792 C 26.310975,291.39793 26.687928,291.49363 26.980901,291.68503 C 27.277771,291.87644 27.486755,292.14402 27.607854,292.48776 C 28.100036,291.76121 28.74066,291.39793 29.529729,291.39792 C 30.146909,291.39793 30.621518,291.5698 30.953557,291.91354 C 31.28558,292.25339 31.451595,292.77878 31.451604,293.48972 L 31.451604,297.7612 L 30.402776,297.7612 L 30.402776,293.84128 C 30.402768,293.41941 30.367612,293.11667 30.297307,292.93307 C 30.230893,292.74558 30.107846,292.59519 29.928167,292.4819 C 29.748472,292.36863 29.537535,292.31199 29.295354,292.31198 C 28.857848,292.31199 28.494567,292.45847 28.205511,292.75143 C 27.916442,293.0405 27.771911,293.50534 27.771917,294.14597 L 27.771917,297.7612 L 26.717229,297.7612 L 26.717229,293.71823 C 26.717225,293.24949 26.631287,292.89792 26.459417,292.66354 C 26.287538,292.42917 26.006288,292.31199 25.615667,292.31198 C 25.318789,292.31199 25.043398,292.39011 24.789495,292.54636 C 24.539493,292.70261 24.357852,292.93113 24.244573,293.2319 C 24.13129,293.53269 24.074649,293.96628 24.074651,294.53268 L 24.074651,297.7612 L 23.019964,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11282"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 37.310979,295.75729 L 38.400823,295.89206 C 38.228942,296.52878 37.910583,297.02292 37.445745,297.37448 C 36.980897,297.72604 36.387147,297.90182 35.664495,297.90182 C 34.754336,297.90182 34.031681,297.62253 33.496526,297.06393 C 32.965276,296.50144 32.699651,295.71433 32.699651,294.70261 C 32.699651,293.65574 32.969182,292.84324 33.508245,292.26511 C 34.047306,291.68699 34.746524,291.39793 35.605901,291.39792 C 36.437928,291.39793 37.117615,291.68113 37.644964,292.24753 C 38.172302,292.81394 38.435973,293.61081 38.435979,294.63815 C 38.435973,294.70066 38.43402,294.79441 38.43012,294.9194 L 33.789495,294.9194 C 33.828556,295.603 34.021915,296.12644 34.369573,296.48972 C 34.717227,296.853 35.15082,297.03464 35.670354,297.03464 C 36.057069,297.03464 36.387147,296.93308 36.660589,296.72995 C 36.934022,296.52683 37.150818,296.20261 37.310979,295.75729 M 33.848089,294.05222 L 37.322698,294.05222 C 37.275818,293.52878 37.143006,293.1362 36.924261,292.87448 C 36.588319,292.46824 36.152772,292.26511 35.61762,292.26511 C 35.133242,292.26511 34.725039,292.42722 34.393011,292.75143 C 34.064884,293.07566 33.883243,293.50925 33.848089,294.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11284"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 43.122745,292.73972 L 43.122745,291.53854 L 44.323917,291.53854 L 44.323917,292.73972 L 43.122745,292.73972 M 43.122745,297.7612 L 43.122745,296.56003 L 44.323917,296.56003 L 44.323917,297.7612 L 43.122745,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11286"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="cpu-label"
|
||||
transform="translate(-0.43424217,22.190022)">
|
||||
<path
|
||||
d="M 11.260198,309.74948 L 12.396917,310.03659 C 12.158628,310.97019 11.728941,311.68308 11.107854,312.17526 C 10.490661,312.66354 9.734802,312.90768 8.8402762,312.90768 C 7.9144913,312.90768 7.1605858,312.72018 6.5785575,312.34518 C 6.0004307,311.96628 5.5590249,311.4194 5.2543387,310.70456 C 4.9535567,309.98972 4.8031663,309.22214 4.8031669,308.40182 C 4.8031663,307.5073 4.973088,306.728 5.3129325,306.06393 C 5.656681,305.39597 6.1430087,304.89011 6.7719169,304.54636 C 7.4047262,304.19871 8.100038,304.02488 8.8578544,304.02487 C 9.7172239,304.02488 10.439879,304.24363 11.025823,304.68112 C 11.611753,305.11863 12.019956,305.73386 12.250432,306.52682 L 11.131292,306.7905 C 10.932066,306.1655 10.643004,305.71043 10.264104,305.42526 C 9.8851924,305.14011 9.4086304,304.99754 8.8344169,304.99753 C 8.1742566,304.99754 7.6215228,305.15574 7.1762137,305.47214 C 6.734805,305.78855 6.4242584,306.21433 6.2445731,306.74948 C 6.0648838,307.28074 5.9750401,307.82956 5.9750419,308.39597 C 5.9750401,309.12644 6.0805087,309.76511 6.2914481,310.31198 C 6.5062896,310.85495 6.8383205,311.2612 7.2875419,311.53073 C 7.7367571,311.80026 8.2230847,311.93503 8.7465262,311.93503 C 9.3832398,311.93503 9.9223018,311.75144 10.363714,311.38425 C 10.805113,311.01706 11.103941,310.47214 11.260198,309.74948"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11298"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 13.803167,312.7612 L 13.803167,304.17136 L 17.043401,304.17136 C 17.613709,304.17136 18.049255,304.19871 18.350042,304.25339 C 18.771911,304.32371 19.125426,304.45847 19.410589,304.65768 C 19.695738,304.853 19.924254,305.1284 20.096136,305.48386 C 20.271909,305.83933 20.3598,306.22996 20.359807,306.65573 C 20.3598,307.38621 20.127378,308.00535 19.662542,308.51315 C 19.197692,309.01706 18.357849,309.26902 17.143011,309.26901 L 14.939886,309.26901 L 14.939886,312.7612 L 13.803167,312.7612 M 14.939886,308.25534 L 17.160589,308.25534 C 17.894959,308.25535 18.416443,308.11863 18.725042,307.84518 C 19.033629,307.57175 19.187926,307.18699 19.187932,306.69089 C 19.187926,306.33152 19.096129,306.02488 18.912542,305.77097 C 18.732849,305.51316 18.494567,305.34324 18.197698,305.2612 C 18.006287,305.21043 17.652771,305.18504 17.137151,305.18503 L 14.939886,305.18503 L 14.939886,308.25534"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11300"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 27.455511,304.17136 L 28.592229,304.17136 L 28.592229,309.13425 C 28.592222,309.99753 28.494566,310.68308 28.299261,311.19089 C 28.103941,311.6987 27.750426,312.11276 27.238714,312.43307 C 26.730895,312.74948 26.062927,312.90768 25.234807,312.90768 C 24.430116,312.90768 23.771914,312.76901 23.260198,312.49167 C 22.748478,312.21433 22.383244,311.81394 22.164495,311.2905 C 21.945744,310.76316 21.836369,310.04441 21.83637,309.13425 L 21.83637,304.17136 L 22.973089,304.17136 L 22.973089,309.12839 C 22.973087,309.87448 23.041446,310.42526 23.178167,310.78073 C 23.318789,311.1323 23.55707,311.40378 23.893011,311.59518 C 24.232851,311.78659 24.646913,311.88229 25.135198,311.88229 C 25.971131,311.88229 26.566833,311.69284 26.922307,311.31393 C 27.27777,310.93503 27.455504,310.20652 27.455511,309.12839 L 27.455511,304.17136"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11302"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 42.736026,307.73972 L 42.736026,306.53854 L 43.937198,306.53854 L 43.937198,307.73972 L 42.736026,307.73972 M 42.736026,312.7612 L 42.736026,311.56003 L 43.937198,311.56003 L 43.937198,312.7612 L 42.736026,312.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11304"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="memfree-label"
|
||||
transform="translate(-0.72721087,20.125045)">
|
||||
<path
|
||||
d="M 5.0961356,327.7612 L 5.0961356,319.17136 L 6.8070731,319.17136 L 8.8402762,325.25339 C 9.0277714,325.8198 9.16449,326.24362 9.2504325,326.52487 C 9.3480836,326.21237 9.5004272,325.75339 9.7074637,325.14792 L 11.764104,319.17136 L 13.293401,319.17136 L 13.293401,327.7612 L 12.197698,327.7612 L 12.197698,320.57175 L 9.7016044,327.7612 L 8.6762137,327.7612 L 6.1918387,320.4487 L 6.1918387,327.7612 L 5.0961356,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11322"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 19.264104,325.75729 L 20.353948,325.89206 C 20.182067,326.52878 19.863708,327.02292 19.39887,327.37448 C 18.934022,327.72604 18.340272,327.90182 17.61762,327.90182 C 16.707461,327.90182 15.984806,327.62253 15.449651,327.06393 C 14.918401,326.50144 14.652776,325.71433 14.652776,324.70261 C 14.652776,323.65574 14.922307,322.84324 15.46137,322.26511 C 16.000431,321.68699 16.699649,321.39793 17.559026,321.39792 C 18.391053,321.39793 19.07074,321.68113 19.598089,322.24753 C 20.125427,322.81394 20.389098,323.61081 20.389104,324.63815 C 20.389098,324.70066 20.387145,324.79441 20.383245,324.9194 L 15.74262,324.9194 C 15.781681,325.603 15.97504,326.12644 16.322698,326.48972 C 16.670352,326.853 17.103945,327.03464 17.623479,327.03464 C 18.010194,327.03464 18.340272,326.93308 18.613714,326.72995 C 18.887147,326.52683 19.103943,326.20261 19.264104,325.75729 M 15.801214,324.05222 L 19.275823,324.05222 C 19.228943,323.52878 19.096131,323.1362 18.877386,322.87448 C 18.541444,322.46824 18.105897,322.26511 17.570745,322.26511 C 17.086367,322.26511 16.678164,322.42722 16.346136,322.75143 C 16.018009,323.07566 15.836368,323.50925 15.801214,324.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11324"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 21.684026,327.7612 L 21.684026,321.53854 L 22.627386,321.53854 L 22.627386,322.41159 C 22.822696,322.10691 23.082462,321.86277 23.406682,321.67917 C 23.730898,321.49167 24.100039,321.39793 24.514104,321.39792 C 24.975038,321.39793 25.351991,321.49363 25.644964,321.68503 C 25.941834,321.87644 26.150818,322.14402 26.271917,322.48776 C 26.764098,321.76121 27.404723,321.39793 28.193792,321.39792 C 28.810971,321.39793 29.28558,321.5698 29.61762,321.91354 C 29.949642,322.25339 30.115658,322.77878 30.115667,323.48972 L 30.115667,327.7612 L 29.066839,327.7612 L 29.066839,323.84128 C 29.066831,323.41941 29.031674,323.11667 28.96137,322.93307 C 28.894956,322.74558 28.771909,322.59519 28.592229,322.4819 C 28.412534,322.36863 28.201597,322.31199 27.959417,322.31198 C 27.52191,322.31199 27.158629,322.45847 26.869573,322.75143 C 26.580505,323.0405 26.435974,323.50534 26.435979,324.14597 L 26.435979,327.7612 L 25.381292,327.7612 L 25.381292,323.71823 C 25.381287,323.24949 25.29535,322.89792 25.123479,322.66354 C 24.9516,322.42917 24.670351,322.31199 24.279729,322.31198 C 23.982851,322.31199 23.707461,322.39011 23.453557,322.54636 C 23.203555,322.70261 23.021915,322.93113 22.908636,323.2319 C 22.795352,323.53269 22.738712,323.96628 22.738714,324.53268 L 22.738714,327.7612 L 21.684026,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11326"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 31.908636,327.7612 L 31.908636,319.17136 L 37.703557,319.17136 L 37.703557,320.18503 L 33.045354,320.18503 L 33.045354,322.84518 L 37.076604,322.84518 L 37.076604,323.85886 L 33.045354,323.85886 L 33.045354,327.7612 L 31.908636,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11328"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 39.039495,327.7612 L 39.039495,321.53854 L 39.988714,321.53854 L 39.988714,322.4819 C 40.230899,322.0405 40.453555,321.74949 40.656682,321.60886 C 40.863711,321.46824 41.090273,321.39793 41.33637,321.39792 C 41.691835,321.39793 42.053163,321.51121 42.420354,321.73776 L 42.057073,322.71628 C 41.799257,322.56394 41.541445,322.48777 41.283636,322.48776 C 41.053164,322.48777 40.846133,322.55808 40.662542,322.6987 C 40.478946,322.83542 40.348087,323.02683 40.269964,323.27292 C 40.152774,323.64792 40.094181,324.05808 40.094182,324.50339 L 40.094182,327.7612 L 39.039495,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11330"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 47.318792,325.75729 L 48.408636,325.89206 C 48.236755,326.52878 47.918396,327.02292 47.453557,327.37448 C 46.988709,327.72604 46.39496,327.90182 45.672307,327.90182 C 44.762149,327.90182 44.039493,327.62253 43.504339,327.06393 C 42.973088,326.50144 42.707463,325.71433 42.707464,324.70261 C 42.707463,323.65574 42.976994,322.84324 43.516057,322.26511 C 44.055118,321.68699 44.754336,321.39793 45.613714,321.39792 C 46.445741,321.39793 47.125428,321.68113 47.652776,322.24753 C 48.180114,322.81394 48.443786,323.61081 48.443792,324.63815 C 48.443786,324.70066 48.441833,324.79441 48.437932,324.9194 L 43.797307,324.9194 C 43.836368,325.603 44.029728,326.12644 44.377386,326.48972 C 44.725039,326.853 45.158633,327.03464 45.678167,327.03464 C 46.064882,327.03464 46.39496,326.93308 46.668401,326.72995 C 46.941834,326.52683 47.158631,326.20261 47.318792,325.75729 M 43.855901,324.05222 L 47.330511,324.05222 C 47.283631,323.52878 47.150818,323.1362 46.932073,322.87448 C 46.596131,322.46824 46.160585,322.26511 45.625432,322.26511 C 45.141055,322.26511 44.732852,322.42722 44.400823,322.75143 C 44.072696,323.07566 43.891056,323.50925 43.855901,324.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11332"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 53.998479,325.75729 L 55.088323,325.89206 C 54.916442,326.52878 54.598083,327.02292 54.133245,327.37448 C 53.668397,327.72604 53.074647,327.90182 52.351995,327.90182 C 51.441836,327.90182 50.719181,327.62253 50.184026,327.06393 C 49.652776,326.50144 49.387151,325.71433 49.387151,324.70261 C 49.387151,323.65574 49.656682,322.84324 50.195745,322.26511 C 50.734806,321.68699 51.434024,321.39793 52.293401,321.39792 C 53.125428,321.39793 53.805115,321.68113 54.332464,322.24753 C 54.859802,322.81394 55.123473,323.61081 55.123479,324.63815 C 55.123473,324.70066 55.12152,324.79441 55.11762,324.9194 L 50.476995,324.9194 C 50.516056,325.603 50.709415,326.12644 51.057073,326.48972 C 51.404727,326.853 51.83832,327.03464 52.357854,327.03464 C 52.744569,327.03464 53.074647,326.93308 53.348089,326.72995 C 53.621522,326.52683 53.838318,326.20261 53.998479,325.75729 M 50.535589,324.05222 L 54.010198,324.05222 C 53.963318,323.52878 53.830506,323.1362 53.611761,322.87448 C 53.275819,322.46824 52.840272,322.26511 52.30512,322.26511 C 51.820742,322.26511 51.412539,322.42722 51.080511,322.75143 C 50.752384,323.07566 50.570743,323.50925 50.535589,324.05222"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11334"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 60,322.73972 L 60,321.53854 L 61.201172,321.53854 L 61.201172,322.73972 L 60,322.73972 M 60,327.7612 L 60,326.56003 L 61.201172,326.56003 L 61.201172,327.7612 L 60,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11336"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="fusionalgo-label"
|
||||
transform="translate(0.18099223,-37.43501)">
|
||||
<path
|
||||
d="M 4.1879325,402.7612 L 7.4867606,394.17136 L 8.71137,394.17136 L 12.226995,402.7612 L 10.932073,402.7612 L 9.93012,400.15964 L 6.3383231,400.15964 L 5.3949637,402.7612 L 4.1879325,402.7612 M 6.6664481,399.23386 L 9.5785575,399.23386 L 8.6820731,396.85495 C 8.4086314,396.1323 8.2055066,395.53855 8.0726981,395.0737 C 7.9633194,395.62449 7.8090226,396.17136 7.6098075,396.71432 L 6.6664481,399.23386"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11346"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 15.314886,401.81784 L 15.467229,402.74948 C 15.170351,402.81198 14.904727,402.84323 14.670354,402.84323 C 14.28754,402.84323 13.990665,402.78268 13.779729,402.66159 C 13.568791,402.5405 13.420353,402.38229 13.334417,402.18698 C 13.248478,401.98776 13.20551,401.57175 13.205511,400.93893 L 13.205511,397.35886 L 12.432073,397.35886 L 12.432073,396.53854 L 13.205511,396.53854 L 13.205511,394.99753 L 14.254339,394.36472 L 14.254339,396.53854 L 15.314886,396.53854 L 15.314886,397.35886 L 14.254339,397.35886 L 14.254339,400.99753 C 14.254337,401.29831 14.271915,401.49167 14.307073,401.57761 C 14.346133,401.66354 14.40668,401.7319 14.488714,401.78268 C 14.574649,401.83347 14.695743,401.85886 14.851995,401.85886 C 14.96918,401.85886 15.123476,401.84519 15.314886,401.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11348"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 18.643011,401.81784 L 18.795354,402.74948 C 18.498476,402.81198 18.232852,402.84323 17.998479,402.84323 C 17.615665,402.84323 17.31879,402.78268 17.107854,402.66159 C 16.896916,402.5405 16.748478,402.38229 16.662542,402.18698 C 16.576603,401.98776 16.533635,401.57175 16.533636,400.93893 L 16.533636,397.35886 L 15.760198,397.35886 L 15.760198,396.53854 L 16.533636,396.53854 L 16.533636,394.99753 L 17.582464,394.36472 L 17.582464,396.53854 L 18.643011,396.53854 L 18.643011,397.35886 L 17.582464,397.35886 L 17.582464,400.99753 C 17.582462,401.29831 17.60004,401.49167 17.635198,401.57761 C 17.674258,401.66354 17.734805,401.7319 17.816839,401.78268 C 17.902774,401.83347 18.023868,401.85886 18.18012,401.85886 C 18.297305,401.85886 18.451601,401.84519 18.643011,401.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11350"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 19.826604,402.7612 L 19.826604,394.17136 L 26.037542,394.17136 L 26.037542,395.18503 L 20.963323,395.18503 L 20.963323,397.81589 L 25.715276,397.81589 L 25.715276,398.8237 L 20.963323,398.8237 L 20.963323,401.74753 L 26.236761,401.74753 L 26.236761,402.7612 L 19.826604,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11352"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 27.262151,400.90378 L 28.30512,400.73972 C 28.363712,401.15769 28.525821,401.478 28.791448,401.70065 C 29.060977,401.92331 29.435977,402.03464 29.916448,402.03464 C 30.40082,402.03464 30.760194,401.93698 30.994573,401.74167 C 31.228944,401.54245 31.346131,401.31003 31.346136,401.0444 C 31.346131,400.80612 31.242616,400.61862 31.035589,400.4819 C 30.891053,400.38816 30.531679,400.26901 29.957464,400.12448 C 29.184024,399.92917 28.646915,399.7612 28.346136,399.62057 C 28.049259,399.47605 27.822697,399.27878 27.666448,399.02878 C 27.514104,398.77488 27.437932,398.49558 27.437932,398.19089 C 27.437932,397.91355 27.500432,397.65769 27.625432,397.42331 C 27.754338,397.18503 27.928166,396.98777 28.146917,396.83151 C 28.310978,396.71042 28.533634,396.60886 28.814886,396.52682 C 29.10004,396.44089 29.404727,396.39793 29.728948,396.39792 C 30.217226,396.39793 30.64496,396.46824 31.012151,396.60886 C 31.383241,396.74949 31.656678,396.94089 31.832464,397.18307 C 32.00824,397.42136 32.129334,397.74167 32.195745,398.14401 L 31.164495,398.28464 C 31.117616,397.96433 30.980897,397.71433 30.754339,397.53464 C 30.531679,397.35496 30.215273,397.26511 29.80512,397.26511 C 29.320743,397.26511 28.97504,397.34519 28.768011,397.50534 C 28.560978,397.6655 28.457462,397.853 28.457464,398.06784 C 28.457462,398.20456 28.500431,398.32761 28.58637,398.43698 C 28.672306,398.55027 28.807071,398.64402 28.990667,398.71823 C 29.096133,398.7573 29.40668,398.84714 29.922307,398.98776 C 30.668397,399.18698 31.187928,399.35105 31.480901,399.47995 C 31.777771,399.60495 32.010193,399.78855 32.178167,400.03073 C 32.34613,400.27292 32.430114,400.5737 32.43012,400.93307 C 32.430114,401.28464 32.326599,401.61667 32.119573,401.92917 C 31.916443,402.23776 31.621522,402.478 31.234807,402.64987 C 30.848085,402.81784 30.410585,402.90182 29.922307,402.90182 C 29.113712,402.90182 28.496525,402.73386 28.070745,402.39792 C 27.648869,402.06198 27.379338,401.56394 27.262151,400.90378"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11354"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 35.986761,401.81784 L 36.139104,402.74948 C 35.842226,402.81198 35.576602,402.84323 35.342229,402.84323 C 34.959415,402.84323 34.66254,402.78268 34.451604,402.66159 C 34.240666,402.5405 34.092228,402.38229 34.006292,402.18698 C 33.920353,401.98776 33.877385,401.57175 33.877386,400.93893 L 33.877386,397.35886 L 33.103948,397.35886 L 33.103948,396.53854 L 33.877386,396.53854 L 33.877386,394.99753 L 34.926214,394.36472 L 34.926214,396.53854 L 35.986761,396.53854 L 35.986761,397.35886 L 34.926214,397.35886 L 34.926214,400.99753 C 34.926212,401.29831 34.94379,401.49167 34.978948,401.57761 C 35.018008,401.66354 35.078555,401.7319 35.160589,401.78268 C 35.246524,401.83347 35.367618,401.85886 35.52387,401.85886 C 35.641055,401.85886 35.795351,401.84519 35.986761,401.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11356"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 36.203557,402.7612 L 39.502386,394.17136 L 40.726995,394.17136 L 44.24262,402.7612 L 42.947698,402.7612 L 41.945745,400.15964 L 38.353948,400.15964 L 37.410589,402.7612 L 36.203557,402.7612 M 38.682073,399.23386 L 41.594182,399.23386 L 40.697698,396.85495 C 40.424256,396.1323 40.221132,395.53855 40.088323,395.0737 C 39.978944,395.62449 39.824648,396.17136 39.625432,396.71432 L 38.682073,399.23386"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11358"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 45.004339,402.7612 L 45.004339,394.17136 L 46.059026,394.17136 L 46.059026,402.7612 L 45.004339,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11360"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 47.506292,403.27682 L 48.531682,403.42917 C 48.57465,403.74557 48.69379,403.97604 48.889104,404.12057 C 49.150821,404.31589 49.508242,404.41354 49.96137,404.41354 C 50.449648,404.41354 50.8266,404.31589 51.092229,404.12057 C 51.35785,403.92526 51.537537,403.65182 51.631292,403.30026 C 51.685975,403.08542 51.711365,402.63425 51.707464,401.94675 C 51.246522,402.48972 50.672304,402.7612 49.984807,402.7612 C 49.129337,402.7612 48.467228,402.45261 47.998479,401.83542 C 47.529729,401.21823 47.295354,400.478 47.295354,399.61472 C 47.295354,399.02097 47.402776,398.47409 47.61762,397.97409 C 47.832463,397.47019 48.143009,397.08152 48.549261,396.80807 C 48.959415,396.53464 49.439883,396.39793 49.990667,396.39792 C 50.725038,396.39793 51.330506,396.6948 51.807073,397.28854 L 51.807073,396.53854 L 52.779729,396.53854 L 52.779729,401.91745 C 52.779723,402.8862 52.680114,403.57175 52.480901,403.97409 C 52.285583,404.38034 51.973084,404.70065 51.543401,404.93503 C 51.117616,405.1694 50.592226,405.28659 49.967229,405.28659 C 49.22504,405.28659 48.625431,405.11862 48.168401,404.78268 C 47.711369,404.45065 47.490666,403.9487 47.506292,403.27682 M 48.379339,399.53854 C 48.379337,400.35495 48.541446,400.95065 48.865667,401.32565 C 49.189883,401.70065 49.596133,401.88815 50.084417,401.88815 C 50.568788,401.88815 50.975038,401.70261 51.303167,401.33151 C 51.631287,400.95651 51.795349,400.37058 51.795354,399.5737 C 51.795349,398.81199 51.625428,398.23777 51.285589,397.85104 C 50.949647,397.46433 50.543398,397.27097 50.066839,397.27097 C 49.598086,397.27097 49.199649,397.46238 48.871526,397.84518 C 48.5434,398.2241 48.379337,398.78855 48.379339,399.53854"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11362"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 53.986761,399.64987 C 53.98676,398.49753 54.307072,397.64402 54.947698,397.08932 C 55.482852,396.62839 56.135196,396.39793 56.904729,396.39792 C 57.760194,396.39793 58.459412,396.67917 59.002386,397.24167 C 59.545348,397.80027 59.816833,398.5737 59.816839,399.56198 C 59.816833,400.36276 59.695739,400.99362 59.453557,401.45456 C 59.215271,401.91159 58.865662,402.26706 58.404729,402.52097 C 57.947694,402.77487 57.447694,402.90182 56.904729,402.90182 C 56.033633,402.90182 55.328556,402.62253 54.789495,402.06393 C 54.254338,401.50534 53.98676,400.70066 53.986761,399.64987 M 55.070745,399.64987 C 55.070744,400.44675 55.244571,401.0444 55.592229,401.44284 C 55.939883,401.83737 56.377383,402.03464 56.904729,402.03464 C 57.428163,402.03464 57.863709,401.83542 58.21137,401.43698 C 58.559021,401.03855 58.732849,400.43112 58.732854,399.61472 C 58.732849,398.84519 58.557068,398.26316 58.205511,397.86862 C 57.85785,397.47019 57.424257,397.27097 56.904729,397.27097 C 56.377383,397.27097 55.939883,397.46824 55.592229,397.86276 C 55.244571,398.2573 55.070744,398.853 55.070745,399.64987"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11364"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 62.811442,397.73972 L 62.811442,396.53854 L 64.012614,396.53854 L 64.012614,397.73972 L 62.811442,397.73972 M 62.811442,402.7612 L 62.811442,401.56003 L 64.012614,401.56003 L 64.012614,402.7612 L 62.811442,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11366"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="mag-used"
|
||||
transform="translate(-0.72721087,-37.781958)">
|
||||
<path
|
||||
d="M 5.0961356,417.7612 L 5.0961356,409.17136 L 6.8070731,409.17136 L 8.8402762,415.25339 C 9.0277714,415.8198 9.16449,416.24362 9.2504325,416.52487 C 9.3480836,416.21237 9.5004272,415.75339 9.7074637,415.14792 L 11.764104,409.17136 L 13.293401,409.17136 L 13.293401,417.7612 L 12.197698,417.7612 L 12.197698,410.57175 L 9.7016044,417.7612 L 8.6762137,417.7612 L 6.1918387,410.4487 L 6.1918387,417.7612 L 5.0961356,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11392"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 19.064886,416.99362 C 18.674256,417.32565 18.297303,417.56003 17.934026,417.69675 C 17.574648,417.83347 17.18793,417.90182 16.77387,417.90182 C 16.090274,417.90182 15.564884,417.73581 15.197698,417.40378 C 14.83051,417.06784 14.646916,416.64011 14.646917,416.12057 C 14.646916,415.81589 14.715276,415.53855 14.851995,415.28854 C 14.992619,415.03464 15.17426,414.83152 15.396917,414.67917 C 15.623478,414.52683 15.877384,414.41159 16.158636,414.33347 C 16.365665,414.27878 16.678164,414.22605 17.096136,414.17526 C 17.947694,414.0737 18.574647,413.95261 18.976995,413.81198 C 18.980896,413.66745 18.98285,413.57566 18.982854,413.53659 C 18.98285,413.10691 18.88324,412.80417 18.684026,412.62839 C 18.414491,412.39011 18.014101,412.27097 17.482854,412.27097 C 16.986758,412.27097 16.619571,412.35886 16.381292,412.53464 C 16.146915,412.70652 15.973087,413.01316 15.859807,413.45456 L 14.828557,413.31393 C 14.922307,412.87253 15.076604,412.51706 15.291448,412.24753 C 15.506291,411.9741 15.816837,411.76511 16.223089,411.62057 C 16.629336,411.47214 17.100039,411.39793 17.635198,411.39792 C 18.166444,411.39793 18.598084,411.46043 18.93012,411.58542 C 19.262146,411.71042 19.506287,411.86863 19.662542,412.06003 C 19.818786,412.24753 19.928161,412.48581 19.990667,412.77487 C 20.025817,412.95456 20.043395,413.27878 20.043401,413.74753 L 20.043401,415.15378 C 20.043395,416.13425 20.06488,416.75534 20.107854,417.01706 C 20.154723,417.27487 20.244567,417.52292 20.377386,417.7612 L 19.275823,417.7612 C 19.166443,417.54245 19.096131,417.28659 19.064886,416.99362 M 18.976995,414.63815 C 18.594178,414.79441 18.01996,414.92722 17.254339,415.03659 C 16.820742,415.09909 16.514102,415.16941 16.334417,415.24753 C 16.154727,415.32566 16.016056,415.44089 15.918401,415.59323 C 15.820743,415.74167 15.771915,415.90769 15.771917,416.09128 C 15.771915,416.37253 15.877384,416.6069 16.088323,416.7944 C 16.303165,416.9819 16.615664,417.07565 17.025823,417.07565 C 17.43207,417.07565 17.793398,416.98776 18.109807,416.81198 C 18.42621,416.63229 18.658631,416.38815 18.807073,416.07956 C 18.92035,415.84128 18.97699,415.48972 18.976995,415.02487 L 18.976995,414.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11394"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 21.490667,418.27682 L 22.516057,418.42917 C 22.559025,418.74557 22.678165,418.97604 22.873479,419.12057 C 23.135196,419.31589 23.492617,419.41354 23.945745,419.41354 C 24.434023,419.41354 24.810975,419.31589 25.076604,419.12057 C 25.342225,418.92526 25.521912,418.65182 25.615667,418.30026 C 25.67035,418.08542 25.69574,417.63425 25.691839,416.94675 C 25.230897,417.48972 24.656679,417.7612 23.969182,417.7612 C 23.113712,417.7612 22.451603,417.45261 21.982854,416.83542 C 21.514104,416.21823 21.279729,415.478 21.279729,414.61472 C 21.279729,414.02097 21.387151,413.47409 21.601995,412.97409 C 21.816838,412.47019 22.127384,412.08152 22.533636,411.80807 C 22.94379,411.53464 23.424258,411.39793 23.975042,411.39792 C 24.709413,411.39793 25.314881,411.6948 25.791448,412.28854 L 25.791448,411.53854 L 26.764104,411.53854 L 26.764104,416.91745 C 26.764098,417.8862 26.664489,418.57175 26.465276,418.97409 C 26.269958,419.38034 25.957459,419.70065 25.527776,419.93503 C 25.101991,420.1694 24.576601,420.28659 23.951604,420.28659 C 23.209415,420.28659 22.609806,420.11862 22.152776,419.78268 C 21.695744,419.45065 21.475041,418.9487 21.490667,418.27682 M 22.363714,414.53854 C 22.363712,415.35495 22.525821,415.95065 22.850042,416.32565 C 23.174258,416.70065 23.580508,416.88815 24.068792,416.88815 C 24.553163,416.88815 24.959413,416.70261 25.287542,416.33151 C 25.615662,415.95651 25.779724,415.37058 25.779729,414.5737 C 25.779724,413.81199 25.609803,413.23777 25.269964,412.85104 C 24.934022,412.46433 24.527773,412.27097 24.051214,412.27097 C 23.582461,412.27097 23.184024,412.46238 22.855901,412.84518 C 22.527775,413.2241 22.363712,413.78855 22.363714,414.53854"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11396"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 63.719645,412.73972 L 63.719645,411.53854 L 64.920817,411.53854 L 64.920817,412.73972 L 63.719645,412.73972 M 63.719645,417.7612 L 63.719645,416.56003 L 64.920817,416.56003 L 64.920817,417.7612 L 63.719645,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11398"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4995"
|
||||
d="M 35.617,417.76968 L 35.617,416.91237 C 35.162604,417.57184 34.545146,417.90158 33.764621,417.90158 C 33.42016,417.90158 33.09769,417.83563 32.797208,417.70374 C 32.500385,417.57184 32.278686,417.40697 32.13211,417.20914 C 31.989195,417.00763 31.888423,416.76216 31.829793,416.47272 C 31.789483,416.27855 31.769329,415.97079 31.76933,415.54946 L 31.76933,411.93334 L 32.75873,411.93334 L 32.75873,415.17026 C 32.758728,415.68685 32.778884,416.0349 32.819193,416.21443 C 32.881488,416.47456 33.013407,416.67972 33.214954,416.82993 C 33.416496,416.97648 33.665679,417.04976 33.962501,417.04976 C 34.259319,417.04976 34.537816,416.97465 34.797995,416.82444 C 35.058168,416.67057 35.24139,416.46356 35.347662,416.20343 C 35.457592,415.93965 35.512559,415.55862 35.512563,415.06035 L 35.512563,411.93334 L 36.501964,411.93334 L 36.501964,417.76968 L 35.617,417.76968" />
|
||||
<path
|
||||
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4997"
|
||||
d="M 37.661762,416.02757 L 38.64017,415.8737 C 38.695135,416.26572 38.847209,416.56615 39.096394,416.77498 C 39.349238,416.98381 39.701025,417.08823 40.151754,417.08823 C 40.606143,417.08823 40.943272,416.99663 41.163142,416.81345 C 41.383005,416.6266 41.492938,416.4086 41.492942,416.15947 C 41.492938,415.93598 41.39583,415.76012 41.201618,415.6319 C 41.06603,415.54396 40.728901,415.43222 40.190231,415.29666 C 39.464668,415.11348 38.960807,414.95593 38.678646,414.82404 C 38.400147,414.68848 38.187609,414.50346 38.041032,414.26898 C 37.898118,414.03084 37.826662,413.76888 37.826662,413.48311 C 37.826662,413.22299 37.885292,412.98301 38.002555,412.76319 C 38.123481,412.5397 38.28655,412.35468 38.491759,412.20813 C 38.645665,412.09456 38.854538,411.9993 39.118379,411.92235 C 39.385883,411.84176 39.67171,411.80146 39.97586,411.80145 C 40.433913,411.80146 40.835171,411.86741 41.179631,411.99929 C 41.52775,412.13119 41.78426,412.31072 41.949166,412.53787 C 42.114061,412.76136 42.227658,413.06178 42.28996,413.43914 L 41.322545,413.57103 C 41.278567,413.27062 41.150313,413.03613 40.937778,412.8676 C 40.728901,412.69907 40.432082,412.6148 40.047317,412.6148 C 39.592924,412.6148 39.268621,412.68991 39.074407,412.84012 C 38.880189,412.99034 38.783082,413.1662 38.783083,413.3677 C 38.783082,413.49594 38.823391,413.61135 38.90401,413.71393 C 38.984626,413.82017 39.111049,413.90811 39.28328,413.97771 C 39.382218,414.01435 39.673541,414.09862 40.157251,414.23051 C 40.857157,414.41736 41.344528,414.57124 41.619366,414.69215 C 41.897858,414.80938 42.115894,414.98158 42.273469,415.20873 C 42.431036,415.43589 42.50982,415.71799 42.509826,416.05506 C 42.50982,416.3848 42.412712,416.69621 42.218501,416.98931 C 42.027946,417.27875 41.75128,417.50406 41.388505,417.66527 C 41.025722,417.82281 40.615303,417.90158 40.157251,417.90158 C 39.398708,417.90158 38.819726,417.74404 38.420303,417.42895 C 38.024541,417.11388 37.771694,416.64675 37.661762,416.02757" />
|
||||
<path
|
||||
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4999"
|
||||
d="M 47.682194,415.89018 L 48.704574,416.01658 C 48.543334,416.61377 48.244681,417.07724 47.808617,417.40697 C 47.372544,417.73671 46.815547,417.90158 46.137628,417.90158 C 45.28381,417.90158 44.605888,417.63962 44.103861,417.11571 C 43.605495,416.58813 43.356313,415.84988 43.356314,414.90097 C 43.356313,413.9191 43.609159,413.15704 44.114854,412.6148 C 44.620547,412.07258 45.276482,411.80146 46.082663,411.80145 C 46.863186,411.80146 47.500798,412.06707 47.995503,412.59832 C 48.490199,413.12956 48.737548,413.87697 48.737554,414.84052 C 48.737548,414.89915 48.735716,414.98708 48.732058,415.10432 L 44.378695,415.10432 C 44.415336,415.74547 44.596727,416.23641 44.922865,416.57714 C 45.248998,416.91787 45.65575,417.08823 46.143125,417.08823 C 46.505902,417.08823 46.815547,416.99298 47.072062,416.80246 C 47.32857,416.61195 47.531946,416.30785 47.682194,415.89018 M 44.43366,414.29097 L 47.693187,414.29097 C 47.64921,413.80002 47.524618,413.43182 47.319413,413.18635 C 47.004267,412.80532 46.595681,412.6148 46.093656,412.6148 C 45.639261,412.6148 45.256327,412.76685 44.944851,413.07094 C 44.637036,413.37503 44.466639,413.78171 44.43366,414.29097" />
|
||||
<path
|
||||
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5001"
|
||||
d="M 53.739527,417.76968 L 53.739527,417.03328 C 53.369413,417.61215 52.825242,417.90158 52.107016,417.90158 C 51.641628,417.90158 51.212887,417.77335 50.820794,417.51689 C 50.432361,417.26043 50.130045,416.90321 49.913843,416.44525 C 49.701304,415.98361 49.595035,415.45421 49.595036,414.85701 C 49.595035,414.27448 49.692143,413.7469 49.88636,413.27427 C 50.080576,412.79799 50.371898,412.43345 50.76033,412.18065 C 51.148761,411.92786 51.582996,411.80146 52.063042,411.80145 C 52.414825,411.80146 52.728135,411.87657 53.002973,412.02677 C 53.277803,412.17333 53.501334,412.36567 53.673567,412.60381 L 53.673567,409.71311 L 54.65747,409.71311 L 54.65747,417.76968 L 53.739527,417.76968 M 50.61192,414.85701 C 50.61192,415.60441 50.769489,416.16314 51.084635,416.53317 C 51.399775,416.90321 51.771716,417.08823 52.200459,417.08823 C 52.632861,417.08823 52.999304,416.91237 53.299793,416.56066 C 53.603938,416.20527 53.756011,415.66486 53.756016,414.93945 C 53.756011,414.14075 53.602106,413.55455 53.294295,413.18085 C 52.986479,412.80716 52.60721,412.62031 52.156484,412.6203 C 51.716749,412.62031 51.348472,412.79982 51.051654,413.15886 C 50.758496,413.51792 50.61192,414.08397 50.61192,414.85701" />
|
||||
</g>
|
||||
<g
|
||||
id="gps-type"
|
||||
transform="translate(-0.47525777,-37.473886)">
|
||||
<path
|
||||
d="M 9.1508231,429.39206 L 9.1508231,428.38425 L 12.789495,428.37839 L 12.789495,431.56589 C 12.230893,432.0112 11.654722,432.34714 11.060979,432.5737 C 10.467223,432.79636 9.8578487,432.90768 9.2328544,432.90768 C 8.3891002,432.90768 7.6215228,432.728 6.93012,432.36862 C 6.242618,432.00534 5.7230872,431.4819 5.3715262,430.79831 C 5.0199629,430.11472 4.8441819,429.35105 4.8441825,428.50729 C 4.8441819,427.67136 5.0180098,426.89207 5.3656669,426.1694 C 5.7172279,425.44285 6.2211336,424.90379 6.8773856,424.55222 C 7.5336323,424.20066 8.2894909,424.02488 9.1449637,424.02487 C 9.7660519,424.02488 10.326598,424.12644 10.826604,424.32956 C 11.330503,424.52879 11.725034,424.80808 12.010198,425.16745 C 12.295346,425.52683 12.512143,425.99558 12.660589,426.5737 L 11.635198,426.85495 C 11.506285,426.41746 11.346128,426.07371 11.154729,425.8237 C 10.963316,425.57371 10.689879,425.37449 10.334417,425.22604 C 9.9789423,425.07371 9.5844115,424.99754 9.1508231,424.99753 C 8.6312874,424.99754 8.1820691,425.07761 7.8031669,425.23776 C 7.4242574,425.39402 7.1176171,425.60105 6.883245,425.85886 C 6.6527738,426.11668 6.4730865,426.39988 6.3441825,426.70847 C 6.1254306,427.23972 6.0160557,427.81589 6.0160575,428.43698 C 6.0160557,429.20261 6.1469149,429.84323 6.4086356,430.35886 C 6.6742581,430.87448 7.0590234,431.2573 7.5629325,431.50729 C 8.0668349,431.75729 8.6019906,431.88229 9.1684012,431.88229 C 9.6605833,431.88229 10.141052,431.78854 10.609807,431.60104 C 11.078551,431.40964 11.434019,431.20651 11.676214,430.99167 L 11.676214,429.39206 L 9.1508231,429.39206"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11414"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 14.459417,432.7612 L 14.459417,424.17136 L 17.699651,424.17136 C 18.269959,424.17136 18.705505,424.19871 19.006292,424.25339 C 19.428161,424.32371 19.781676,424.45847 20.066839,424.65768 C 20.351988,424.853 20.580504,425.1284 20.752386,425.48386 C 20.928159,425.83933 21.01605,426.22996 21.016057,426.65573 C 21.01605,427.38621 20.783628,428.00535 20.318792,428.51315 C 19.853942,429.01706 19.014099,429.26902 17.799261,429.26901 L 15.596136,429.26901 L 15.596136,432.7612 L 14.459417,432.7612 M 15.596136,428.25534 L 17.816839,428.25534 C 18.551209,428.25535 19.072693,428.11863 19.381292,427.84518 C 19.689879,427.57175 19.844176,427.18699 19.844182,426.69089 C 19.844176,426.33152 19.752379,426.02488 19.568792,425.77097 C 19.389099,425.51316 19.150817,425.34324 18.853948,425.2612 C 18.662537,425.21043 18.309021,425.18504 17.793401,425.18503 L 15.596136,425.18503 L 15.596136,428.25534"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11416"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 22.088323,430.00143 L 23.160589,429.90768 C 23.211368,430.33737 23.328556,430.69089 23.512151,430.96823 C 23.699649,431.24167 23.988711,431.46433 24.379339,431.6362 C 24.769961,431.80417 25.209413,431.88815 25.697698,431.88815 C 26.131287,431.88815 26.514099,431.8237 26.846136,431.69479 C 27.178161,431.56589 27.424255,431.39011 27.584417,431.16745 C 27.748473,430.94089 27.830504,430.6948 27.830511,430.42917 C 27.830504,430.15964 27.752379,429.92527 27.596136,429.72604 C 27.43988,429.52292 27.182067,429.353 26.822698,429.21628 C 26.592224,429.12644 26.082459,428.98777 25.293401,428.80026 C 24.504336,428.60886 23.951602,428.42917 23.635198,428.2612 C 23.22504,428.04636 22.9184,427.78074 22.715276,427.46432 C 22.516057,427.14402 22.416447,426.7866 22.416448,426.39206 C 22.416447,425.95847 22.539494,425.55418 22.785589,425.17917 C 23.031681,424.80027 23.391056,424.51316 23.863714,424.31784 C 24.336367,424.12254 24.861757,424.02488 25.439886,424.02487 C 26.0766,424.02488 26.637146,424.1284 27.121526,424.33542 C 27.609801,424.53855 27.984801,424.83933 28.246526,425.23776 C 28.508238,425.63621 28.648863,426.08738 28.668401,426.59128 L 27.578557,426.67331 C 27.519958,426.13035 27.320739,425.72019 26.980901,425.44284 C 26.644959,425.1655 26.146912,425.02683 25.486761,425.02682 C 24.799257,425.02683 24.297305,425.15379 23.980901,425.40768 C 23.668399,425.65769 23.512149,425.96043 23.512151,426.31589 C 23.512149,426.62449 23.623477,426.87839 23.846136,427.07761 C 24.064883,427.27683 24.635195,427.48191 25.557073,427.69284 C 26.482849,427.89988 27.117614,428.08152 27.46137,428.23776 C 27.961364,428.46824 28.330504,428.7612 28.568792,429.11667 C 28.807066,429.46823 28.926206,429.87448 28.926214,430.33542 C 28.926206,430.79245 28.795347,431.22409 28.533636,431.63034 C 28.27191,432.03269 27.894957,432.34714 27.402776,432.5737 C 26.91449,432.79636 26.363709,432.90768 25.750432,432.90768 C 24.973085,432.90768 24.320742,432.7944 23.793401,432.56784 C 23.269962,432.34128 22.857853,432.00144 22.557073,431.54831 C 22.260197,431.09128 22.103948,430.57566 22.088323,430.00143"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11418"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 63.467692,427.73972 L 63.467692,426.53854 L 64.668864,426.53854 L 64.668864,427.73972 L 63.467692,427.73972 M 63.467692,432.7612 L 63.467692,431.56003 L 64.668864,431.56003 L 64.668864,432.7612 L 63.467692,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11420"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer77"
|
||||
inkscape:label="system-text"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="system-frame-type"
|
||||
transform="matrix(1.0095471,0,0,1.0095471,31.242303,-4.7783031)">
|
||||
<path
|
||||
d="M 105.00043,296.84128 C 105.52777,297.20456 106.0141,297.47018 106.45942,297.63815 L 106.12543,298.42917 C 105.50824,298.20651 104.893,297.85495 104.27973,297.37448 C 103.64301,297.72995 102.93988,297.90768 102.17035,297.90768 C 101.39301,297.90768 100.68793,297.72018 100.05512,297.34518 C 99.422306,296.97019 98.934025,296.44284 98.590276,295.76315 C 98.250432,295.08347 98.08051,294.31784 98.080511,293.46628 C 98.08051,292.61863 98.252385,291.84714 98.596136,291.15182 C 98.939884,290.45652 99.428165,289.92722 100.06098,289.56393 C 100.69769,289.20066 101.40863,289.01902 102.19379,289.01901 C 102.98676,289.01902 103.7016,289.20847 104.33832,289.58737 C 104.97503,289.96238 105.45941,290.48972 105.79145,291.1694 C 106.12738,291.84519 106.29535,292.60886 106.29535,293.46042 C 106.29535,294.16745 106.18792,294.80417 105.97309,295.37057 C 105.75824,295.93308 105.43402,296.42331 105.00043,296.84128 M 102.49848,295.38815 C 103.15472,295.57175 103.69574,295.84519 104.12153,296.20847 C 104.78949,295.59909 105.12347,294.68308 105.12348,293.46042 C 105.12347,292.76511 105.00433,292.15769 104.76606,291.63815 C 104.53168,291.11863 104.18597,290.71629 103.72895,290.43112 C 103.27582,290.14207 102.76605,289.99754 102.19965,289.99753 C 101.35199,289.99754 100.64887,290.28855 100.09028,290.87057 C 99.531681,291.44871 99.252384,292.31394 99.252386,293.46628 C 99.252384,294.58347 99.527774,295.44089 100.07856,296.03854 C 100.63324,296.6362 101.34027,296.93503 102.19965,296.93503 C 102.6059,296.93503 102.98871,296.85886 103.34809,296.70651 C 102.99262,296.47604 102.61762,296.31198 102.22309,296.21432 L 102.49848,295.38815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11288"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 111.76215,297.7612 L 111.76215,296.84714 C 111.27777,297.55026 110.61957,297.90182 109.78754,297.90182 C 109.42035,297.90182 109.0766,297.83151 108.75629,297.69089 C 108.43988,297.55026 108.20356,297.37448 108.04731,297.16354 C 107.89496,296.9487 107.78754,296.68698 107.72504,296.37839 C 107.68207,296.17136 107.66059,295.84323 107.66059,295.39401 L 107.66059,291.53854 L 108.71528,291.53854 L 108.71528,294.98972 C 108.71527,295.5405 108.73676,295.91159 108.77973,296.103 C 108.84613,296.38034 108.98676,296.59909 109.2016,296.75925 C 109.41645,296.9155 109.68207,296.99362 109.99848,296.99362 C 110.31488,296.99362 110.61176,296.91354 110.8891,296.75339 C 111.16644,296.58933 111.36176,296.36862 111.47504,296.09128 C 111.59223,295.81003 111.65082,295.40378 111.65082,294.87253 L 111.65082,291.53854 L 112.70551,291.53854 L 112.70551,297.7612 L 111.76215,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11290"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 118.42426,296.99362 C 118.03363,297.32565 117.65668,297.56003 117.2934,297.69675 C 116.93402,297.83347 116.5473,297.90182 116.13325,297.90182 C 115.44965,297.90182 114.92426,297.73581 114.55707,297.40378 C 114.18989,297.06784 114.00629,296.64011 114.00629,296.12057 C 114.00629,295.81589 114.07465,295.53855 114.21137,295.28854 C 114.35199,295.03464 114.53364,294.83152 114.75629,294.67917 C 114.98285,294.52683 115.23676,294.41159 115.51801,294.33347 C 115.72504,294.27878 116.03754,294.22605 116.45551,294.17526 C 117.30707,294.0737 117.93402,293.95261 118.33637,293.81198 C 118.34027,293.66745 118.34223,293.57566 118.34223,293.53659 C 118.34223,293.10691 118.24262,292.80417 118.0434,292.62839 C 117.77387,292.39011 117.37348,292.27097 116.84223,292.27097 C 116.34613,292.27097 115.97895,292.35886 115.74067,292.53464 C 115.50629,292.70652 115.33246,293.01316 115.21918,293.45456 L 114.18793,293.31393 C 114.28168,292.87253 114.43598,292.51706 114.65082,292.24753 C 114.86567,291.9741 115.17621,291.76511 115.58246,291.62057 C 115.98871,291.47214 116.45941,291.39793 116.99457,291.39792 C 117.52582,291.39793 117.95746,291.46043 118.2895,291.58542 C 118.62152,291.71042 118.86566,291.86863 119.02192,292.06003 C 119.17816,292.24753 119.28754,292.48581 119.35004,292.77487 C 119.38519,292.95456 119.40277,293.27878 119.40278,293.74753 L 119.40278,295.15378 C 119.40277,296.13425 119.42426,296.75534 119.46723,297.01706 C 119.5141,297.27487 119.60394,297.52292 119.73676,297.7612 L 118.6352,297.7612 C 118.52582,297.54245 118.45551,297.28659 118.42426,296.99362 M 118.33637,294.63815 C 117.95355,294.79441 117.37933,294.92722 116.61371,295.03659 C 116.18012,295.09909 115.87348,295.16941 115.69379,295.24753 C 115.5141,295.32566 115.37543,295.44089 115.27778,295.59323 C 115.18012,295.74167 115.13129,295.90769 115.13129,296.09128 C 115.13129,296.37253 115.23676,296.6069 115.4477,296.7944 C 115.66254,296.9819 115.97504,297.07565 116.3852,297.07565 C 116.79144,297.07565 117.15277,296.98776 117.46918,296.81198 C 117.78558,296.63229 118.01801,296.38815 118.16645,296.07956 C 118.27973,295.84128 118.33637,295.48972 118.33637,295.02487 L 118.33637,294.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11292"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 125.08051,297.7612 L 125.08051,296.97604 C 124.68598,297.59323 124.1059,297.90182 123.34028,297.90182 C 122.84418,297.90182 122.38715,297.76511 121.96918,297.49167 C 121.55512,297.21823 121.23285,296.83737 121.00239,296.34909 C 120.77582,295.8569 120.66254,295.29245 120.66254,294.65573 C 120.66254,294.03464 120.76606,293.47214 120.97309,292.96823 C 121.18012,292.46042 121.49067,292.07175 121.90473,291.80222 C 122.31879,291.53269 122.78168,291.39793 123.2934,291.39792 C 123.6684,291.39793 124.00238,291.478 124.29535,291.63815 C 124.58832,291.79441 124.8266,291.99949 125.0102,292.25339 L 125.0102,289.17136 L 126.05903,289.17136 L 126.05903,297.7612 L 125.08051,297.7612 M 121.74653,294.65573 C 121.74653,295.45261 121.91449,296.04831 122.25043,296.44284 C 122.58637,296.83737 122.98285,297.03464 123.43989,297.03464 C 123.90082,297.03464 124.29144,296.84714 124.61176,296.47214 C 124.93598,296.09323 125.09808,295.51706 125.09809,294.74362 C 125.09808,293.89206 124.93402,293.26706 124.6059,292.86862 C 124.27777,292.47019 123.87348,292.27097 123.39301,292.27097 C 122.92426,292.27097 122.53168,292.46238 122.21528,292.84518 C 121.90278,293.228 121.74653,293.83152 121.74653,294.65573"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11294"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 126.98481,297.7612 L 130.30707,293.28464 L 127.37739,289.17136 L 128.7309,289.17136 L 130.2895,291.37448 C 130.61371,291.83152 130.84418,292.18308 130.9809,292.42917 C 131.1723,292.11667 131.39887,291.7905 131.66059,291.45065 L 133.3891,289.17136 L 134.62543,289.17136 L 131.60785,293.22018 L 134.85981,297.7612 L 133.45356,297.7612 L 131.29145,294.69675 C 131.17035,294.52097 131.04535,294.32956 130.91645,294.12253 C 130.72504,294.43503 130.58832,294.64987 130.50629,294.76706 L 128.35004,297.7612 L 126.98481,297.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11296"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-cpu-load-temp"
|
||||
transform="matrix(1.049406,0,0,1.049406,11.986624,-17.045522)">
|
||||
<path
|
||||
d="M 94.144964,306.27487 L 93.096136,306.3569 C 93.002381,305.94285 92.869568,305.64207 92.697698,305.45456 C 92.412538,305.15379 92.060975,305.0034 91.643011,305.00339 C 91.30707,305.0034 91.012148,305.09715 90.758245,305.28464 C 90.426211,305.52683 90.164493,305.88035 89.973089,306.34518 C 89.781681,306.81003 89.682072,307.47214 89.674261,308.33151 C 89.928165,307.9448 90.238712,307.65769 90.605901,307.47018 C 90.973086,307.28269 91.357851,307.18894 91.760198,307.18893 C 92.463319,307.18894 93.060974,307.44871 93.553167,307.96823 C 94.049255,308.48386 94.297301,309.15183 94.297307,309.97214 C 94.297301,310.5112 94.180114,311.01315 93.945745,311.478 C 93.715271,311.93894 93.396912,312.29245 92.990667,312.53854 C 92.584412,312.78464 92.123475,312.90768 91.607854,312.90768 C 90.728946,312.90768 90.012149,312.58542 89.457464,311.94089 C 88.902776,311.29245 88.625432,310.22605 88.625432,308.74167 C 88.625432,307.08152 88.932072,305.87449 89.545354,305.12057 C 90.080509,304.46433 90.801211,304.13621 91.707464,304.1362 C 92.383241,304.13621 92.935975,304.32566 93.365667,304.70456 C 93.799255,305.08347 94.05902,305.60691 94.144964,306.27487 M 89.838323,309.978 C 89.838321,310.34128 89.914493,310.68894 90.066839,311.02097 C 90.223087,311.353 90.439883,311.6069 90.717229,311.78268 C 90.99457,311.95456 91.285586,312.0405 91.590276,312.0405 C 92.035585,312.0405 92.418397,311.86081 92.738714,311.50143 C 93.059021,311.14206 93.219177,310.65378 93.219182,310.03659 C 93.219177,309.44284 93.060974,308.97605 92.744573,308.6362 C 92.428163,308.29245 92.029726,308.12058 91.549261,308.12057 C 91.072695,308.12058 90.668399,308.29245 90.33637,308.6362 C 90.004337,308.97605 89.838321,309.42331 89.838323,309.978"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11306"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 95.351995,308.52487 C 95.351994,307.50925 95.45551,306.69285 95.662542,306.07565 C 95.873478,305.45457 96.184025,304.97605 96.594182,304.64011 C 97.008243,304.30418 97.527774,304.13621 98.152776,304.1362 C 98.61371,304.13621 99.018006,304.22996 99.365667,304.41745 C 99.713318,304.60105 100.00043,304.86863 100.227,305.22018 C 100.45355,305.56785 100.63129,305.99363 100.7602,306.49753 C 100.8891,306.99753 100.95355,307.67331 100.95356,308.52487 C 100.95355,309.53269 100.85004,310.34714 100.64301,310.96823 C 100.43597,311.58542 100.12543,312.06394 99.71137,312.40378 C 99.301209,312.73972 98.781679,312.90768 98.152776,312.90768 C 97.324649,312.90768 96.674259,312.61081 96.201604,312.01706 C 95.635197,311.30222 95.351994,310.13816 95.351995,308.52487 M 96.435979,308.52487 C 96.435978,309.93503 96.60004,310.87448 96.928167,311.34323 C 97.260196,311.80808 97.668398,312.0405 98.152776,312.0405 C 98.637147,312.0405 99.043397,311.80612 99.371526,311.33737 C 99.703553,310.86862 99.869568,309.93112 99.869573,308.52487 C 99.869568,307.11081 99.703553,306.17136 99.371526,305.70651 C 99.043397,305.24168 98.633241,305.00925 98.141057,305.00925 C 97.65668,305.00925 97.269961,305.21433 96.980901,305.62448 C 96.617618,306.14793 96.435978,307.11472 96.435979,308.52487"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11308"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 102.2309,306.23386 C 102.2309,305.62058 102.3852,305.0991 102.69379,304.6694 C 103.00238,304.23972 103.44965,304.02488 104.03559,304.02487 C 104.57465,304.02488 105.01996,304.21824 105.37153,304.60495 C 105.72699,304.98777 105.90473,305.55222 105.90473,306.29831 C 105.90473,307.02488 105.72504,307.58542 105.36567,307.97995 C 105.01019,308.37058 104.57074,308.56589 104.04731,308.56589 C 103.52777,308.56589 103.09418,308.37253 102.74653,307.98581 C 102.40278,307.5991 102.2309,307.01511 102.2309,306.23386 M 104.06489,304.75143 C 103.80317,304.75144 103.58442,304.86472 103.40864,305.09128 C 103.23676,305.31785 103.15082,305.73386 103.15082,306.33932 C 103.15082,306.89011 103.23871,307.27878 103.4145,307.50534 C 103.59027,307.728 103.80707,307.83933 104.06489,307.83932 C 104.33051,307.83933 104.54926,307.72605 104.72114,307.49948 C 104.89691,307.27292 104.9848,306.85886 104.98481,306.25729 C 104.9848,305.70261 104.89691,305.31394 104.72114,305.09128 C 104.54535,304.86472 104.3266,304.75144 104.06489,304.75143 M 104.07075,313.07761 L 108.76996,304.02487 L 109.62543,304.02487 L 104.94379,313.07761 L 104.07075,313.07761 M 107.78559,310.74557 C 107.78558,310.12839 107.93988,309.60691 108.24848,309.18112 C 108.55707,308.75144 109.00628,308.53659 109.59614,308.53659 C 110.13519,308.53659 110.5805,308.72995 110.93207,309.11667 C 111.28753,309.49948 111.46527,310.06394 111.46528,310.81003 C 111.46527,311.53659 111.28558,312.09714 110.92621,312.49167 C 110.57074,312.88229 110.12933,313.07761 109.602,313.07761 C 109.08246,313.07761 108.64886,312.88425 108.30121,312.49753 C 107.95746,312.1069 107.78558,311.52292 107.78559,310.74557 M 109.62543,309.26315 C 109.3598,309.26316 109.1391,309.37644 108.96332,309.603 C 108.79144,309.82956 108.7055,310.24558 108.70551,310.85104 C 108.7055,311.39792 108.79339,311.78464 108.96918,312.0112 C 109.14496,312.23776 109.36175,312.35104 109.61957,312.35104 C 109.8891,312.35104 110.1098,312.23776 110.28168,312.0112 C 110.45745,311.78464 110.54534,311.37058 110.54535,310.76901 C 110.54534,310.21433 110.45745,309.82566 110.28168,309.603 C 110.10589,309.37644 109.88714,309.26316 109.62543,309.26315"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11310"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 115.90668,310.18307 L 115.90668,309.12253 L 119.14692,309.12253 L 119.14692,310.18307 L 115.90668,310.18307"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11312"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 123.35981,310.5112 L 124.46723,310.41745 C 124.54926,310.95651 124.73871,311.36276 125.03559,311.6362 C 125.33637,311.90573 125.6977,312.0405 126.11957,312.0405 C 126.62738,312.0405 127.05707,311.84909 127.40864,311.46628 C 127.76019,311.08347 127.93597,310.57566 127.93598,309.94284 C 127.93597,309.34128 127.76605,308.86667 127.42621,308.51901 C 127.09027,308.17136 126.64887,307.99753 126.10199,307.99753 C 125.76215,307.99753 125.45551,308.07566 125.18207,308.2319 C 124.90863,308.38425 124.69379,308.58347 124.53754,308.82956 L 123.54731,308.70065 L 124.37934,304.28854 L 128.65082,304.28854 L 128.65082,305.29636 L 125.22309,305.29636 L 124.7602,307.60495 C 125.27582,307.24558 125.81684,307.06589 126.38324,307.06589 C 127.13324,307.06589 127.76605,307.32566 128.28168,307.84518 C 128.7973,308.36472 129.05511,309.03269 129.05512,309.84909 C 129.05511,310.62644 128.82855,311.29831 128.37543,311.86472 C 127.82465,312.56003 127.07269,312.90768 126.11957,312.90768 C 125.33832,312.90768 124.69965,312.68893 124.20356,312.25143 C 123.71137,311.81394 123.43012,311.23386 123.35981,310.5112"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11314"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 130.03949,308.52487 C 130.03949,307.50925 130.14301,306.69285 130.35004,306.07565 C 130.56098,305.45457 130.87152,304.97605 131.28168,304.64011 C 131.69574,304.30418 132.21527,304.13621 132.84028,304.1362 C 133.30121,304.13621 133.70551,304.22996 134.05317,304.41745 C 134.40082,304.60105 134.68793,304.86863 134.91449,305.22018 C 135.14105,305.56785 135.31879,305.99363 135.4477,306.49753 C 135.5766,306.99753 135.64105,307.67331 135.64106,308.52487 C 135.64105,309.53269 135.53754,310.34714 135.33051,310.96823 C 135.12347,311.58542 134.81293,312.06394 134.39887,312.40378 C 133.98871,312.73972 133.46918,312.90768 132.84028,312.90768 C 132.01215,312.90768 131.36176,312.61081 130.8891,312.01706 C 130.3227,311.30222 130.03949,310.13816 130.03949,308.52487 M 131.12348,308.52487 C 131.12348,309.93503 131.28754,310.87448 131.61567,311.34323 C 131.9477,311.80808 132.3559,312.0405 132.84028,312.0405 C 133.32465,312.0405 133.7309,311.80612 134.05903,311.33737 C 134.39105,310.86862 134.55707,309.93112 134.55707,308.52487 C 134.55707,307.11081 134.39105,306.17136 134.05903,305.70651 C 133.7309,305.24168 133.32074,305.00925 132.82856,305.00925 C 132.34418,305.00925 131.95746,305.21433 131.6684,305.62448 C 131.30512,306.14793 131.12348,307.11472 131.12348,308.52487"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11316"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 136.97114,305.64792 C 136.97113,305.19871 137.12934,304.8159 137.44574,304.49948 C 137.76606,304.18308 138.14887,304.02488 138.59418,304.02487 C 139.0473,304.02488 139.43207,304.18308 139.74848,304.49948 C 140.06488,304.8159 140.22308,305.19871 140.22309,305.64792 C 140.22308,306.09714 140.06293,306.48191 139.74262,306.80222 C 139.42621,307.11863 139.0434,307.27683 138.59418,307.27682 C 138.14887,307.27683 137.76606,307.11863 137.44574,306.80222 C 137.12934,306.48582 136.97113,306.10105 136.97114,305.64792 M 137.60981,305.64792 C 137.60981,305.92136 137.70551,306.15574 137.89692,306.35104 C 138.09223,306.54246 138.3266,306.63816 138.60004,306.63815 C 138.86957,306.63816 139.10004,306.54246 139.29145,306.35104 C 139.48676,306.15574 139.58441,305.92136 139.58442,305.64792 C 139.58441,305.37449 139.48676,305.14207 139.29145,304.95065 C 139.10004,304.75535 138.86957,304.65769 138.60004,304.65768 C 138.3266,304.65769 138.09223,304.75535 137.89692,304.95065 C 137.70551,305.14207 137.60981,305.37449 137.60981,305.64792"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11318"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 148.08051,309.74948 L 149.21723,310.03659 C 148.97894,310.97019 148.54925,311.68308 147.92817,312.17526 C 147.31097,312.66354 146.55511,312.90768 145.66059,312.90768 C 144.7348,312.90768 143.9809,312.72018 143.39887,312.34518 C 142.82074,311.96628 142.37934,311.4194 142.07465,310.70456 C 141.77387,309.98972 141.62348,309.22214 141.62348,308.40182 C 141.62348,307.5073 141.7934,306.728 142.13324,306.06393 C 142.47699,305.39597 142.96332,304.89011 143.59223,304.54636 C 144.22504,304.19871 144.92035,304.02488 145.67817,304.02487 C 146.53754,304.02488 147.26019,304.24363 147.84614,304.68112 C 148.43207,305.11863 148.84027,305.73386 149.07074,306.52682 L 147.9516,306.7905 C 147.75238,306.1655 147.46332,305.71043 147.08442,305.42526 C 146.7055,305.14011 146.22894,304.99754 145.65473,304.99753 C 144.99457,304.99754 144.44184,305.15574 143.99653,305.47214 C 143.55512,305.78855 143.24457,306.21433 143.06489,306.74948 C 142.8852,307.28074 142.79535,307.82956 142.79535,308.39597 C 142.79535,309.12644 142.90082,309.76511 143.11176,310.31198 C 143.3266,310.85495 143.65863,311.2612 144.10785,311.53073 C 144.55707,311.80026 145.0434,311.93503 145.56684,311.93503 C 146.20355,311.93503 146.74261,311.75144 147.18403,311.38425 C 147.62543,311.01706 147.92425,310.47214 148.08051,309.74948"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11320"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-mem-free"
|
||||
transform="matrix(1.0830555,0,0,1.0830555,30.37392,-28.642216)">
|
||||
<path
|
||||
d="M 106.08246,327.7612 L 105.02778,327.7612 L 105.02778,321.0405 C 104.77387,321.28269 104.43988,321.52488 104.02582,321.76706 C 103.61567,322.00925 103.24653,322.19089 102.9184,322.31198 L 102.9184,321.29245 C 103.50824,321.01511 104.02387,320.67918 104.46528,320.28464 C 104.90668,319.89011 105.21918,319.5073 105.40278,319.1362 L 106.08246,319.1362 L 106.08246,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11338"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 112.17035,327.7612 L 112.17035,325.70456 L 108.44379,325.70456 L 108.44379,324.73776 L 112.36371,319.17136 L 113.22504,319.17136 L 113.22504,324.73776 L 114.3852,324.73776 L 114.3852,325.70456 L 113.22504,325.70456 L 113.22504,327.7612 L 112.17035,327.7612 M 112.17035,324.73776 L 112.17035,320.86472 L 109.4809,324.73776 L 112.17035,324.73776"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11340"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 115.46918,323.52487 C 115.46918,322.50925 115.5727,321.69285 115.77973,321.07565 C 115.99067,320.45457 116.30121,319.97605 116.71137,319.64011 C 117.12543,319.30418 117.64496,319.13621 118.26996,319.1362 C 118.7309,319.13621 119.13519,319.22996 119.48285,319.41745 C 119.83051,319.60105 120.11762,319.86863 120.34418,320.22018 C 120.57074,320.56785 120.74847,320.99363 120.87739,321.49753 C 121.00629,321.99753 121.07074,322.67331 121.07075,323.52487 C 121.07074,324.53269 120.96722,325.34714 120.7602,325.96823 C 120.55316,326.58542 120.24262,327.06394 119.82856,327.40378 C 119.4184,327.73972 118.89887,327.90768 118.26996,327.90768 C 117.44184,327.90768 116.79145,327.61081 116.31879,327.01706 C 115.75239,326.30222 115.46918,325.13816 115.46918,323.52487 M 116.55317,323.52487 C 116.55317,324.93503 116.71723,325.87448 117.04535,326.34323 C 117.37738,326.80808 117.78559,327.0405 118.26996,327.0405 C 118.75433,327.0405 119.16058,326.80612 119.48871,326.33737 C 119.82074,325.86862 119.98676,324.93112 119.98676,323.52487 C 119.98676,322.11081 119.82074,321.17136 119.48871,320.70651 C 119.16058,320.24168 118.75043,320.00925 118.25825,320.00925 C 117.77387,320.00925 117.38715,320.21433 117.09809,320.62448 C 116.73481,321.14793 116.55317,322.11472 116.55317,323.52487"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11342"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 122.4477,327.7612 L 122.4477,319.17136 L 123.50239,319.17136 L 123.50239,324.06979 L 125.99848,321.53854 L 127.36371,321.53854 L 124.98481,323.84714 L 127.60395,327.7612 L 126.30317,327.7612 L 124.24653,324.57956 L 123.50239,325.2944 L 123.50239,327.7612 L 122.4477,327.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11344"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-attitude-estimation-algo"
|
||||
transform="matrix(1.0257274,0,0,1.0257274,0.13365182,-65.562105)">
|
||||
<path
|
||||
d="M 79.307073,399.74948 L 80.443792,400.03659 C 80.205503,400.97019 79.775816,401.68308 79.154729,402.17526 C 78.537536,402.66354 77.781677,402.90768 76.887151,402.90768 C 75.961366,402.90768 75.207461,402.72018 74.625432,402.34518 C 74.047306,401.96628 73.6059,401.4194 73.301214,400.70456 C 73.000432,399.98972 72.850041,399.22214 72.850042,398.40182 C 72.850041,397.5073 73.019963,396.728 73.359807,396.06393 C 73.703556,395.39597 74.189884,394.89011 74.818792,394.54636 C 75.451601,394.19871 76.146913,394.02488 76.904729,394.02487 C 77.764099,394.02488 78.486754,394.24363 79.072698,394.68112 C 79.658628,395.11863 80.066831,395.73386 80.297307,396.52682 L 79.178167,396.7905 C 78.978941,396.1655 78.689879,395.71043 78.310979,395.42526 C 77.932067,395.14011 77.455505,394.99754 76.881292,394.99753 C 76.221132,394.99754 75.668398,395.15574 75.223089,395.47214 C 74.78168,395.78855 74.471133,396.21433 74.291448,396.74948 C 74.111759,397.28074 74.021915,397.82956 74.021917,398.39597 C 74.021915,399.12644 74.127384,399.76511 74.338323,400.31198 C 74.553165,400.85495 74.885195,401.2612 75.334417,401.53073 C 75.783632,401.80026 76.26996,401.93503 76.793401,401.93503 C 77.430115,401.93503 77.969177,401.75144 78.410589,401.38425 C 78.851988,401.01706 79.150816,400.47214 79.307073,399.74948"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11368"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 81.322698,399.64987 C 81.322698,398.49753 81.64301,397.64402 82.283636,397.08932 C 82.81879,396.62839 83.471133,396.39793 84.240667,396.39792 C 85.096131,396.39793 85.795349,396.67917 86.338323,397.24167 C 86.881286,397.80027 87.15277,398.5737 87.152776,399.56198 C 87.15277,400.36276 87.031676,400.99362 86.789495,401.45456 C 86.551208,401.91159 86.201599,402.26706 85.740667,402.52097 C 85.283631,402.77487 84.783632,402.90182 84.240667,402.90182 C 83.369571,402.90182 82.664493,402.62253 82.125432,402.06393 C 81.590276,401.50534 81.322698,400.70066 81.322698,399.64987 M 82.406682,399.64987 C 82.406681,400.44675 82.580509,401.0444 82.928167,401.44284 C 83.275821,401.83737 83.71332,402.03464 84.240667,402.03464 C 84.764101,402.03464 85.199647,401.83542 85.547307,401.43698 C 85.894959,401.03855 86.068787,400.43112 86.068792,399.61472 C 86.068787,398.84519 85.893006,398.26316 85.541448,397.86862 C 85.193788,397.47019 84.760194,397.27097 84.240667,397.27097 C 83.71332,397.27097 83.275821,397.46824 82.928167,397.86276 C 82.580509,398.2573 82.406681,398.853 82.406682,399.64987"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11370"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 88.394964,402.7612 L 88.394964,396.53854 L 89.338323,396.53854 L 89.338323,397.41159 C 89.533634,397.10691 89.793399,396.86277 90.11762,396.67917 C 90.441836,396.49167 90.810976,396.39793 91.225042,396.39792 C 91.685975,396.39793 92.062928,396.49363 92.355901,396.68503 C 92.652771,396.87644 92.861755,397.14402 92.982854,397.48776 C 93.475036,396.76121 94.11566,396.39793 94.904729,396.39792 C 95.521909,396.39793 95.996518,396.5698 96.328557,396.91354 C 96.66058,397.25339 96.826595,397.77878 96.826604,398.48972 L 96.826604,402.7612 L 95.777776,402.7612 L 95.777776,398.84128 C 95.777768,398.41941 95.742612,398.11667 95.672307,397.93307 C 95.605893,397.74558 95.482846,397.59519 95.303167,397.4819 C 95.123472,397.36863 94.912535,397.31199 94.670354,397.31198 C 94.232848,397.31199 93.869567,397.45847 93.580511,397.75143 C 93.291442,398.0405 93.146911,398.50534 93.146917,399.14597 L 93.146917,402.7612 L 92.092229,402.7612 L 92.092229,398.71823 C 92.092225,398.24949 92.006287,397.89792 91.834417,397.66354 C 91.662538,397.42917 91.381288,397.31199 90.990667,397.31198 C 90.693789,397.31199 90.418398,397.39011 90.164495,397.54636 C 89.914493,397.70261 89.732852,397.93113 89.619573,398.2319 C 89.50629,398.53269 89.449649,398.96628 89.449651,399.53268 L 89.449651,402.7612 L 88.394964,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11372"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 98.426214,403.14597 L 98.426214,394.53854 L 99.387151,394.53854 L 99.387151,395.34714 C 99.613712,395.03074 99.869571,394.79441 100.15473,394.63815 C 100.43988,394.478 100.78559,394.39793 101.19184,394.39792 C 101.72308,394.39793 102.19183,394.53464 102.59809,394.80807 C 103.00433,395.08152 103.31097,395.46824 103.51801,395.96823 C 103.72504,396.46433 103.82855,397.00925 103.82856,397.603 C 103.82855,398.23972 103.71332,398.81394 103.48285,399.32565 C 103.25629,399.83347 102.92426,400.22409 102.48676,400.49753 C 102.05316,400.76706 101.59613,400.90182 101.11567,400.90182 C 100.7641,400.90182 100.44769,400.82761 100.16645,400.67917 C 99.889102,400.53073 99.660587,400.34323 99.480901,400.11667 L 99.480901,403.14597 L 98.426214,403.14597 M 99.381292,397.68503 C 99.38129,398.48581 99.543399,399.07761 99.86762,399.46042 C 100.19184,399.84323 100.58441,400.03464 101.04535,400.03464 C 101.5141,400.03464 101.91449,399.83737 102.24653,399.44284 C 102.58246,399.0444 102.75043,398.42917 102.75043,397.59714 C 102.75043,396.80417 102.58637,396.21042 102.25824,395.81589 C 101.93402,395.42136 101.54535,395.2241 101.09223,395.22409 C 100.64301,395.2241 100.24457,395.43503 99.896917,395.8569 C 99.553165,396.27488 99.38129,396.88425 99.381292,397.68503"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11374"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 107.32074,401.37253 L 107.32074,399.01706 L 104.98285,399.01706 L 104.98285,398.03268 L 107.32074,398.03268 L 107.32074,395.69479 L 108.31684,395.69479 L 108.31684,398.03268 L 110.65473,398.03268 L 110.65473,399.01706 L 108.31684,399.01706 L 108.31684,401.37253 L 107.32074,401.37253"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11376"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 112.21332,402.7612 L 112.21332,394.17136 L 113.92426,394.17136 L 115.95746,400.25339 C 116.14496,400.8198 116.28168,401.24362 116.36762,401.52487 C 116.46527,401.21237 116.61761,400.75339 116.82465,400.14792 L 118.88129,394.17136 L 120.41059,394.17136 L 120.41059,402.7612 L 119.31489,402.7612 L 119.31489,395.57175 L 116.81879,402.7612 L 115.7934,402.7612 L 113.30903,395.4487 L 113.30903,402.7612 L 112.21332,402.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11378"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 126.18207,401.99362 C 125.79144,402.32565 125.41449,402.56003 125.05121,402.69675 C 124.69184,402.83347 124.30512,402.90182 123.89106,402.90182 C 123.20746,402.90182 122.68207,402.73581 122.31489,402.40378 C 121.9477,402.06784 121.7641,401.64011 121.7641,401.12057 C 121.7641,400.81589 121.83246,400.53855 121.96918,400.28854 C 122.10981,400.03464 122.29145,399.83152 122.5141,399.67917 C 122.74067,399.52683 122.99457,399.41159 123.27582,399.33347 C 123.48285,399.27878 123.79535,399.22605 124.21332,399.17526 C 125.06488,399.0737 125.69183,398.95261 126.09418,398.81198 C 126.09808,398.66745 126.10004,398.57566 126.10004,398.53659 C 126.10004,398.10691 126.00043,397.80417 125.80121,397.62839 C 125.53168,397.39011 125.13129,397.27097 124.60004,397.27097 C 124.10395,397.27097 123.73676,397.35886 123.49848,397.53464 C 123.2641,397.70652 123.09027,398.01316 122.97699,398.45456 L 121.94574,398.31393 C 122.03949,397.87253 122.19379,397.51706 122.40864,397.24753 C 122.62348,396.9741 122.93402,396.76511 123.34028,396.62057 C 123.74652,396.47214 124.21723,396.39793 124.75239,396.39792 C 125.28363,396.39793 125.71527,396.46043 126.04731,396.58542 C 126.37933,396.71042 126.62347,396.86863 126.77973,397.06003 C 126.93597,397.24753 127.04535,397.48581 127.10785,397.77487 C 127.143,397.95456 127.16058,398.27878 127.16059,398.74753 L 127.16059,400.15378 C 127.16058,401.13425 127.18207,401.75534 127.22504,402.01706 C 127.27191,402.27487 127.36175,402.52292 127.49457,402.7612 L 126.39301,402.7612 C 126.28363,402.54245 126.21332,402.28659 126.18207,401.99362 M 126.09418,399.63815 C 125.71137,399.79441 125.13715,399.92722 124.37153,400.03659 C 123.93793,400.09909 123.63129,400.16941 123.4516,400.24753 C 123.27191,400.32566 123.13324,400.44089 123.03559,400.59323 C 122.93793,400.74167 122.8891,400.90769 122.8891,401.09128 C 122.8891,401.37253 122.99457,401.6069 123.20551,401.7944 C 123.42035,401.9819 123.73285,402.07565 124.14301,402.07565 C 124.54926,402.07565 124.91059,401.98776 125.22699,401.81198 C 125.5434,401.63229 125.77582,401.38815 125.92426,401.07956 C 126.03754,400.84128 126.09418,400.48972 126.09418,400.02487 L 126.09418,399.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11380"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 128.60785,401.27682 L 129.63324,401.42917 C 129.67621,401.74557 129.79535,401.97604 129.99067,402.12057 C 130.25238,402.31589 130.6098,402.41354 131.06293,402.41354 C 131.55121,402.41354 131.92816,402.31589 132.19379,402.12057 C 132.45941,401.92526 132.6391,401.65182 132.73285,401.30026 C 132.78754,401.08542 132.81293,400.63425 132.80903,399.94675 C 132.34808,400.48972 131.77387,400.7612 131.08637,400.7612 C 130.2309,400.7612 129.56879,400.45261 129.10004,399.83542 C 128.63129,399.21823 128.39692,398.478 128.39692,397.61472 C 128.39692,397.02097 128.50434,396.47409 128.71918,395.97409 C 128.93403,395.47019 129.24457,395.08152 129.65082,394.80807 C 130.06098,394.53464 130.54145,394.39793 131.09223,394.39792 C 131.8266,394.39793 132.43207,394.6948 132.90864,395.28854 L 132.90864,394.53854 L 133.88129,394.53854 L 133.88129,399.91745 C 133.88129,400.8862 133.78168,401.57175 133.58246,401.97409 C 133.38715,402.38034 133.07465,402.70065 132.64496,402.93503 C 132.21918,403.1694 131.69379,403.28659 131.06879,403.28659 C 130.3266,403.28659 129.72699,403.11862 129.26996,402.78268 C 128.81293,402.45065 128.59223,401.9487 128.60785,401.27682 M 129.4809,397.53854 C 129.4809,398.35495 129.64301,398.95065 129.96723,399.32565 C 130.29145,399.70065 130.6977,399.88815 131.18598,399.88815 C 131.67035,399.88815 132.0766,399.70261 132.40473,399.33151 C 132.73285,398.95651 132.89691,398.37058 132.89692,397.5737 C 132.89691,396.81199 132.72699,396.23777 132.38715,395.85104 C 132.05121,395.46433 131.64496,395.27097 131.1684,395.27097 C 130.69965,395.27097 130.30121,395.46238 129.97309,395.84518 C 129.64496,396.2241 129.4809,396.78855 129.4809,397.53854"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11382"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 137.69574,401.37253 L 137.69574,399.01706 L 135.35785,399.01706 L 135.35785,398.03268 L 137.69574,398.03268 L 137.69574,395.69479 L 138.69184,395.69479 L 138.69184,398.03268 L 141.02973,398.03268 L 141.02973,399.01706 L 138.69184,399.01706 L 138.69184,401.37253 L 137.69574,401.37253"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11384"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 146.64301,399.39206 L 146.64301,398.38425 L 150.28168,398.37839 L 150.28168,401.56589 C 149.72308,402.0112 149.14691,402.34714 148.55317,402.5737 C 147.95941,402.79636 147.35004,402.90768 146.72504,402.90768 C 145.88129,402.90768 145.11371,402.728 144.42231,402.36862 C 143.73481,402.00534 143.21527,401.4819 142.86371,400.79831 C 142.51215,400.11472 142.33637,399.35105 142.33637,398.50729 C 142.33637,397.67136 142.5102,396.89207 142.85785,396.1694 C 143.20942,395.44285 143.71332,394.90379 144.36957,394.55222 C 145.02582,394.20066 145.78168,394.02488 146.63715,394.02487 C 147.25824,394.02488 147.81879,394.12644 148.31879,394.32956 C 148.82269,394.52879 149.21722,394.80808 149.50239,395.16745 C 149.78753,395.52683 150.00433,395.99558 150.15278,396.5737 L 149.12739,396.85495 C 148.99847,396.41746 148.83832,396.07371 148.64692,395.8237 C 148.4555,395.57371 148.18207,395.37449 147.8266,395.22604 C 147.47113,395.07371 147.0766,394.99754 146.64301,394.99753 C 146.12347,394.99754 145.67426,395.07761 145.29535,395.23776 C 144.91644,395.39402 144.6098,395.60105 144.37543,395.85886 C 144.14496,396.11668 143.96527,396.39988 143.83637,396.70847 C 143.61762,397.23972 143.50824,397.81589 143.50824,398.43698 C 143.50824,399.20261 143.6391,399.84323 143.90082,400.35886 C 144.16645,400.87448 144.55121,401.2573 145.05512,401.50729 C 145.55902,401.75729 146.09418,401.88229 146.66059,401.88229 C 147.15277,401.88229 147.63324,401.78854 148.10199,401.60104 C 148.57074,401.40964 148.92621,401.20651 149.1684,400.99167 L 149.1684,399.39206 L 146.64301,399.39206"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11386"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 151.81684,403.14597 L 151.81684,394.53854 L 152.77778,394.53854 L 152.77778,395.34714 C 153.00434,395.03074 153.2602,394.79441 153.54535,394.63815 C 153.83051,394.478 154.17621,394.39793 154.58246,394.39792 C 155.11371,394.39793 155.58246,394.53464 155.98871,394.80807 C 156.39496,395.08152 156.7016,395.46824 156.90864,395.96823 C 157.11566,396.46433 157.21918,397.00925 157.21918,397.603 C 157.21918,398.23972 157.10394,398.81394 156.87348,399.32565 C 156.64691,399.83347 156.31488,400.22409 155.87739,400.49753 C 155.44379,400.76706 154.98676,400.90182 154.50629,400.90182 C 154.15473,400.90182 153.83832,400.82761 153.55707,400.67917 C 153.27973,400.53073 153.05121,400.34323 152.87153,400.11667 L 152.87153,403.14597 L 151.81684,403.14597 M 152.77192,397.68503 C 152.77192,398.48581 152.93402,399.07761 153.25824,399.46042 C 153.58246,399.84323 153.97504,400.03464 154.43598,400.03464 C 154.90473,400.03464 155.30512,399.83737 155.63715,399.44284 C 155.97308,399.0444 156.14105,398.42917 156.14106,397.59714 C 156.14105,396.80417 155.97699,396.21042 155.64887,395.81589 C 155.32465,395.42136 154.93598,395.2241 154.48285,395.22409 C 154.03363,395.2241 153.6352,395.43503 153.28754,395.8569 C 152.94379,396.27488 152.77192,396.88425 152.77192,397.68503"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11388"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 158.07465,400.90378 L 159.11762,400.73972 C 159.17621,401.15769 159.33832,401.478 159.60395,401.70065 C 159.87348,401.92331 160.24848,402.03464 160.72895,402.03464 C 161.21332,402.03464 161.57269,401.93698 161.80707,401.74167 C 162.04144,401.54245 162.15863,401.31003 162.15864,401.0444 C 162.15863,400.80612 162.05512,400.61862 161.84809,400.4819 C 161.70355,400.38816 161.34418,400.26901 160.76996,400.12448 C 159.99652,399.92917 159.45942,399.7612 159.15864,399.62057 C 158.86176,399.47605 158.6352,399.27878 158.47895,399.02878 C 158.3266,398.77488 158.25043,398.49558 158.25043,398.19089 C 158.25043,397.91355 158.31293,397.65769 158.43793,397.42331 C 158.56684,397.18503 158.74067,396.98777 158.95942,396.83151 C 159.12348,396.71042 159.34613,396.60886 159.62739,396.52682 C 159.91254,396.44089 160.21723,396.39793 160.54145,396.39792 C 161.02973,396.39793 161.45746,396.46824 161.82465,396.60886 C 162.19574,396.74949 162.46918,396.94089 162.64496,397.18307 C 162.82074,397.42136 162.94183,397.74167 163.00824,398.14401 L 161.97699,398.28464 C 161.93012,397.96433 161.7934,397.71433 161.56684,397.53464 C 161.34418,397.35496 161.02777,397.26511 160.61762,397.26511 C 160.13324,397.26511 159.78754,397.34519 159.58051,397.50534 C 159.37348,397.6655 159.26996,397.853 159.26996,398.06784 C 159.26996,398.20456 159.31293,398.32761 159.39887,398.43698 C 159.48481,398.55027 159.61957,398.64402 159.80317,398.71823 C 159.90863,398.7573 160.21918,398.84714 160.73481,398.98776 C 161.4809,399.18698 162.00043,399.35105 162.2934,399.47995 C 162.59027,399.60495 162.82269,399.78855 162.99067,400.03073 C 163.15863,400.27292 163.24261,400.5737 163.24262,400.93307 C 163.24261,401.28464 163.1391,401.61667 162.93207,401.92917 C 162.72894,402.23776 162.43402,402.478 162.04731,402.64987 C 161.66058,402.81784 161.22309,402.90182 160.73481,402.90182 C 159.92621,402.90182 159.30902,402.73386 158.88324,402.39792 C 158.46137,402.06198 158.19184,401.56394 158.07465,400.90378"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11390"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-mag-used"
|
||||
transform="matrix(1.0687763,0,0,1.0687763,20.046913,-82.649824)">
|
||||
<path
|
||||
d="M 91.418401,413.57761 C 91.418401,412.15183 91.801213,411.0366 92.566839,410.2319 C 93.332461,409.42332 94.320742,409.01902 95.531682,409.01901 C 96.324646,409.01902 97.039489,409.20847 97.676214,409.58737 C 98.312925,409.96629 98.7973,410.49558 99.129339,411.17526 C 99.465268,411.85105 99.633236,412.61863 99.633245,413.478 C 99.633236,414.34909 99.457455,415.12839 99.105901,415.81589 C 98.754331,416.50339 98.256284,417.02487 97.611761,417.38034 C 96.967223,417.7319 96.271911,417.90768 95.525823,417.90768 C 94.717225,417.90768 93.99457,417.71237 93.357854,417.32175 C 92.721134,416.93112 92.238712,416.39792 91.910589,415.72214 C 91.582463,415.04636 91.418401,414.33152 91.418401,413.57761 M 92.590276,413.59518 C 92.590274,414.63034 92.867618,415.44675 93.422307,416.0444 C 93.980898,416.63815 94.680116,416.93503 95.519964,416.93503 C 96.375427,416.93503 97.078551,416.63425 97.629339,416.03268 C 98.184019,415.43112 98.461362,414.57761 98.46137,413.47214 C 98.461362,412.77292 98.342222,412.16355 98.103948,411.64401 C 97.869566,411.12058 97.523863,410.71629 97.066839,410.43112 C 96.613708,410.14207 96.103943,409.99754 95.537542,409.99753 C 94.73285,409.99754 94.039492,410.27488 93.457464,410.82956 C 92.879337,411.38035 92.590274,412.30222 92.590276,413.59518"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11400"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 100.95746,417.7612 L 100.95746,411.53854 L 101.90668,411.53854 L 101.90668,412.42331 C 102.36371,411.73972 103.02387,411.39793 103.88715,411.39792 C 104.26215,411.39793 104.6059,411.46628 104.9184,411.603 C 105.2348,411.73582 105.47113,411.9116 105.62739,412.13034 C 105.78363,412.3491 105.89301,412.60886 105.95551,412.90964 C 105.99457,413.10495 106.0141,413.44675 106.0141,413.93503 L 106.0141,417.7612 L 104.95942,417.7612 L 104.95942,413.97604 C 104.95941,413.54636 104.9184,413.22605 104.83637,413.01511 C 104.75433,412.80027 104.60785,412.63035 104.39692,412.50534 C 104.18988,412.37644 103.94574,412.31199 103.6645,412.31198 C 103.21527,412.31199 102.8266,412.45456 102.49848,412.73972 C 102.17426,413.02488 102.01215,413.56589 102.01215,414.36276 L 102.01215,417.7612 L 100.95746,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11402"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 107.72504,417.7612 L 107.72504,409.17136 L 110.9477,409.17136 C 111.60394,409.17136 112.12933,409.25926 112.52387,409.43503 C 112.9223,409.60691 113.23285,409.87449 113.45551,410.23776 C 113.68207,410.59714 113.79535,410.9741 113.79535,411.36862 C 113.79535,411.73582 113.69574,412.08152 113.49653,412.40573 C 113.2973,412.72995 112.99652,412.99167 112.59418,413.19089 C 113.11371,413.34324 113.51215,413.603 113.7895,413.97018 C 114.07074,414.33738 114.21136,414.77097 114.21137,415.27097 C 114.21136,415.67331 114.12543,416.04831 113.95356,416.39597 C 113.78558,416.73972 113.5766,417.00534 113.3266,417.19284 C 113.0766,417.38034 112.76215,417.52292 112.38325,417.62057 C 112.00824,417.71432 111.5473,417.7612 111.00043,417.7612 L 107.72504,417.7612 M 108.86176,412.78073 L 110.71918,412.78073 C 111.22308,412.78074 111.58441,412.74753 111.80317,412.68112 C 112.09222,412.59519 112.30902,412.45261 112.45356,412.25339 C 112.60199,412.05417 112.67621,411.80417 112.67621,411.50339 C 112.67621,411.21824 112.60785,410.96824 112.47114,410.75339 C 112.33441,410.53464 112.1391,410.38621 111.8852,410.30807 C 111.63129,410.22605 111.19574,410.18504 110.57856,410.18503 L 108.86176,410.18503 L 108.86176,412.78073 M 108.86176,416.74753 L 111.00043,416.74753 C 111.36762,416.74753 111.62543,416.73386 111.77387,416.70651 C 112.03558,416.65964 112.25433,416.58151 112.43012,416.47214 C 112.6059,416.36276 112.75043,416.20456 112.86371,415.99753 C 112.97699,415.78659 113.03363,415.54441 113.03364,415.27097 C 113.03363,414.95066 112.9516,414.67331 112.78754,414.43893 C 112.62347,414.20066 112.39496,414.03464 112.102,413.94089 C 111.81293,413.84324 111.39496,413.79441 110.84809,413.7944 L 108.86176,413.7944 L 108.86176,416.74753"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11404"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 115.2602,414.64987 C 115.2602,413.49753 115.58051,412.64402 116.22114,412.08932 C 116.75629,411.62839 117.40863,411.39793 118.17817,411.39792 C 119.03363,411.39793 119.73285,411.67917 120.27582,412.24167 C 120.81879,412.80027 121.09027,413.5737 121.09028,414.56198 C 121.09027,415.36276 120.96918,415.99362 120.72699,416.45456 C 120.48871,416.91159 120.1391,417.26706 119.67817,417.52097 C 119.22113,417.77487 118.72113,417.90182 118.17817,417.90182 C 117.30707,417.90182 116.60199,417.62253 116.06293,417.06393 C 115.52778,416.50534 115.2602,415.70066 115.2602,414.64987 M 116.34418,414.64987 C 116.34418,415.44675 116.51801,416.0444 116.86567,416.44284 C 117.21332,416.83737 117.65082,417.03464 118.17817,417.03464 C 118.7016,417.03464 119.13715,416.83542 119.48481,416.43698 C 119.83246,416.03855 120.00629,415.43112 120.00629,414.61472 C 120.00629,413.84519 119.83051,413.26316 119.47895,412.86862 C 119.13129,412.47019 118.69769,412.27097 118.17817,412.27097 C 117.65082,412.27097 117.21332,412.46824 116.86567,412.86276 C 116.51801,413.2573 116.34418,413.853 116.34418,414.64987"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11406"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 126.39301,416.99362 C 126.00238,417.32565 125.62543,417.56003 125.26215,417.69675 C 124.90277,417.83347 124.51605,417.90182 124.10199,417.90182 C 123.4184,417.90182 122.89301,417.73581 122.52582,417.40378 C 122.15863,417.06784 121.97504,416.64011 121.97504,416.12057 C 121.97504,415.81589 122.0434,415.53855 122.18012,415.28854 C 122.32074,415.03464 122.50238,414.83152 122.72504,414.67917 C 122.9516,414.52683 123.20551,414.41159 123.48676,414.33347 C 123.69379,414.27878 124.00629,414.22605 124.42426,414.17526 C 125.27582,414.0737 125.90277,413.95261 126.30512,413.81198 C 126.30902,413.66745 126.31097,413.57566 126.31098,413.53659 C 126.31097,413.10691 126.21137,412.80417 126.01215,412.62839 C 125.74262,412.39011 125.34223,412.27097 124.81098,412.27097 C 124.31488,412.27097 123.9477,412.35886 123.70942,412.53464 C 123.47504,412.70652 123.30121,413.01316 123.18793,413.45456 L 122.15668,413.31393 C 122.25043,412.87253 122.40473,412.51706 122.61957,412.24753 C 122.83442,411.9741 123.14496,411.76511 123.55121,411.62057 C 123.95746,411.47214 124.42816,411.39793 124.96332,411.39792 C 125.49457,411.39793 125.92621,411.46043 126.25824,411.58542 C 126.59027,411.71042 126.83441,411.86863 126.99067,412.06003 C 127.14691,412.24753 127.25629,412.48581 127.31879,412.77487 C 127.35394,412.95456 127.37152,413.27878 127.37153,413.74753 L 127.37153,415.15378 C 127.37152,416.13425 127.393,416.75534 127.43598,417.01706 C 127.48285,417.27487 127.57269,417.52292 127.70551,417.7612 L 126.60395,417.7612 C 126.49457,417.54245 126.42426,417.28659 126.39301,416.99362 M 126.30512,414.63815 C 125.9223,414.79441 125.34808,414.92722 124.58246,415.03659 C 124.14887,415.09909 123.84223,415.16941 123.66254,415.24753 C 123.48285,415.32566 123.34418,415.44089 123.24653,415.59323 C 123.14887,415.74167 123.10004,415.90769 123.10004,416.09128 C 123.10004,416.37253 123.20551,416.6069 123.41645,416.7944 C 123.63129,416.9819 123.94379,417.07565 124.35395,417.07565 C 124.76019,417.07565 125.12152,416.98776 125.43793,416.81198 C 125.75433,416.63229 125.98676,416.38815 126.1352,416.07956 C 126.24847,415.84128 126.30512,415.48972 126.30512,415.02487 L 126.30512,414.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11408"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 129.00043,417.7612 L 129.00043,411.53854 L 129.94965,411.53854 L 129.94965,412.4819 C 130.19184,412.0405 130.41449,411.74949 130.61762,411.60886 C 130.82465,411.46824 131.05121,411.39793 131.29731,411.39792 C 131.65277,411.39793 132.0141,411.51121 132.38129,411.73776 L 132.01801,412.71628 C 131.76019,412.56394 131.50238,412.48777 131.24457,412.48776 C 131.0141,412.48777 130.80707,412.55808 130.62348,412.6987 C 130.43988,412.83542 130.30902,413.02683 130.2309,413.27292 C 130.11371,413.64792 130.05512,414.05808 130.05512,414.50339 L 130.05512,417.7612 L 129.00043,417.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11410"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 137.05707,417.7612 L 137.05707,416.97604 C 136.66254,417.59323 136.08246,417.90182 135.31684,417.90182 C 134.82074,417.90182 134.36371,417.76511 133.94574,417.49167 C 133.53168,417.21823 133.20942,416.83737 132.97895,416.34909 C 132.75239,415.8569 132.6391,415.29245 132.6391,414.65573 C 132.6391,414.03464 132.74262,413.47214 132.94965,412.96823 C 133.15668,412.46042 133.46723,412.07175 133.88129,411.80222 C 134.29535,411.53269 134.75824,411.39793 135.26996,411.39792 C 135.64496,411.39793 135.97894,411.478 136.27192,411.63815 C 136.56488,411.79441 136.80316,411.99949 136.98676,412.25339 L 136.98676,409.17136 L 138.03559,409.17136 L 138.03559,417.7612 L 137.05707,417.7612 M 133.72309,414.65573 C 133.72309,415.45261 133.89106,416.04831 134.22699,416.44284 C 134.56293,416.83737 134.95941,417.03464 135.41645,417.03464 C 135.87738,417.03464 136.26801,416.84714 136.58832,416.47214 C 136.91254,416.09323 137.07465,415.51706 137.07465,414.74362 C 137.07465,413.89206 136.91058,413.26706 136.58246,412.86862 C 136.25433,412.47019 135.85004,412.27097 135.36957,412.27097 C 134.90082,412.27097 134.50824,412.46238 134.19184,412.84518 C 133.87934,413.228 133.72309,413.83152 133.72309,414.65573"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11412"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="system-gps-type"
|
||||
transform="matrix(1.0830555,0,0,1.0830555,6.8095635,-86.863044)">
|
||||
<path
|
||||
d="M 83.756292,432.7612 L 83.756292,424.17136 L 86.996526,424.17136 C 87.566834,424.17136 88.00238,424.19871 88.303167,424.25339 C 88.725036,424.32371 89.078551,424.45847 89.363714,424.65768 C 89.648863,424.853 89.877379,425.1284 90.049261,425.48386 C 90.225034,425.83933 90.312925,426.22996 90.312932,426.65573 C 90.312925,427.38621 90.080503,428.00535 89.615667,428.51315 C 89.150817,429.01706 88.310974,429.26902 87.096136,429.26901 L 84.893011,429.26901 L 84.893011,432.7612 L 83.756292,432.7612 M 84.893011,428.25534 L 87.113714,428.25534 C 87.848084,428.25535 88.369568,428.11863 88.678167,427.84518 C 88.986754,427.57175 89.141051,427.18699 89.141057,426.69089 C 89.141051,426.33152 89.049254,426.02488 88.865667,425.77097 C 88.685974,425.51316 88.447692,425.34324 88.150823,425.2612 C 87.959412,425.21043 87.605896,425.18504 87.090276,425.18503 L 84.893011,425.18503 L 84.893011,428.25534"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11422"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 91.613714,432.7612 L 91.613714,424.17136 L 92.668401,424.17136 L 92.668401,432.7612 L 91.613714,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11424"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 98.369573,431.99362 C 97.978944,432.32565 97.601991,432.56003 97.238714,432.69675 C 96.879335,432.83347 96.492617,432.90182 96.078557,432.90182 C 95.394962,432.90182 94.869572,432.73581 94.502386,432.40378 C 94.135197,432.06784 93.951604,431.64011 93.951604,431.12057 C 93.951604,430.81589 94.019963,430.53855 94.156682,430.28854 C 94.297307,430.03464 94.478947,429.83152 94.701604,429.67917 C 94.928165,429.52683 95.182071,429.41159 95.463323,429.33347 C 95.670352,429.27878 95.982852,429.22605 96.400823,429.17526 C 97.252382,429.0737 97.879334,428.95261 98.281682,428.81198 C 98.285584,428.66745 98.287537,428.57566 98.287542,428.53659 C 98.287537,428.10691 98.187928,427.80417 97.988714,427.62839 C 97.719178,427.39011 97.318788,427.27097 96.787542,427.27097 C 96.291445,427.27097 95.924258,427.35886 95.685979,427.53464 C 95.451602,427.70652 95.277774,428.01316 95.164495,428.45456 L 94.133245,428.31393 C 94.226994,427.87253 94.381291,427.51706 94.596136,427.24753 C 94.810978,426.9741 95.121525,426.76511 95.527776,426.62057 C 95.934024,426.47214 96.404726,426.39793 96.939886,426.39792 C 97.471132,426.39793 97.902772,426.46043 98.234807,426.58542 C 98.566834,426.71042 98.810974,426.86863 98.967229,427.06003 C 99.123474,427.24753 99.232849,427.48581 99.295354,427.77487 C 99.330505,427.95456 99.348083,428.27878 99.348089,428.74753 L 99.348089,430.15378 C 99.348083,431.13425 99.369567,431.75534 99.412542,432.01706 C 99.459411,432.27487 99.549255,432.52292 99.682073,432.7612 L 98.580511,432.7612 C 98.471131,432.54245 98.400818,432.28659 98.369573,431.99362 M 98.281682,429.63815 C 97.898866,429.79441 97.324647,429.92722 96.559026,430.03659 C 96.12543,430.09909 95.81879,430.16941 95.639104,430.24753 C 95.459415,430.32566 95.320743,430.44089 95.223089,430.59323 C 95.125431,430.74167 95.076603,430.90769 95.076604,431.09128 C 95.076603,431.37253 95.182071,431.6069 95.393011,431.7944 C 95.607852,431.9819 95.920352,432.07565 96.330511,432.07565 C 96.736757,432.07565 97.098085,431.98776 97.414495,431.81198 C 97.730897,431.63229 97.963319,431.38815 98.111761,431.07956 C 98.225037,430.84128 98.281678,430.48972 98.281682,430.02487 L 98.281682,429.63815"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11426"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 103.29145,431.81784 L 103.44379,432.74948 C 103.14691,432.81198 102.88129,432.84323 102.64692,432.84323 C 102.2641,432.84323 101.96723,432.78268 101.75629,432.66159 C 101.54535,432.5405 101.39692,432.38229 101.31098,432.18698 C 101.22504,431.98776 101.18207,431.57175 101.18207,430.93893 L 101.18207,427.35886 L 100.40864,427.35886 L 100.40864,426.53854 L 101.18207,426.53854 L 101.18207,424.99753 L 102.2309,424.36472 L 102.2309,426.53854 L 103.29145,426.53854 L 103.29145,427.35886 L 102.2309,427.35886 L 102.2309,430.99753 C 102.2309,431.29831 102.24848,431.49167 102.28364,431.57761 C 102.3227,431.66354 102.38324,431.7319 102.46528,431.78268 C 102.55121,431.83347 102.6723,431.85886 102.82856,431.85886 C 102.94574,431.85886 103.10004,431.84519 103.29145,431.81784"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11428"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 104.3227,425.38425 L 104.3227,424.17136 L 105.37739,424.17136 L 105.37739,425.38425 L 104.3227,425.38425 M 104.3227,432.7612 L 104.3227,426.53854 L 105.37739,426.53854 L 105.37739,432.7612 L 104.3227,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11430"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 106.98871,432.7612 L 106.98871,426.53854 L 107.93793,426.53854 L 107.93793,427.42331 C 108.39496,426.73972 109.05512,426.39793 109.9184,426.39792 C 110.2934,426.39793 110.63715,426.46628 110.94965,426.603 C 111.26605,426.73582 111.50238,426.9116 111.65864,427.13034 C 111.81488,427.3491 111.92425,427.60886 111.98676,427.90964 C 112.02582,428.10495 112.04535,428.44675 112.04535,428.93503 L 112.04535,432.7612 L 110.99067,432.7612 L 110.99067,428.97604 C 110.99066,428.54636 110.94965,428.22605 110.86762,428.01511 C 110.78558,427.80027 110.6391,427.63035 110.42817,427.50534 C 110.22113,427.37644 109.97699,427.31199 109.69575,427.31198 C 109.24652,427.31199 108.85785,427.45456 108.52973,427.73972 C 108.20551,428.02488 108.0434,428.56589 108.0434,429.36276 L 108.0434,432.7612 L 106.98871,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11432"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 117.74653,432.7612 L 117.74653,431.84714 C 117.26215,432.55026 116.60394,432.90182 115.77192,432.90182 C 115.40473,432.90182 115.06098,432.83151 114.74067,432.69089 C 114.42426,432.55026 114.18793,432.37448 114.03168,432.16354 C 113.87934,431.9487 113.77192,431.68698 113.70942,431.37839 C 113.66645,431.17136 113.64496,430.84323 113.64496,430.39401 L 113.64496,426.53854 L 114.69965,426.53854 L 114.69965,429.98972 C 114.69965,430.5405 114.72113,430.91159 114.7641,431.103 C 114.83051,431.38034 114.97113,431.59909 115.18598,431.75925 C 115.40082,431.9155 115.66645,431.99362 115.98285,431.99362 C 116.29926,431.99362 116.59613,431.91354 116.87348,431.75339 C 117.15082,431.58933 117.34613,431.36862 117.45942,431.09128 C 117.5766,430.81003 117.63519,430.40378 117.6352,429.87253 L 117.6352,426.53854 L 118.68989,426.53854 L 118.68989,432.7612 L 117.74653,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11434"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 120.34809,432.7612 L 120.34809,426.53854 L 121.29145,426.53854 L 121.29145,427.41159 C 121.48676,427.10691 121.74652,426.86277 122.07074,426.67917 C 122.39496,426.49167 122.7641,426.39793 123.17817,426.39792 C 123.6391,426.39793 124.01605,426.49363 124.30903,426.68503 C 124.6059,426.87644 124.81488,427.14402 124.93598,427.48776 C 125.42816,426.76121 126.06879,426.39793 126.85785,426.39792 C 127.47503,426.39793 127.94964,426.5698 128.28168,426.91354 C 128.6137,427.25339 128.77972,427.77878 128.77973,428.48972 L 128.77973,432.7612 L 127.7309,432.7612 L 127.7309,428.84128 C 127.73089,428.41941 127.69574,428.11667 127.62543,427.93307 C 127.55902,427.74558 127.43597,427.59519 127.25629,427.4819 C 127.0766,427.36863 126.86566,427.31199 126.62348,427.31198 C 126.18597,427.31199 125.82269,427.45847 125.53364,427.75143 C 125.24457,428.0405 125.10004,428.50534 125.10004,429.14597 L 125.10004,432.7612 L 124.04535,432.7612 L 124.04535,428.71823 C 124.04535,428.24949 123.95941,427.89792 123.78754,427.66354 C 123.61566,427.42917 123.33441,427.31199 122.94379,427.31198 C 122.64691,427.31199 122.37152,427.39011 122.11762,427.54636 C 121.86762,427.70261 121.68598,427.93113 121.5727,428.2319 C 121.45941,428.53269 121.40277,428.96628 121.40278,429.53268 L 121.40278,432.7612 L 120.34809,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11436"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 138.78754,432.7612 L 136.42035,426.53854 L 137.53364,426.53854 L 138.86957,430.26511 C 139.0141,430.66745 139.14691,431.08542 139.26801,431.51901 C 139.36176,431.19089 139.49262,430.79636 139.66059,430.33542 L 141.0434,426.53854 L 142.12739,426.53854 L 139.77192,432.7612 L 138.78754,432.7612"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11440"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 142.9477,430.77487 L 143.96137,430.68112 C 144.04731,431.15769 144.21137,431.50339 144.45356,431.71823 C 144.69574,431.93308 145.00629,432.0405 145.3852,432.0405 C 145.70941,432.0405 145.99262,431.96628 146.23481,431.81784 C 146.4809,431.6694 146.68207,431.47214 146.83832,431.22604 C 146.99457,430.97605 147.12543,430.64011 147.2309,430.21823 C 147.33636,429.79636 147.3891,429.36667 147.3891,428.92917 C 147.3891,428.8823 147.38715,428.81199 147.38324,428.71823 C 147.1723,429.05417 146.88324,429.32761 146.51606,429.53854 C 146.15277,429.74558 145.75824,429.84909 145.33246,429.84909 C 144.62152,429.84909 144.01996,429.59128 143.52778,429.07565 C 143.03559,428.56003 142.78949,427.88035 142.78949,427.03659 C 142.78949,426.1655 143.04535,425.46433 143.55707,424.93307 C 144.0727,424.40183 144.71723,424.13621 145.49067,424.1362 C 146.04926,424.13621 146.55902,424.2866 147.01996,424.58737 C 147.4848,424.88816 147.83636,425.31785 148.07465,425.87643 C 148.31683,426.43113 148.43793,427.23581 148.43793,428.2905 C 148.43793,429.38816 148.31879,430.26316 148.08051,430.9155 C 147.84222,431.56394 147.48676,432.05808 147.0141,432.39792 C 146.54535,432.73776 145.99457,432.90768 145.36176,432.90768 C 144.68988,432.90768 144.14106,432.72214 143.71528,432.35104 C 143.28949,431.97604 143.03363,431.45065 142.9477,430.77487 M 147.26606,426.98386 C 147.26605,426.37839 147.10394,425.89793 146.77973,425.54245 C 146.45941,425.18699 146.07269,425.00925 145.61957,425.00925 C 145.15082,425.00925 144.74262,425.20066 144.39496,425.58347 C 144.04731,425.96628 143.87348,426.46238 143.87348,427.07175 C 143.87348,427.61863 144.03754,428.06394 144.36567,428.40768 C 144.6977,428.74753 145.1059,428.91745 145.59028,428.91745 C 146.07855,428.91745 146.47894,428.74753 146.79145,428.40768 C 147.10785,428.06394 147.26605,427.58933 147.26606,426.98386"
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path11442"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer94"
|
||||
inkscape:label="system-panel-mousearea">
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0.096870422"
|
||||
y="299.00034"
|
||||
x="173.92392"
|
||||
height="39.99931"
|
||||
width="21.542936"
|
||||
id="system-panel-mousearea"
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:none" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer45"
|
||||
inkscape:label="oplm-panel">
|
||||
inkscape:label="oplm-panel"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer54"
|
||||
inkscape:label="oplm-bg"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
|
||||
@ -1910,26 +2652,21 @@
|
||||
<path
|
||||
sodipodi:nodetypes="ssssccsssscsss"
|
||||
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
|
||||
d="m -1.8968835,311 c -2.77,0 -5,2.23 -5,5 l 0,140 c 0,2.77 2.23,5 5,5 L 150,461 l 0,-80.39454 l 13.99993,0 c 2.77,0 5,-2.23 5,-5 l 0,-30 c 0,-2.77 -2.23435,-5.15509 -5,-5 l -14,0 L 150,316 c 1e-5,-2.77 -2.23,-5 -5,-5 z"
|
||||
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,391.9863 L 163.99993,391.9863 C 166.76993,391.9863 168.99993,389.69255 168.99993,386.84337 L 168.99993,362.6509 C 168.99993,359.80172 166.77018,357.50797 163.99993,357.50797 L 149.99993,357.50797 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
|
||||
id="path3908"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 150,380.60546 l -7e-5,-40"
|
||||
id="path3910"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<g
|
||||
id="oplm-icon">
|
||||
id="oplm-icon"
|
||||
transform="translate(0,10.34333)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5784"
|
||||
d="m 186.75,341.5 c 0,0.9665 -0.7835,1.75 -1.75,1.75 c -0.9665,0 -1.75,-0.7835 -1.75,-1.75 c 0,-0.9665 0.7835,-1.75 1.75,-1.75 c 0.9665,0 1.75,0.7835 1.75,1.75 z"
|
||||
d="M 186.75,341.5 C 186.75,342.4665 185.9665,343.25 185,343.25 C 184.0335,343.25 183.25,342.4665 183.25,341.5 C 183.25,340.5335 184.0335,339.75 185,339.75 C 185.9665,339.75 186.75,340.5335 186.75,341.5 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
transform="matrix(0.86211044,0,0,0.86194421,0.05837255,65.309165)" />
|
||||
<path
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.89999998;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
|
||||
d="m 158.74058,359.8786 l -0.86168,16.16145 l 3.33981,0 l -0.86168,-16.16145 z"
|
||||
d="M 158.74058,359.8786 L 157.8789,376.04005 L 161.21871,376.04005 L 160.35703,359.8786 z"
|
||||
id="path5787"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -1938,7 +2675,7 @@
|
||||
sodipodi:end="7.1558499"
|
||||
sodipodi:start="2.268928"
|
||||
transform="matrix(0.86211044,0,0,0.86194421,-20.308987,63.354658)"
|
||||
d="m 206.05385,346.92456 a 4,4.0625 0 1 1 5.1423,0"
|
||||
d="M 206.05385,346.92456 A 4,4.0625 0 1 1 211.19615,346.92456"
|
||||
sodipodi:ry="4.0625"
|
||||
sodipodi:rx="4"
|
||||
sodipodi:cy="343.8125"
|
||||
@ -1954,7 +2691,7 @@
|
||||
sodipodi:cy="343.8125"
|
||||
sodipodi:rx="4"
|
||||
sodipodi:ry="4.0625"
|
||||
d="m 206.625,347.33073 a 4,4.0625 0 1 1 4,0"
|
||||
d="M 206.625,347.33073 A 4,4.0625 0 1 1 210.625,347.33073"
|
||||
transform="matrix(1.4009295,0,0,1.4098503,-132.61235,-125.01936)"
|
||||
sodipodi:start="2.0943951"
|
||||
sodipodi:end="7.3303829"
|
||||
@ -1999,7 +2736,7 @@
|
||||
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)" />
|
||||
<path
|
||||
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)"
|
||||
d="m 50.19341,295.51093 a 52.5,52.5 0 0 1 48.677155,19.66684"
|
||||
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 98.870565,315.17777"
|
||||
sodipodi:ry="52.5"
|
||||
sodipodi:rx="52.5"
|
||||
sodipodi:cy="347.5"
|
||||
@ -2014,11 +2751,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4781"
|
||||
d="m 114.48102,306.62821 l -1.06067,8.65276"
|
||||
d="M 114.48102,306.62821 L 113.42035,315.28097"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 124.20875,308.70221 l -2.54265,8.3358"
|
||||
d="M 124.20875,308.70221 L 121.6661,317.03801"
|
||||
id="path4783"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2026,11 +2763,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4785"
|
||||
d="m 133.42882,312.44292 l -3.95142,7.77485"
|
||||
d="M 133.42882,312.44292 L 129.4774,320.21777"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 141.8612,317.73671 l -5.24019,6.97278"
|
||||
d="M 141.8612,317.73671 L 136.62101,324.70949"
|
||||
id="path4787"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2038,11 +2775,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4789"
|
||||
d="m 149.24954,324.42277 l -6.3686,5.9558"
|
||||
d="M 149.24954,324.42277 L 142.88094,330.37857"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 155.36948,332.29788 l -7.3231,4.72998"
|
||||
d="M 155.36948,332.29788 L 148.04638,337.02786"
|
||||
id="path4791"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2061,7 +2798,7 @@
|
||||
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 104.54096,306.2803 l 0.45466,8.7165"
|
||||
d="M 104.54096,306.2803 L 104.99562,314.9968"
|
||||
id="path4795"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2069,11 +2806,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4797"
|
||||
d="m 98.60121,306.91389 l 1.360788,8.62041"
|
||||
d="M 98.60121,306.91389 L 99.961998,315.5343"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 92.75868,308.1648 l 2.252127,8.43016"
|
||||
d="M 92.75868,308.1648 L 95.010807,316.59496"
|
||||
id="path4799"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2081,11 +2818,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4801"
|
||||
d="m 87.076675,310.01949 l 3.118798,8.1479"
|
||||
d="M 87.076675,310.01949 L 90.195473,318.16739"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 81.62074,312.46734 l 3.94777,7.76874"
|
||||
d="M 81.62074,312.46734 L 85.56851,320.23608"
|
||||
id="path4803"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2093,11 +2830,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4805"
|
||||
d="m 76.44715,315.47142 l 4.734393,7.30915"
|
||||
d="M 76.44715,315.47142 L 81.181543,322.78057"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 71.613793,319.00235 l 5.470653,6.77253"
|
||||
d="M 71.613793,319.00235 L 77.084446,325.77488"
|
||||
id="path4807"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2105,11 +2842,11 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4809"
|
||||
d="m 67.173673,323.02142 l 6.15024,6.165"
|
||||
d="M 67.173673,323.02142 L 73.323913,329.18642"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 63.175388,327.48461 l 6.765776,5.49142"
|
||||
d="M 63.175388,327.48461 L 69.941164,332.97603"
|
||||
id="path4811"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -2117,7 +2854,7 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4813"
|
||||
d="m 59.662758,332.34302 l 7.329767,4.72019"
|
||||
d="M 59.662758,332.34302 L 66.992525,337.06321"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:open="true"
|
||||
@ -2140,7 +2877,7 @@
|
||||
sodipodi:cy="347.5"
|
||||
sodipodi:rx="52.5"
|
||||
sodipodi:ry="52.5"
|
||||
d="m 11.14525,322.85275 a 52.5,52.5 0 0 1 87.725315,-7.67498"
|
||||
d="M 11.14525,322.85275 A 52.5,52.5 0 0 1 98.870565,315.17777"
|
||||
transform="matrix(0.9168972,0.08021811,-0.08062108,0.92150318,82.802213,38.659321)"
|
||||
sodipodi:start="3.6302848"
|
||||
sodipodi:end="5.6199602"
|
||||
@ -2148,60 +2885,60 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4856"
|
||||
d="m 66.992525,337.06321 l -3.413447,-2.19817"
|
||||
d="M 66.992525,337.06321 L 63.579078,334.86504"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4858"
|
||||
d="m 105,315.00001 l -0.21402,-4.06432"
|
||||
d="M 105,315.00001 L 104.78598,310.93569"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
d="m 57.090277,332.13336 l 0.294929,-0.57231 c 0.459228,0.22297 0.800482,0.16895 1.023755,-0.16212 c 0.110621,-0.16403 0.155152,-0.32165 0.133502,-0.47294 c -0.02312,-0.15227 -0.09805,-0.27116 -0.224804,-0.35664 c -0.07455,-0.0503 -0.148988,-0.0766 -0.223299,-0.079 c -0.07424,-0.002 -0.150552,0.0186 -0.228557,0.0639 c -0.07939,0.0443 -0.245849,0.16827 -0.49886,0.37294 c -0.225949,0.18388 -0.416194,0.30177 -0.570595,0.35384 c -0.154335,0.0523 -0.319671,0.0651 -0.495577,0.0399 c -0.176438,-0.0278 -0.341456,-0.0936 -0.495044,-0.19724 c -0.178933,-0.12069 -0.312815,-0.26957 -0.401646,-0.44664 c -0.08784,-0.17857 -0.119963,-0.36408 -0.09651,-0.55649 c 0.02348,-0.19244 0.106139,-0.39376 0.247948,-0.60401 c 0.213233,-0.3161 0.465429,-0.50505 0.756576,-0.56683 c 0.291183,-0.0618 0.599809,0.01 0.925942,0.21451 l -0.337512,0.56312 c -0.192037,-0.0948 -0.34975,-0.12635 -0.473143,-0.0946 c -0.123372,0.0318 -0.234415,0.12061 -0.332905,0.26685 c -0.0986,0.14608 -0.143923,0.27933 -0.136108,0.39958 c 0.0079,0.12028 0.05723,0.21109 0.148183,0.27243 c 0.08948,0.0604 0.188908,0.0754 0.298315,0.045 c 0.10935,-0.0305 0.287661,-0.14982 0.534695,-0.35855 c 0.263114,-0.21954 0.479354,-0.36005 0.648768,-0.42154 c 0.168943,-0.064 0.34439,-0.0812 0.526303,-0.0519 c 0.180439,0.0284 0.369061,0.10901 0.565882,0.24177 c 0.284805,0.19211 0.464781,0.4415 0.539933,0.7482 c 0.07617,0.30521 -0.01147,0.6442 -0.262907,1.01697 c -0.444548,0.65907 -1.06711,0.77276 -1.867298,0.34156"
|
||||
d="M 57.090277,332.13336 L 57.385206,331.56105 C 57.844434,331.78402 58.185688,331.73 58.408961,331.39893 C 58.519582,331.2349 58.564113,331.07728 58.542463,330.92599 C 58.519343,330.77372 58.444413,330.65483 58.317659,330.56935 C 58.243109,330.51905 58.168671,330.49275 58.09436,330.49035 C 58.02012,330.48835 57.943808,330.50895 57.865803,330.55425 C 57.786413,330.59855 57.619954,330.72252 57.366943,330.92719 C 57.140994,331.11107 56.950749,331.22896 56.796348,331.28103 C 56.642013,331.33333 56.476677,331.34613 56.300771,331.32093 C 56.124333,331.29313 55.959315,331.22733 55.805727,331.12369 C 55.626794,331.003 55.492912,330.85412 55.404081,330.67705 C 55.316241,330.49848 55.284118,330.31297 55.307571,330.12056 C 55.331051,329.92812 55.41371,329.7268 55.555519,329.51655 C 55.768752,329.20045 56.020948,329.0115 56.312095,328.94972 C 56.603278,328.88792 56.911904,328.95972 57.238037,329.16423 L 56.900525,329.72735 C 56.708488,329.63255 56.550775,329.601 56.427382,329.63275 C 56.30401,329.66455 56.192967,329.75336 56.094477,329.8996 C 55.995877,330.04568 55.950554,330.17893 55.958369,330.29918 C 55.966269,330.41946 56.015599,330.51027 56.106552,330.57161 C 56.196032,330.63201 56.29546,330.64701 56.404867,330.61661 C 56.514217,330.58611 56.692528,330.46679 56.939562,330.25806 C 57.202676,330.03852 57.418916,329.89801 57.58833,329.83652 C 57.757273,329.77252 57.93272,329.75532 58.114633,329.78462 C 58.295072,329.81302 58.483694,329.89363 58.680515,330.02639 C 58.96532,330.2185 59.145296,330.46789 59.220448,330.77459 C 59.296618,331.0798 59.208978,331.41879 58.957541,331.79156 C 58.512993,332.45063 57.890431,332.56432 57.090243,332.13312"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5127"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 62.731555,326.47947 l -0.57751,0.68823 l -3.168915,-2.65904 c 0.07334,0.50008 0.03638,0.97559 -0.110872,1.42655 l -0.763056,-0.64027 c 0.0829,-0.25679 0.110817,-0.57162 0.08375,-0.94448 c -0.02908,-0.37454 -0.140809,-0.71137 -0.335152,-1.01045 l 0.467031,-0.55658 l 4.404754,3.69603"
|
||||
d="M 62.731555,326.47947 L 62.154045,327.1677 L 58.98513,324.50866 C 59.05847,325.00874 59.02151,325.48425 58.874258,325.93521 L 58.111202,325.29494 C 58.194102,325.03815 58.222019,324.72332 58.194952,324.35046 C 58.165872,323.97592 58.054143,323.63909 57.8598,323.34001 L 58.326831,322.78343 L 62.731585,326.47946"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5129"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 67.130182,320.50533 l 0.708236,0.7334 l -2.270422,2.19251 c -0.243386,-0.30076 -0.423557,-0.63542 -0.540517,-1.00397 c -0.116947,-0.3722 -0.191741,-0.93525 -0.224668,-1.68907 c -0.02821,-0.59905 -0.06472,-0.98736 -0.10951,-1.16496 c -0.06361,-0.26076 -0.176788,-0.47546 -0.339607,-0.64407 c -0.173666,-0.17982 -0.345081,-0.27673 -0.51428,-0.29074 c -0.169191,-0.014 -0.319312,0.0426 -0.450475,0.16895 c -0.286603,0.27678 -0.234027,0.64051 0.157755,1.0912 l -0.719438,0.54273 c -0.36588,-0.45761 -0.54731,-0.87791 -0.544315,-1.26093 c 0.0049,-0.38484 0.168412,-0.73283 0.490624,-1.04397 c 0.354043,-0.34191 0.732218,-0.48451 1.134578,-0.42774 c 0.402347,0.0568 0.747335,0.23405 1.034967,0.5319 c 0.162815,0.16861 0.297672,0.35513 0.404591,0.5596 c 0.107021,0.20076 0.190516,0.42784 0.250543,0.6812 c 0.05826,0.25147 0.09617,0.60942 0.113863,1.07386 c 0.01819,0.43495 0.03537,0.71704 0.05153,0.84624 c 0.01811,0.12738 0.04459,0.24297 0.07963,0.3467 l 1.28694,-1.2428"
|
||||
d="M 67.130182,320.50533 L 67.838418,321.23873 L 65.567996,323.43124 C 65.32461,323.13048 65.144439,322.79582 65.027479,322.42727 C 64.910532,322.05507 64.835738,321.49202 64.802811,320.7382 C 64.774601,320.13915 64.738091,319.75084 64.693301,319.57324 C 64.629691,319.31248 64.516513,319.09778 64.353694,318.92917 C 64.180028,318.74935 64.008613,318.65244 63.839414,318.63843 C 63.670223,318.62443 63.520102,318.68103 63.388939,318.80738 C 63.102336,319.08416 63.154912,319.44789 63.546694,319.89858 L 62.827256,320.44131 C 62.461376,319.9837 62.279946,319.5634 62.282941,319.18038 C 62.287841,318.79554 62.451353,318.44755 62.773565,318.13641 C 63.127608,317.7945 63.505783,317.6519 63.908143,317.70867 C 64.31049,317.76547 64.655478,317.94272 64.94311,318.24057 C 65.105925,318.40918 65.240782,318.5957 65.347701,318.80017 C 65.454722,319.00093 65.538217,319.22801 65.598244,319.48137 C 65.656504,319.73284 65.694414,320.09079 65.712107,320.55523 C 65.730297,320.99018 65.747477,321.27227 65.763637,321.40147 C 65.781747,321.52885 65.808227,321.64444 65.843267,321.74817 L 67.130207,320.50537"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5131"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 68.69671,318.05921 l 0.607069,-0.63788 c 0.185212,0.199 0.371153,0.31645 0.557842,0.35236 c 0.186671,0.0359 0.346717,0.002 0.480104,-0.10245 c 0.145722,-0.11375 0.216738,-0.2767 0.213056,-0.48867 c -0.0037,-0.21194 -0.09767,-0.43592 -0.282059,-0.67192 c -0.171545,-0.21956 -0.354449,-0.35427 -0.548701,-0.4041 c -0.194241,-0.0498 -0.360108,-0.021 -0.497595,0.0865 c -0.09028,0.0706 -0.181154,0.17632 -0.272724,0.31713 l -0.473764,-0.76503 c 0.185745,-0.13865 0.292037,-0.30086 0.318585,-0.48685 c 0.02449,-0.18436 -0.03617,-0.36993 -0.182139,-0.55667 c -0.121844,-0.15594 -0.255208,-0.24839 -0.400073,-0.27731 c -0.144884,-0.0289 -0.276816,0.003 -0.395836,0.0961 c -0.119063,0.0929 -0.182578,0.22525 -0.190644,0.39683 c -0.0076,0.16788 0.0581,0.35776 0.197205,0.56964 l -0.76147,0.3768 c -0.254534,-0.4654 -0.356256,-0.8684 -0.305161,-1.20908 c 0.05111,-0.34064 0.226467,-0.62801 0.526077,-0.86209 c 0.336566,-0.2629 0.69711,-0.35131 1.081708,-0.26509 c 0.386637,0.0846 0.693794,0.27258 0.921458,0.56397 c 0.153912,0.19701 0.24745,0.40979 0.280592,0.63834 c 0.03522,0.22697 0.01004,0.46969 -0.0755,0.7282 c 0.250707,-0.10619 0.51431,-0.11549 0.791001,-0.0281 c 0.278838,0.0862 0.528887,0.27089 0.750136,0.55406 c 0.322263,0.41247 0.466072,0.85035 0.431452,1.31364 c -0.03417,0.45961 -0.220561,0.82169 -0.559158,1.08623 c -0.324208,0.25336 -0.68821,0.35424 -1.091895,0.30284 c -0.40164,-0.053 -0.774859,-0.26213 -1.119624,-0.62726"
|
||||
d="M 68.69671,318.05921 L 69.303779,317.42133 C 69.488991,317.62033 69.674932,317.73778 69.861621,317.77369 C 70.048292,317.80959 70.208338,317.77569 70.341725,317.67124 C 70.487447,317.55749 70.558463,317.39454 70.554781,317.18257 C 70.551081,316.97063 70.457111,316.74665 70.272722,316.51065 C 70.101177,316.29109 69.918273,316.15638 69.724021,316.10655 C 69.52978,316.05675 69.363913,316.08555 69.226426,316.19305 C 69.136146,316.26365 69.045272,316.36937 68.953702,316.51018 L 68.479938,315.74515 C 68.665683,315.6065 68.771975,315.44429 68.798523,315.2583 C 68.823013,315.07394 68.762353,314.88837 68.616384,314.70163 C 68.49454,314.54569 68.361176,314.45324 68.216311,314.42432 C 68.071427,314.39542 67.939495,314.42732 67.820475,314.52042 C 67.701412,314.61332 67.637897,314.74567 67.629831,314.91725 C 67.622231,315.08513 67.687931,315.27501 67.827036,315.48689 L 67.065566,315.86369 C 66.811032,315.39829 66.70931,314.99529 66.760405,314.65461 C 66.811515,314.31397 66.986872,314.0266 67.286482,313.79252 C 67.623048,313.52962 67.983592,313.44121 68.36819,313.52743 C 68.754827,313.61203 69.061984,313.80001 69.289648,314.0914 C 69.44356,314.28841 69.537098,314.50119 69.57024,314.72974 C 69.60546,314.95671 69.58028,315.19943 69.49474,315.45794 C 69.745447,315.35175 70.00905,315.34245 70.285741,315.42984 C 70.564579,315.51604 70.814628,315.70073 71.035877,315.9839 C 71.35814,316.39637 71.501949,316.83425 71.467329,317.29754 C 71.433159,317.75715 71.246768,318.11923 70.908171,318.38377 C 70.583963,318.63713 70.219961,318.73801 69.816276,318.68661 C 69.414636,318.63361 69.041417,318.42448 68.696652,318.05935"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5133"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 75.542127,314.84946 l -0.61065,-0.97724 l -1.629846,1.01842 l -0.509218,-0.81492 l -0.201255,-4.16257 l 0.642661,-0.40159 l 1.925098,3.08081 l 0.493592,-0.30842 l 0.511288,0.81823 l -0.493594,0.30842 l 0.610652,0.97724 l -0.738728,0.46162 m -1.121939,-1.79548 l -1.037068,-1.65966 l 0.122766,2.23098 l 0.914302,-0.57132"
|
||||
d="M 75.542127,314.84946 L 74.931477,313.87222 L 73.301631,314.89064 L 72.792413,314.07572 L 72.591158,309.91315 L 73.233819,309.51156 L 75.158917,312.59237 L 75.652509,312.28395 L 76.163797,313.10218 L 75.670203,313.4106 L 76.280855,314.38784 L 75.542127,314.84946 M 74.420188,313.05398 L 73.38312,311.39432 L 73.505886,313.6253 L 74.420188,313.05398"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5135"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 79.003498,310.83481 l 0.757855,-0.49565 c 0.130665,0.21442 0.285892,0.35745 0.465712,0.42911 c 0.179821,0.0717 0.339947,0.0732 0.480379,0.005 c 0.166193,-0.081 0.268982,-0.23266 0.308466,-0.45467 c 0.03831,-0.22442 -0.02587,-0.50748 -0.192528,-0.84921 c -0.157547,-0.323 -0.333669,-0.53263 -0.528382,-0.62889 c -0.192378,-0.0974 -0.379847,-0.10157 -0.562421,-0.0126 c -0.231714,0.11304 -0.378958,0.33985 -0.441716,0.68048 l -0.713058,0.20432 l -0.892267,-2.8809 l 2.138145,-1.04285 l 0.450355,0.92336 l -1.523734,0.74318 l 0.296443,0.93759 c 0.128918,-0.19903 0.286995,-0.34423 0.474241,-0.43556 c 0.332353,-0.16215 0.678354,-0.16853 1.037915,-0.0195 c 0.455824,0.19201 0.817302,0.56187 1.084437,1.10957 c 0.22033,0.45175 0.297723,0.92827 0.232236,1.42961 c -0.06317,0.50017 -0.326476,0.86328 -0.789913,1.08932 c -0.374495,0.18267 -0.747515,0.21389 -1.119013,0.0938 c -0.370316,-0.12362 -0.691382,-0.39874 -0.9632,-0.82535"
|
||||
d="M 79.003498,310.83481 L 79.761353,310.33916 C 79.892018,310.55358 80.047245,310.69661 80.227065,310.76827 C 80.406886,310.83997 80.567012,310.84147 80.707444,310.77327 C 80.873637,310.69227 80.976426,310.54061 81.01591,310.3186 C 81.05422,310.09418 80.99004,309.81112 80.823382,309.46939 C 80.665835,309.14639 80.489713,308.93676 80.295,308.8405 C 80.102622,308.7431 79.915153,308.73893 79.732579,308.8279 C 79.500865,308.94094 79.353621,309.16775 79.290863,309.50838 L 78.577805,309.7127 L 77.685538,306.8318 L 79.823683,305.78895 L 80.274038,306.71231 L 78.750304,307.45549 L 79.046747,308.39308 C 79.175665,308.19405 79.333742,308.04885 79.520988,307.95752 C 79.853341,307.79537 80.199342,307.78899 80.558903,307.93802 C 81.014727,308.13003 81.376205,308.49989 81.64334,309.04759 C 81.86367,309.49934 81.941063,309.97586 81.875576,310.4772 C 81.812406,310.97737 81.5491,311.34048 81.085663,311.56652 C 80.711168,311.74919 80.338148,311.78041 79.96665,311.66032 C 79.596334,311.5367 79.275268,311.26158 79.00345,310.83497"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5137"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 86.417599,304.43696 l -0.778484,0.40804 c -0.185223,-0.38706 -0.418547,-0.5294 -0.699963,-0.42697 c -0.183528,0.0668 -0.299961,0.2228 -0.349281,0.468 c -0.04687,0.2443 0.02467,0.67692 0.214645,1.29782 c 0.05001,-0.19001 0.126048,-0.34656 0.228136,-0.46963 c 0.1021,-0.12302 0.231437,-0.21309 0.388054,-0.2701 c 0.345044,-0.12556 0.704815,-0.0736 1.079338,0.15587 c 0.373624,0.22705 0.657521,0.60732 0.851691,1.14078 c 0.206634,0.56773 0.232906,1.06255 0.07887,1.48442 c -0.154062,0.4219 -0.431758,0.70587 -0.833082,0.85194 c -0.440491,0.16028 -0.88243,0.0847 -1.325991,-0.22822 c -0.441953,-0.31579 -0.839732,-0.95946 -1.19333,-1.93096 c -0.358945,-0.98619 -0.466747,-1.75063 -0.3234,-2.29333 c 0.143346,-0.54268 0.451165,-0.89998 0.923461,-1.07188 c 0.325463,-0.11847 0.64006,-0.10689 0.943804,0.0347 c 0.305295,0.13831 0.570474,0.42146 0.795541,0.84947 m -1.093445,2.94617 c 0.123804,0.34015 0.281056,0.57806 0.471775,0.71373 c 0.192268,0.13232 0.36916,0.1691 0.530672,0.11031 c 0.156615,-0.057 0.259153,-0.17882 0.307591,-0.36553 c 0.05089,-0.18758 0.01444,-0.45145 -0.109372,-0.79159 c -0.128256,-0.35237 -0.278065,-0.58884 -0.449412,-0.70938 c -0.171355,-0.12054 -0.340233,-0.15052 -0.506637,-0.09 c -0.161511,0.0588 -0.270503,0.18572 -0.326948,0.38088 c -0.05645,0.19515 -0.02901,0.44566 0.08231,0.75154"
|
||||
d="M 86.417599,304.43696 L 85.639115,304.845 C 85.453892,304.45794 85.220568,304.3156 84.939152,304.41803 C 84.755624,304.48483 84.639191,304.64083 84.589871,304.88603 C 84.543001,305.13033 84.614541,305.56295 84.804516,306.18385 C 84.854526,305.99384 84.930564,305.83729 85.032652,305.71422 C 85.134752,305.5912 85.264089,305.50113 85.420706,305.44412 C 85.76575,305.31856 86.125521,305.37052 86.500044,305.59999 C 86.873668,305.82704 87.157565,306.20731 87.351735,306.74077 C 87.558369,307.3085 87.584641,307.80332 87.430605,308.22519 C 87.276543,308.64709 86.998847,308.93106 86.597523,309.07713 C 86.157032,309.23741 85.715093,309.16183 85.271532,308.84891 C 84.829579,308.53312 84.4318,307.88945 84.078202,306.91795 C 83.719257,305.93176 83.611455,305.16732 83.754802,304.62462 C 83.898148,304.08194 84.205967,303.72464 84.678263,303.55274 C 85.003726,303.43427 85.318323,303.44585 85.622067,303.58744 C 85.927362,303.72575 86.192541,304.0089 86.417608,304.43691 M 85.324163,307.38308 C 85.447967,307.72323 85.605219,307.96114 85.795938,308.09681 C 85.988206,308.22913 86.165098,308.26591 86.32661,308.20712 C 86.483225,308.15012 86.585763,308.0283 86.634201,307.84159 C 86.685091,307.65401 86.648641,307.39014 86.524829,307.05 C 86.396573,306.69763 86.246764,306.46116 86.075417,306.34062 C 85.904062,306.22008 85.735184,306.1901 85.56878,306.25062 C 85.407269,306.30942 85.298277,306.43634 85.241832,306.6315 C 85.185382,306.82665 85.212822,307.07716 85.324142,307.38304"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5139"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 90.208876,302.71697 l -0.246646,-0.98925 l 2.98669,-0.74466 l 0.19278,0.7732 c -0.171393,0.35674 -0.315386,0.83952 -0.431986,1.4483 c -0.114704,0.60564 -0.163737,1.23785 -0.147098,1.89662 c 0.01853,0.65562 0.09112,1.23737 0.217753,1.74527 l -0.841429,0.20978 c -0.176349,-0.7934 -0.241203,-1.61326 -0.194563,-2.45958 c 0.04664,-0.84632 0.196833,-1.63794 0.450573,-2.37486 l -1.986074,0.49518"
|
||||
d="M 90.208876,302.71697 L 89.96223,301.72772 L 92.94892,300.98306 L 93.1417,301.75626 C 92.970307,302.113 92.826314,302.59578 92.709714,303.20456 C 92.59501,303.8102 92.545977,304.44241 92.562616,305.10118 C 92.581146,305.7568 92.653736,306.33855 92.780369,306.84645 L 91.93894,307.05623 C 91.762591,306.26283 91.697737,305.44297 91.744377,304.59665 C 91.791017,303.75033 91.94121,302.95871 92.19495,302.22179 L 90.208876,302.71697"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5141"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 97.182972,302.64934 c -0.235143,-0.0827 -0.421936,-0.21419 -0.560371,-0.39459 c -0.138433,-0.1804 -0.227039,-0.40857 -0.26582,-0.6845 c -0.0627,-0.44615 0.01383,-0.81849 0.229583,-1.11705 c 0.215397,-0.30114 0.537134,-0.48178 0.965221,-0.54195 c 0.45387,-0.0638 0.819365,0.0295 1.096486,0.27981 c 0.276754,0.24775 0.443585,0.57406 0.500488,0.97894 c 0.03878,0.27592 0.01446,0.52392 -0.07296,0.74395 c -0.0852,0.21709 -0.219654,0.39246 -0.403362,0.5261 c 0.283742,0.0916 0.507859,0.24552 0.672361,0.4617 c 0.164136,0.21361 0.270132,0.49061 0.317972,0.83102 c 0.04931,0.35072 0.02697,0.66942 -0.06681,0.9561 c -0.09133,0.28631 -0.241666,0.51653 -0.451248,0.69061 c -0.209582,0.17409 -0.457497,0.28126 -0.743745,0.32149 c -0.448716,0.0631 -0.841812,-0.0395 -1.179289,-0.30762 c -0.335262,-0.27109 -0.539859,-0.66967 -0.613794,-1.19575 c -0.04784,-0.3404 -0.02192,-0.64251 0.07774,-0.90636 c 0.09967,-0.26383 0.265511,-0.47779 0.497536,-0.6419 m 0.02796,-1.12025 c 0.03117,0.22177 0.106663,0.38473 0.226492,0.48886 c 0.122402,0.10376 0.263546,0.14442 0.423438,0.12193 c 0.162467,-0.0228 0.288226,-0.101 0.377289,-0.23449 c 0.08906,-0.13348 0.118007,-0.31112 0.08684,-0.5329 c -0.03008,-0.21404 -0.106329,-0.37294 -0.228727,-0.47671 c -0.11983,-0.1041 -0.258394,-0.14514 -0.415701,-0.12303 c -0.165044,0.0232 -0.291917,0.10283 -0.380614,0.2389 c -0.08906,0.13349 -0.118733,0.30596 -0.08901,0.51742 m 0.260178,2.44066 c 0.04277,0.3043 0.140215,0.52992 0.292356,0.67684 c 0.152133,0.14693 0.318461,0.20771 0.49898,0.18234 c 0.180513,-0.0254 0.320327,-0.12521 0.419421,-0.29958 c 0.101668,-0.1747 0.1304,-0.41937 0.08619,-0.73397 c -0.03806,-0.27079 -0.131325,-0.47595 -0.27979,-0.61549 c -0.145892,-0.13992 -0.310387,-0.19701 -0.493481,-0.17127 c -0.180517,0.0254 -0.322728,0.12685 -0.426614,0.30452 c -0.101679,0.17471 -0.134034,0.39358 -0.09706,0.65661"
|
||||
d="M 97.182972,302.64934 C 96.947829,302.56664 96.761036,302.43515 96.622601,302.25475 C 96.484168,302.07435 96.395562,301.84618 96.356781,301.57025 C 96.294081,301.1241 96.370611,300.75176 96.586364,300.4532 C 96.801761,300.15206 97.123498,299.97142 97.551585,299.91125 C 98.005455,299.84745 98.37095,299.94075 98.648071,300.19106 C 98.924825,300.43881 99.091656,300.76512 99.148559,301.17 C 99.187339,301.44592 99.163019,301.69392 99.075599,301.91395 C 98.990399,302.13104 98.855945,302.30641 98.672237,302.44005 C 98.955979,302.53165 99.180096,302.68557 99.344598,302.90175 C 99.508734,303.11536 99.61473,303.39236 99.66257,303.73277 C 99.71188,304.08349 99.68954,304.40219 99.59576,304.68887 C 99.50443,304.97518 99.354094,305.2054 99.144512,305.37948 C 98.93493,305.55357 98.687015,305.66074 98.400767,305.70097 C 97.952051,305.76407 97.558955,305.66147 97.221478,305.39335 C 96.886216,305.12226 96.681619,304.72368 96.607684,304.1976 C 96.559844,303.8572 96.585764,303.55509 96.685424,303.29124 C 96.785094,303.02741 96.950935,302.81345 97.18296,302.64934 M 97.21092,301.52909 C 97.24209,301.75086 97.317583,301.91382 97.437412,302.01795 C 97.559814,302.12171 97.700958,302.16237 97.86085,302.13988 C 98.023317,302.11708 98.149076,302.03888 98.238139,301.90539 C 98.327199,301.77191 98.356146,301.59427 98.324979,301.37249 C 98.294899,301.15845 98.21865,300.99955 98.096252,300.89578 C 97.976422,300.79168 97.837858,300.75064 97.680551,300.77275 C 97.515507,300.79595 97.388634,300.87558 97.299937,301.01165 C 97.210877,301.14514 97.181204,301.31761 97.210927,301.52907 M 97.471105,303.96973 C 97.513875,304.27403 97.61132,304.49965 97.763461,304.64657 C 97.915594,304.7935 98.081922,304.85428 98.262441,304.82891 C 98.442954,304.80351 98.582768,304.7037 98.681862,304.52933 C 98.78353,304.35463 98.812262,304.10996 98.768052,303.79536 C 98.729992,303.52457 98.636727,303.31941 98.488262,303.17987 C 98.34237,303.03995 98.177875,302.98286 97.994781,303.0086 C 97.814264,303.034 97.672053,303.13545 97.568167,303.31312 C 97.466488,303.48783 97.434133,303.7067 97.471107,303.96973"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5143"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 103.11145,303.7907 l 0.86647,-0.14752 c 0.0566,0.42278 0.23302,0.62899 0.52971,0.61863 c 0.20042,-0.007 0.3607,-0.11813 0.48086,-0.33341 c 0.12004,-0.21786 0.18698,-0.65145 0.20087,-1.30076 c -0.1064,0.16267 -0.22841,0.2868 -0.36614,0.37236 c -0.13772,0.0856 -0.29248,0.13141 -0.46424,0.1374 c -0.35655,0.0125 -0.67872,-0.1469 -0.96652,-0.47829 c -0.28519,-0.33139 -0.43766,-0.77947 -0.45737,-1.34423 c -0.0211,-0.60378 0.10689,-1.0838 0.38357,-1.44004 c 0.2768,-0.35621 0.62732,-0.54174 1.05153,-0.55657 c 0.47366,-0.0166 0.87187,0.19362 1.19462,0.63056 c 0.32263,0.43433 0.502,1.1681 0.53807,2.20133 c 0.0367,1.05145 -0.0969,1.81307 -0.401,2.28489 c -0.30404,0.47183 -0.71111,0.71668 -1.22121,0.73448 c -0.35394,0.0124 -0.65076,-0.0935 -0.89049,-0.31677 c -0.23721,-0.22623 -0.39679,-0.58024 -0.47876,-1.06206 m 1.95411,-2.46814 c -0.0125,-0.35914 -0.0899,-0.63265 -0.23191,-0.82053 c -0.14207,-0.18787 -0.29898,-0.27881 -0.47074,-0.27281 c -0.16655,0.006 -0.30304,0.09 -0.40939,0.25273 c -0.10384,0.16258 -0.14922,0.42863 -0.13633,0.79822 c 0.013,0.36959 0.0822,0.63815 0.20795,0.80571 c 0.12831,0.1675 0.28098,0.24817 0.45794,0.242 c 0.16917,-0.006 0.31075,-0.0929 0.42476,-0.26109 c 0.11661,-0.1682 0.16914,-0.4163 0.15775,-0.74424"
|
||||
d="M 103.11145,303.7907 L 103.97792,303.64318 C 104.03452,304.06596 104.21094,304.27217 104.50763,304.26181 C 104.70805,304.25481 104.86833,304.14368 104.98849,303.9284 C 105.10853,303.71054 105.17547,303.27695 105.18936,302.62764 C 105.08296,302.79031 104.96095,302.91444 104.82322,303 C 104.6855,303.0856 104.53074,303.13141 104.35898,303.1374 C 104.00243,303.1499 103.68026,302.9905 103.39246,302.65911 C 103.10727,302.32772 102.9548,301.87964 102.93509,301.31488 C 102.91399,300.7111 103.04198,300.23108 103.31866,299.87484 C 103.59546,299.51863 103.94598,299.3331 104.37019,299.31827 C 104.84385,299.30167 105.24206,299.51189 105.56481,299.94883 C 105.88744,300.38316 106.06681,301.11693 106.10288,302.15016 C 106.13958,303.20161 106.00598,303.96323 105.70188,304.43505 C 105.39784,304.90688 104.99077,305.15173 104.48067,305.16953 C 104.12673,305.18193 103.82991,305.07603 103.59018,304.85276 C 103.35297,304.62653 103.19339,304.27252 103.11142,303.7907 M 105.06553,301.32256 C 105.05303,300.96342 104.97563,300.68991 104.83362,300.50203 C 104.69155,300.31416 104.53464,300.22322 104.36288,300.22922 C 104.19633,300.23522 104.05984,300.31922 103.95349,300.48195 C 103.84965,300.64453 103.80427,300.91058 103.81716,301.28017 C 103.83016,301.64976 103.89936,301.91832 104.02511,302.08588 C 104.15342,302.25338 104.30609,302.33405 104.48305,302.32788 C 104.65222,302.32188 104.7938,302.23498 104.90781,302.06679 C 105.02442,301.89859 105.07695,301.65049 105.06556,301.32255"
|
||||
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="path5145"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -2212,17 +2949,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5240"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 84.037888,342.20654 l 0,-1.11621 l -0.922852,0 l 0,-0.77051 l 0.922852,0 l 0,-1.11621 l 0.615234,0 l 0,1.11621 l 0.925781,0 l 0,0.77051 l -0.925781,0 l 0,1.11621 l -0.615234,0" />
|
||||
d="M 84.037888,342.20654 L 84.037888,341.09033 L 83.115036,341.09033 L 83.115036,340.31982 L 84.037888,340.31982 L 84.037888,339.20361 L 84.653122,339.20361 L 84.653122,340.31982 L 85.578903,340.31982 L 85.578903,341.09033 L 84.653122,341.09033 L 84.653122,342.20654 L 84.037888,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5242"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 87.720505,342.82471 l -0.673828,0 l 0,-3.10254 c -0.251954,0.2832 -0.54297,0.49121 -0.873047,0.62402 l 0,-0.74707 c 0.187499,-0.0762 0.381835,-0.21191 0.583008,-0.40723 c 0.20117,-0.19726 0.340819,-0.42382 0.418945,-0.67968 l 0.544922,0 l 0,4.3125" />
|
||||
d="M 87.720505,342.82471 L 87.046677,342.82471 L 87.046677,339.72217 C 86.794723,340.00537 86.503707,340.21338 86.17363,340.34619 L 86.17363,339.59912 C 86.361129,339.52292 86.555465,339.38721 86.756638,339.19189 C 86.957808,338.99463 87.097457,338.76807 87.175583,338.51221 L 87.720505,338.51221 L 87.720505,342.82471" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5244"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 89.876755,338.51221 c 0.341795,0 0.618162,0.16309 0.829101,0.48925 c 0.210935,0.32423 0.316404,0.89259 0.316407,1.70508 c -3e-6,0.81055 -0.105472,1.37891 -0.316407,1.70508 c -0.210939,0.32422 -0.486329,0.48633 -0.826172,0.48633 c -0.341797,0 -0.618164,-0.16113 -0.829101,-0.4834 c -0.210938,-0.32226 -0.316407,-0.89453 -0.316406,-1.7168 c -10e-7,-0.80663 0.105468,-1.37206 0.316406,-1.69629 c 0.210937,-0.32616 0.486327,-0.48925 0.826172,-0.48925 m 0,0.68261 c -0.132814,1e-5 -0.239259,0.0879 -0.319336,0.26368 c -0.07813,0.17578 -0.117189,0.5918 -0.117188,1.24804 c -10e-7,0.65625 0.03906,1.07227 0.117188,1.24805 c 0.08008,0.17383 0.186522,0.26074 0.319336,0.26074 c 0.134764,0 0.241209,-0.0879 0.319336,-0.26367 c 0.07812,-0.17578 0.117185,-0.59082 0.117187,-1.24512 c -2e-6,-0.65624 -0.03906,-1.07226 -0.117187,-1.24804 c -0.07813,-0.17578 -0.184572,-0.26367 -0.319336,-0.26368" />
|
||||
d="M 89.876755,338.51221 C 90.21855,338.51221 90.494917,338.6753 90.705856,339.00146 C 90.916791,339.32569 91.02226,339.89405 91.022263,340.70654 C 91.02226,341.51709 90.916791,342.08545 90.705856,342.41162 C 90.494917,342.73584 90.219527,342.89795 89.879684,342.89795 C 89.537887,342.89795 89.26152,342.73682 89.050583,342.41455 C 88.839645,342.09229 88.734176,341.52002 88.734177,340.69775 C 88.734176,339.89112 88.839645,339.32569 89.050583,339.00146 C 89.26152,338.6753 89.53691,338.51221 89.876755,338.51221 M 89.876755,339.19482 C 89.743941,339.19483 89.637496,339.28272 89.557419,339.4585 C 89.479289,339.63428 89.44023,340.0503 89.440231,340.70654 C 89.44023,341.36279 89.479291,341.77881 89.557419,341.95459 C 89.637499,342.12842 89.743941,342.21533 89.876755,342.21533 C 90.011519,342.21533 90.117964,342.12743 90.196091,341.95166 C 90.274211,341.77588 90.313276,341.36084 90.313278,340.70654 C 90.313276,340.0503 90.274218,339.63428 90.196091,339.4585 C 90.117961,339.28272 90.011519,339.19483 89.876755,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.95105651,0.309017,-0.309017,0.95105651,138.48632,-48.310565)"
|
||||
@ -2231,17 +2968,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5246"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 93.76445,342.20654 l 0,-1.11621 l -0.922851,0 l 0,-0.77051 l 0.922851,0 l 0,-1.11621 l 0.615234,0 l 0,1.11621 l 0.925782,0 l 0,0.77051 l -0.925782,0 l 0,1.11621 l -0.615234,0" />
|
||||
d="M 93.76445,342.20654 L 93.76445,341.09033 L 92.841599,341.09033 L 92.841599,340.31982 L 93.76445,340.31982 L 93.76445,339.20361 L 94.379684,339.20361 L 94.379684,340.31982 L 95.305466,340.31982 L 95.305466,341.09033 L 94.379684,341.09033 L 94.379684,342.20654 L 93.76445,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5248"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 98.000778,342.06006 l 0,0.76465 l -2.367187,0 c 0.02539,-0.28907 0.102539,-0.56348 0.231445,-0.82325 c 0.130859,-0.26171 0.383788,-0.60449 0.758789,-1.02832 c 0.296874,-0.33788 0.479491,-0.5664 0.547852,-0.68554 c 0.10156,-0.17383 0.152342,-0.34863 0.152343,-0.52442 c -10e-7,-0.18749 -0.04199,-0.32909 -0.125976,-0.4248 c -0.08399,-0.0957 -0.194338,-0.14355 -0.331055,-0.14356 c -0.298829,1e-5 -0.459962,0.22364 -0.483398,0.6709 l -0.670899,-0.082 c 0.04102,-0.4375 0.162109,-0.75878 0.363282,-0.96387 c 0.203124,-0.20507 0.472655,-0.30761 0.808593,-0.30761 c 0.369139,0 0.647459,0.12012 0.834961,0.36035 c 0.187498,0.24024 0.281248,0.51563 0.28125,0.82617 c -2e-6,0.17578 -0.02442,0.34668 -0.07324,0.5127 c -0.04688,0.16406 -0.120119,0.33008 -0.219727,0.49804 c -0.09961,0.16602 -0.265626,0.37891 -0.498046,0.63867 c -0.216799,0.24415 -0.354494,0.40528 -0.413086,0.4834 c -0.05664,0.0781 -0.102541,0.1543 -0.137696,0.22852 l 1.341797,0" />
|
||||
d="M 98.000778,342.06006 L 98.000778,342.82471 L 95.633591,342.82471 C 95.658981,342.53564 95.73613,342.26123 95.865036,342.00146 C 95.995895,341.73975 96.248824,341.39697 96.623825,340.97314 C 96.920699,340.63526 97.103316,340.40674 97.171677,340.2876 C 97.273237,340.11377 97.324019,339.93897 97.32402,339.76318 C 97.324019,339.57569 97.28203,339.43409 97.198044,339.33838 C 97.114054,339.24268 97.003706,339.19483 96.866989,339.19482 C 96.56816,339.19483 96.407027,339.41846 96.383591,339.86572 L 95.712692,339.78372 C 95.753712,339.34622 95.874801,339.02494 96.075974,338.81985 C 96.279098,338.61478 96.548629,338.51224 96.884567,338.51224 C 97.253706,338.51224 97.532026,338.63236 97.719528,338.87259 C 97.907026,339.11283 98.000776,339.38822 98.000778,339.69876 C 98.000776,339.87454 97.976358,340.04544 97.927538,340.21146 C 97.880658,340.37552 97.807419,340.54154 97.707811,340.7095 C 97.608201,340.87552 97.442185,341.08841 97.209765,341.34817 C 96.992966,341.59232 96.855271,341.75345 96.796679,341.83157 C 96.740039,341.90967 96.694138,341.98587 96.658983,342.06009 L 98.00078,342.06009" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5251"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 99.603317,338.51221 c 0.341795,0 0.618163,0.16309 0.829103,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.31641,1.70508 c -1e-5,0.81055 -0.10548,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.486331,0.48633 -0.826173,0.48633 c -0.341798,0 -0.618165,-0.16113 -0.829102,-0.4834 c -0.210937,-0.32226 -0.316406,-0.89453 -0.316406,-1.7168 c 0,-0.80663 0.105469,-1.37206 0.316406,-1.69629 c 0.210937,-0.32616 0.486328,-0.48925 0.826172,-0.48925 m 0,0.68261 c -0.132813,1e-5 -0.239259,0.0879 -0.319336,0.26368 c -0.07813,0.17578 -0.117188,0.5918 -0.117187,1.24804 c -10e-7,0.65625 0.03906,1.07227 0.117187,1.24805 c 0.08008,0.17383 0.186523,0.26074 0.319336,0.26074 c 0.134764,0 0.24121,-0.0879 0.319336,-0.26367 c 0.07813,-0.17578 0.117187,-0.59082 0.117187,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.117187,-1.24804 c -0.07813,-0.17578 -0.184572,-0.26367 -0.319336,-0.26368" />
|
||||
d="M 99.603317,338.51221 C 99.945112,338.51221 100.22148,338.6753 100.43242,339.00146 C 100.64335,339.32569 100.74882,339.89405 100.74883,340.70654 C 100.74882,341.51709 100.64335,342.08545 100.43242,342.41162 C 100.22148,342.73584 99.946089,342.89795 99.606247,342.89795 C 99.264449,342.89795 98.988082,342.73682 98.777145,342.41455 C 98.566208,342.09229 98.460739,341.52002 98.460739,340.69775 C 98.460739,339.89112 98.566208,339.32569 98.777145,339.00146 C 98.988082,338.6753 99.263473,338.51221 99.603317,338.51221 M 99.603317,339.19482 C 99.470504,339.19483 99.364058,339.28272 99.283981,339.4585 C 99.205851,339.63428 99.166793,340.0503 99.166794,340.70654 C 99.166793,341.36279 99.205854,341.77881 99.283981,341.95459 C 99.364061,342.12842 99.470504,342.21533 99.603317,342.21533 C 99.738081,342.21533 99.844527,342.12743 99.922653,341.95166 C 100.00078,341.77588 100.03984,341.36084 100.03984,340.70654 C 100.03984,340.0503 100.00074,339.63428 99.922653,339.4585 C 99.844523,339.28272 99.738081,339.19483 99.603317,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.89879403,0.43837115,-0.43837115,0.89879403,188.46813,-43.413613)"
|
||||
@ -2250,17 +2987,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5253"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 103.49101,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61524,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61524,0" />
|
||||
d="M 103.49101,342.20654 L 103.49101,341.09033 L 102.56816,341.09033 L 102.56816,340.31982 L 103.49101,340.31982 L 103.49101,339.20361 L 104.10625,339.20361 L 104.10625,340.31982 L 105.03203,340.31982 L 105.03203,341.09033 L 104.10625,341.09033 L 104.10625,342.20654 L 103.49101,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5255"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 105.42168,341.68506 l 0.65332,-0.0967 c 0.0176,0.20312 0.0732,0.3584 0.16699,0.46582 c 0.0937,0.10742 0.2041,0.16113 0.33105,0.16113 c 0.13867,0 0.25586,-0.0635 0.35157,-0.19043 c 0.0957,-0.12695 0.14355,-0.30273 0.14355,-0.52734 c 0,-0.20898 -0.0459,-0.37305 -0.13769,-0.49219 c -0.0918,-0.11914 -0.20313,-0.17871 -0.33399,-0.17871 c -0.0859,0 -0.18848,0.0205 -0.30762,0.0615 l 0.0733,-0.67089 c 0.17382,0.004 0.31152,-0.043 0.41308,-0.14063 c 0.0996,-0.0976 0.14941,-0.23535 0.14942,-0.41309 c -1e-5,-0.14843 -0.0361,-0.26464 -0.1084,-0.34863 c -0.0723,-0.084 -0.16504,-0.12597 -0.27832,-0.12598 c -0.11328,1e-5 -0.21192,0.0488 -0.2959,0.14649 c -0.082,0.0957 -0.13086,0.23828 -0.14649,0.42773 l -0.62402,-0.1289 c 0.0644,-0.39258 0.19043,-0.67773 0.37793,-0.85547 c 0.1875,-0.17773 0.42383,-0.2666 0.70899,-0.2666 c 0.32031,0 0.57421,0.11426 0.76171,0.34277 c 0.18945,0.22852 0.28418,0.48145 0.28418,0.75879 c 0,0.1875 -0.043,0.35645 -0.1289,0.50684 c -0.084,0.15039 -0.21094,0.28222 -0.38086,0.3955 c 0.19726,0.0527 0.35742,0.16895 0.48047,0.34864 c 0.12499,0.17969 0.18749,0.40429 0.1875,0.67382 c -1e-5,0.39258 -0.11719,0.71778 -0.35157,0.97559 c -0.23242,0.25586 -0.50976,0.38379 -0.83203,0.38379 c -0.30859,0 -0.57031,-0.1084 -0.78515,-0.3252 c -0.21289,-0.21679 -0.33692,-0.51269 -0.37207,-0.88769" />
|
||||
d="M 105.42168,341.68506 L 106.075,341.58836 C 106.0926,341.79148 106.1482,341.94676 106.24199,342.05418 C 106.33569,342.1616 106.44609,342.21531 106.57304,342.21531 C 106.71171,342.21531 106.8289,342.15181 106.92461,342.02488 C 107.02031,341.89793 107.06816,341.72215 107.06816,341.49754 C 107.06816,341.28856 107.02226,341.12449 106.93047,341.00535 C 106.83867,340.88621 106.72734,340.82664 106.59648,340.82664 C 106.51058,340.82664 106.408,340.84714 106.28886,340.88814 L 106.36216,340.21725 C 106.53598,340.22125 106.67368,340.17425 106.77524,340.07662 C 106.87484,339.97902 106.92465,339.84127 106.92466,339.66353 C 106.92465,339.5151 106.88856,339.39889 106.81626,339.3149 C 106.74396,339.2309 106.65122,339.18893 106.53794,339.18892 C 106.42466,339.18893 106.32602,339.23772 106.24204,339.33541 C 106.16004,339.43111 106.11118,339.57369 106.09555,339.76314 L 105.47153,339.63424 C 105.53593,339.24166 105.66196,338.95651 105.84946,338.77877 C 106.03696,338.60104 106.27329,338.51217 106.55845,338.51217 C 106.87876,338.51217 107.13266,338.62643 107.32016,338.85494 C 107.50961,339.08346 107.60434,339.33639 107.60434,339.61373 C 107.60434,339.80123 107.56134,339.97018 107.47544,340.12057 C 107.39144,340.27096 107.2645,340.40279 107.09458,340.51607 C 107.29184,340.56877 107.452,340.68502 107.57505,340.86471 C 107.70004,341.0444 107.76254,341.269 107.76255,341.53853 C 107.76254,341.93111 107.64536,342.25631 107.41098,342.51412 C 107.17856,342.76998 106.90122,342.89791 106.57895,342.89791 C 106.27036,342.89791 106.00864,342.78951 105.7938,342.57271 C 105.58091,342.35592 105.45688,342.06002 105.42173,341.68502" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5257"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 109.32988,338.51221 c 0.34179,0 0.61816,0.16309 0.8291,0.48925 c 0.21094,0.32423 0.31641,0.89259 0.31641,1.70508 c 0,0.81055 -0.10547,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61817,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21093,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23926,0.0879 -0.31934,0.26368 c -0.0781,0.17578 -0.11718,0.5918 -0.11718,1.24804 c 0,0.65625 0.0391,1.07227 0.11718,1.24805 c 0.0801,0.17383 0.18653,0.26074 0.31934,0.26074 c 0.13476,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11718,-0.59082 0.11718,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11718,-1.24804 c -0.0781,-0.17578 -0.18458,-0.26367 -0.31934,-0.26368" />
|
||||
d="M 109.32988,338.51221 C 109.67167,338.51221 109.94804,338.6753 110.15898,339.00146 C 110.36992,339.32569 110.47539,339.89405 110.47539,340.70654 C 110.47539,341.51709 110.36992,342.08545 110.15898,342.41162 C 109.94804,342.73584 109.67265,342.89795 109.33281,342.89795 C 108.99101,342.89795 108.71464,342.73682 108.50371,342.41455 C 108.29277,342.09229 108.1873,341.52002 108.1873,340.69775 C 108.1873,339.89112 108.29277,339.32569 108.50371,339.00146 C 108.71464,338.6753 108.99004,338.51221 109.32988,338.51221 M 109.32988,339.19482 C 109.19707,339.19483 109.09062,339.28272 109.01054,339.4585 C 108.93244,339.63428 108.89336,340.0503 108.89336,340.70654 C 108.89336,341.36279 108.93246,341.77881 109.01054,341.95459 C 109.09064,342.12842 109.19707,342.21533 109.32988,342.21533 C 109.46464,342.21533 109.57109,342.12743 109.64922,341.95166 C 109.72732,341.77588 109.7664,341.36084 109.7664,340.70654 C 109.7664,340.0503 109.7273,339.63428 109.64922,339.4585 C 109.57112,339.28272 109.46464,339.19483 109.32988,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.80901698,0.58778526,-0.58778526,0.80901698,249.43971,-29.011822)"
|
||||
@ -2269,17 +3006,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5259"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 113.21758,342.20654 l 0,-1.11621 l -0.92286,0 l 0,-0.77051 l 0.92286,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61523,0" />
|
||||
d="M 113.21758,342.20654 L 113.21758,341.09033 L 112.29472,341.09033 L 112.29472,340.31982 L 113.21758,340.31982 L 113.21758,339.20361 L 113.83281,339.20361 L 113.83281,340.31982 L 114.75859,340.31982 L 114.75859,341.09033 L 113.83281,341.09033 L 113.83281,342.20654 L 113.21758,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5261"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 116.4959,342.82471 l 0,-0.86426 l -1.44141,0 l 0,-0.7207 l 1.52637,-2.72754 l 0.56836,0 l 0,2.72461 l 0.43652,0 l 0,0.72363 l -0.43652,0 l 0,0.86426 l -0.65332,0 m 0,-1.58789 l 0,-1.46778 l -0.8086,1.46778 l 0.8086,0" />
|
||||
d="M 116.4959,342.82471 L 116.4959,341.96045 L 115.05449,341.96045 L 115.05449,341.23975 L 116.58086,338.51221 L 117.14922,338.51221 L 117.14922,341.23682 L 117.58574,341.23682 L 117.58574,341.96045 L 117.14922,341.96045 L 117.14922,342.82471 L 116.4959,342.82471 M 116.4959,341.23682 L 116.4959,339.76904 L 115.6873,341.23682 L 116.4959,341.23682" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5263"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 119.05644,338.51221 c 0.3418,0 0.61816,0.16309 0.8291,0.48925 c 0.21094,0.32423 0.31641,0.89259 0.31641,1.70508 c 0,0.81055 -0.10547,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61816,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21094,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23926,0.0879 -0.31933,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31933,0.26074 c 0.13477,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11718,-0.59082 0.11719,-1.24512 c -1e-5,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31934,-0.26368" />
|
||||
d="M 119.05644,338.51221 C 119.39824,338.51221 119.6746,338.6753 119.88554,339.00146 C 120.09648,339.32569 120.20195,339.89405 120.20195,340.70654 C 120.20195,341.51709 120.09648,342.08545 119.88554,342.41162 C 119.6746,342.73584 119.39921,342.89795 119.05937,342.89795 C 118.71757,342.89795 118.44121,342.73682 118.23027,342.41455 C 118.01933,342.09229 117.91386,341.52002 117.91386,340.69775 C 117.91386,339.89112 118.01933,339.32569 118.23027,339.00146 C 118.44121,338.6753 118.7166,338.51221 119.05644,338.51221 M 119.05644,339.19482 C 118.92363,339.19483 118.81718,339.28272 118.73711,339.4585 C 118.65901,339.63428 118.61992,340.0503 118.61992,340.70654 C 118.61992,341.36279 118.65902,341.77881 118.73711,341.95459 C 118.81721,342.12842 118.92363,342.21533 119.05644,342.21533 C 119.19121,342.21533 119.29765,342.12743 119.37578,341.95166 C 119.45388,341.77588 119.49296,341.36084 119.49297,340.70654 C 119.49296,340.0503 119.45387,339.63428 119.37578,339.4585 C 119.29768,339.28272 119.19121,339.19483 119.05644,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.69465835,0.7193398,-0.7193398,0.69465835,308.98322,-5.1409073)"
|
||||
@ -2288,17 +3025,17 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5265"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 122.94414,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61523,0" />
|
||||
d="M 122.94414,342.20654 L 122.94414,341.09033 L 122.02129,341.09033 L 122.02129,340.31982 L 122.94414,340.31982 L 122.94414,339.20361 L 123.55937,339.20361 L 123.55937,340.31982 L 124.48515,340.31982 L 124.48515,341.09033 L 123.55937,341.09033 L 123.55937,342.20654 L 122.94414,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5267"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 124.90996,341.72021 l 0.67383,-0.085 c 0.0176,0.1875 0.0752,0.33497 0.17285,0.44239 c 0.0977,0.10742 0.20507,0.16113 0.32226,0.16113 c 0.13867,0 0.25781,-0.0684 0.35743,-0.20508 c 0.0996,-0.13867 0.14941,-0.35058 0.14941,-0.63574 c 0,-0.26953 -0.0498,-0.46875 -0.14941,-0.59766 c -0.0977,-0.1289 -0.22266,-0.19335 -0.375,-0.19336 c -0.19337,10e-6 -0.36719,0.1045 -0.52149,0.31348 l -0.54785,-0.0967 l 0.3457,-2.23535 l 1.78418,0 l 0,0.77051 l -1.27148,0 l -0.1084,0.72949 c 0.15234,-0.0918 0.30664,-0.13769 0.46289,-0.1377 c 0.27734,10e-6 0.51269,0.10938 0.70605,0.32813 c 0.24414,0.2793 0.36621,0.64746 0.36622,1.10449 c -1e-5,0.37695 -0.1045,0.72363 -0.31348,1.04004 c -0.20703,0.31641 -0.50391,0.47461 -0.89063,0.47461 c -0.3125,0 -0.57422,-0.10156 -0.78515,-0.30469 c -0.20899,-0.20508 -0.33496,-0.49609 -0.37793,-0.87305" />
|
||||
d="M 124.90996,341.72021 L 125.58379,341.63521 C 125.60139,341.82271 125.65899,341.97018 125.75664,342.0776 C 125.85434,342.18502 125.96171,342.23873 126.0789,342.23873 C 126.21757,342.23873 126.33671,342.17033 126.43633,342.03365 C 126.53593,341.89498 126.58574,341.68307 126.58574,341.39791 C 126.58574,341.12838 126.53594,340.92916 126.43633,340.80025 C 126.33863,340.67135 126.21367,340.6069 126.06133,340.60689 C 125.86796,340.6069 125.69414,340.71139 125.53984,340.92037 L 124.99199,340.82367 L 125.33769,338.58832 L 127.12187,338.58832 L 127.12187,339.35883 L 125.85039,339.35883 L 125.74199,340.08832 C 125.89433,339.99652 126.04863,339.95063 126.20488,339.95062 C 126.48222,339.95063 126.71757,340.06 126.91093,340.27875 C 127.15507,340.55805 127.27714,340.92621 127.27715,341.38324 C 127.27714,341.76019 127.17265,342.10687 126.96367,342.42328 C 126.75664,342.73969 126.45976,342.89789 126.07304,342.89789 C 125.76054,342.89789 125.49882,342.79633 125.28789,342.5932 C 125.0789,342.38812 124.95293,342.09711 124.90996,341.72015" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5269"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 128.783,338.51221 c 0.3418,0 0.61817,0.16309 0.82911,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.3164,1.70508 c 0,0.81055 -0.10547,1.37891 -0.3164,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82618,0.48633 c -0.34179,0 -0.61816,-0.16113 -0.8291,-0.4834 c -0.21093,-0.32226 -0.3164,-0.89453 -0.3164,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.3164,-1.69629 c 0.21094,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23925,0.0879 -0.31933,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31933,0.26074 c 0.13477,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11719,-0.59082 0.11719,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31934,-0.26368" />
|
||||
d="M 128.783,338.51221 C 129.1248,338.51221 129.40117,338.6753 129.61211,339.00146 C 129.82304,339.32569 129.92851,339.89405 129.92851,340.70654 C 129.92851,341.51709 129.82304,342.08545 129.61211,342.41162 C 129.40117,342.73584 129.12578,342.89795 128.78593,342.89795 C 128.44414,342.89795 128.16777,342.73682 127.95683,342.41455 C 127.7459,342.09229 127.64043,341.52002 127.64043,340.69775 C 127.64043,339.89112 127.7459,339.32569 127.95683,339.00146 C 128.16777,338.6753 128.44316,338.51221 128.783,338.51221 M 128.783,339.19482 C 128.65019,339.19483 128.54375,339.28272 128.46367,339.4585 C 128.38557,339.63428 128.34648,340.0503 128.34648,340.70654 C 128.34648,341.36279 128.38558,341.77881 128.46367,341.95459 C 128.54377,342.12842 128.65019,342.21533 128.783,342.21533 C 128.91777,342.21533 129.02421,342.12743 129.10234,341.95166 C 129.18044,341.77588 129.21953,341.36084 129.21953,340.70654 C 129.21953,340.0503 129.18043,339.63428 129.10234,339.4585 C 129.02424,339.28272 128.91777,339.19483 128.783,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.58778524,0.80901699,-0.80901699,0.58778524,353.69519,20.372443)"
|
||||
@ -2307,50 +3044,50 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5271"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 132.6707,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92579,0 l 0,0.77051 l -0.92579,0 l 0,1.11621 l -0.61523,0" />
|
||||
d="M 132.6707,342.20654 L 132.6707,341.09033 L 131.74785,341.09033 L 131.74785,340.31982 L 132.6707,340.31982 L 132.6707,339.20361 L 133.28593,339.20361 L 133.28593,340.31982 L 134.21172,340.31982 L 134.21172,341.09033 L 133.28593,341.09033 L 133.28593,342.20654 L 132.6707,342.20654" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5273"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 136.91289,339.58154 l -0.65332,0.0879 c -0.0312,-0.32031 -0.15918,-0.48046 -0.38379,-0.48047 c -0.14649,1e-5 -0.26856,0.0801 -0.36621,0.24024 c -0.0957,0.16016 -0.15625,0.4834 -0.18164,0.96973 c 0.084,-0.1211 0.17773,-0.21192 0.28125,-0.27247 c 0.10351,-0.0605 0.21777,-0.0908 0.34277,-0.0908 c 0.27539,1e-5 0.51562,0.12891 0.7207,0.38672 c 0.20508,0.25586 0.30762,0.59668 0.30762,1.02246 c 0,0.45313 -0.1084,0.8086 -0.32519,1.06641 c -0.2168,0.25781 -0.48536,0.38672 -0.80567,0.38672 c -0.35156,0 -0.64355,-0.16699 -0.87598,-0.50098 c -0.23046,-0.33593 -0.3457,-0.8916 -0.3457,-1.66699 c 0,-0.78711 0.12012,-1.35351 0.36035,-1.69922 c 0.24024,-0.3457 0.54883,-0.51855 0.92578,-0.51855 c 0.25977,0 0.47852,0.0889 0.65625,0.2666 c 0.17969,0.17578 0.29395,0.44336 0.34278,0.80273 m -1.52637,1.7959 c 0,0.27149 0.0498,0.47949 0.14941,0.62402 c 0.10157,0.14258 0.2168,0.21387 0.34571,0.21387 c 0.125,0 0.22851,-0.0596 0.31054,-0.17871 c 0.084,-0.11914 0.12598,-0.31445 0.12598,-0.58594 c 0,-0.28124 -0.0449,-0.48632 -0.13476,-0.61523 c -0.0899,-0.1289 -0.20118,-0.19336 -0.33399,-0.19336 c -0.12891,0 -0.23828,0.0615 -0.32812,0.18457 c -0.0898,0.12305 -0.13477,0.30664 -0.13477,0.55078" />
|
||||
d="M 136.91289,339.58154 L 136.25957,339.66944 C 136.22837,339.34913 136.10039,339.18898 135.87578,339.18897 C 135.72929,339.18898 135.60722,339.26907 135.50957,339.42921 C 135.41387,339.58937 135.35332,339.91261 135.32793,340.39894 C 135.41193,340.27784 135.50566,340.18702 135.60918,340.12647 C 135.71269,340.06597 135.82695,340.03567 135.95195,340.03567 C 136.22734,340.03568 136.46757,340.16458 136.67265,340.42239 C 136.87773,340.67825 136.98027,341.01907 136.98027,341.44485 C 136.98027,341.89798 136.87187,342.25345 136.65508,342.51126 C 136.43828,342.76907 136.16972,342.89798 135.84941,342.89798 C 135.49785,342.89798 135.20586,342.73099 134.97343,342.397 C 134.74297,342.06107 134.62773,341.5054 134.62773,340.73001 C 134.62773,339.9429 134.74785,339.3765 134.98808,339.03079 C 135.22832,338.68509 135.53691,338.51224 135.91386,338.51224 C 136.17363,338.51224 136.39238,338.60114 136.57011,338.77884 C 136.7498,338.95462 136.86406,339.2222 136.91289,339.58157 M 135.38652,341.37747 C 135.38652,341.64896 135.43632,341.85696 135.53593,342.00149 C 135.6375,342.14407 135.75273,342.21536 135.88164,342.21536 C 136.00664,342.21536 136.11015,342.15576 136.19218,342.03665 C 136.27618,341.91751 136.31816,341.7222 136.31816,341.45071 C 136.31816,341.16947 136.27326,340.96439 136.1834,340.83548 C 136.0935,340.70658 135.98222,340.64212 135.84941,340.64212 C 135.7205,340.64212 135.61113,340.70362 135.52129,340.82669 C 135.43149,340.94974 135.38652,341.13333 135.38652,341.37747" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5275"
|
||||
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
d="m 138.50957,338.51221 c 0.34179,0 0.61816,0.16309 0.8291,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.31641,1.70508 c -1e-5,0.81055 -0.10548,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61817,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21093,-0.32616 0.48632,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13282,1e-5 -0.23926,0.0879 -0.31934,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31934,0.26074 c 0.13476,0 0.24121,-0.0879 0.31933,-0.26367 c 0.0781,-0.17578 0.11719,-0.59082 0.11719,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31933,-0.26368" />
|
||||
d="M 138.50957,338.51221 C 138.85136,338.51221 139.12773,338.6753 139.33867,339.00146 C 139.5496,339.32569 139.65507,339.89405 139.65508,340.70654 C 139.65507,341.51709 139.5496,342.08545 139.33867,342.41162 C 139.12773,342.73584 138.85234,342.89795 138.5125,342.89795 C 138.1707,342.89795 137.89433,342.73682 137.6834,342.41455 C 137.47246,342.09229 137.36699,341.52002 137.36699,340.69775 C 137.36699,339.89112 137.47246,339.32569 137.6834,339.00146 C 137.89433,338.6753 138.16972,338.51221 138.50957,338.51221 M 138.50957,339.19482 C 138.37675,339.19483 138.27031,339.28272 138.19023,339.4585 C 138.11213,339.63428 138.07304,340.0503 138.07304,340.70654 C 138.07304,341.36279 138.11214,341.77881 138.19023,341.95459 C 138.27033,342.12842 138.37675,342.21533 138.50957,342.21533 C 138.64433,342.21533 138.75078,342.12743 138.8289,341.95166 C 138.907,341.77588 138.94609,341.36084 138.94609,340.70654 C 138.94609,340.0503 138.90699,339.63428 138.8289,339.4585 C 138.7508,339.28272 138.64433,339.19483 138.50957,339.19482" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
|
||||
id="text5399">
|
||||
<path
|
||||
d="m 83.861328,334.1709 l 1.40625,-0.13672 c 0.08463,0.47201 0.255532,0.81869 0.512695,1.04004 c 0.260415,0.22135 0.610349,0.33203 1.049805,0.33203 c 0.465491,0 0.815426,-0.0977 1.049805,-0.29297 c 0.237625,-0.19856 0.35644,-0.42968 0.356445,-0.69336 c -5e-6,-0.16927 -0.05046,-0.3125 -0.151367,-0.42969 c -0.09766,-0.12044 -0.270187,-0.2246 -0.517578,-0.3125 c -0.169275,-0.0586 -0.555017,-0.16275 -1.157227,-0.3125 c -0.774741,-0.19205 -1.318361,-0.42805 -1.630859,-0.708 c -0.439454,-0.39388 -0.65918,-0.87402 -0.65918,-1.44043 c 0,-0.36458 0.102539,-0.70475 0.307617,-1.02051 c 0.208333,-0.319 0.506184,-0.56152 0.893555,-0.72754 c 0.390623,-0.16601 0.861,-0.24902 1.411133,-0.24902 c 0.898433,0 1.573888,0.19694 2.026367,0.59082 c 0.455724,0.39388 0.694981,0.9196 0.717773,1.57715 l -1.445312,0.0635 c -0.06185,-0.36783 -0.195317,-0.6315 -0.400391,-0.79101 c -0.201826,-0.16276 -0.506188,-0.24414 -0.913086,-0.24414 c -0.419924,0 -0.7487,0.0863 -0.986328,0.25878 c -0.152997,0.11069 -0.229494,0.2588 -0.229492,0.44434 c -2e-6,0.16928 0.07161,0.31413 0.214844,0.43457 c 0.182289,0.153 0.624997,0.31251 1.328125,0.47852 c 0.703121,0.16602 1.222326,0.33854 1.557617,0.51757 c 0.338536,0.17579 0.602208,0.4183 0.791016,0.72754 c 0.192051,0.306 0.288079,0.68523 0.288086,1.1377 c -7e-6,0.41016 -0.113939,0.79427 -0.341797,1.15234 c -0.22787,0.35808 -0.550136,0.625 -0.966797,0.80078 c -0.416671,0.17253 -0.935876,0.25879 -1.557617,0.25879 c -0.904951,0 -1.599937,-0.20833 -2.084961,-0.625 c -0.485027,-0.41992 -0.77474,-1.03027 -0.869141,-1.83105"
|
||||
d="M 83.861328,334.1709 L 85.267578,334.03418 C 85.352208,334.50619 85.52311,334.85287 85.780273,335.07422 C 86.040688,335.29557 86.390622,335.40625 86.830078,335.40625 C 87.295569,335.40625 87.645504,335.30855 87.879883,335.11328 C 88.117508,334.91472 88.236323,334.6836 88.236328,334.41992 C 88.236323,334.25065 88.185868,334.10742 88.084961,333.99023 C 87.987301,333.86979 87.814774,333.76563 87.567383,333.67773 C 87.398108,333.61913 87.012366,333.51498 86.410156,333.36523 C 85.635415,333.17318 85.091795,332.93718 84.779297,332.65723 C 84.339843,332.26335 84.120117,331.78321 84.120117,331.2168 C 84.120117,330.85222 84.222656,330.51205 84.427734,330.19629 C 84.636067,329.87729 84.933918,329.63477 85.321289,329.46875 C 85.711912,329.30274 86.182289,329.21973 86.732422,329.21973 C 87.630855,329.21973 88.30631,329.41667 88.758789,329.81055 C 89.214513,330.20443 89.45377,330.73015 89.476562,331.3877 L 88.03125,331.4512 C 87.9694,331.08337 87.835933,330.8197 87.630859,330.66019 C 87.429033,330.49743 87.124671,330.41605 86.717773,330.41605 C 86.297849,330.41605 85.969073,330.50235 85.731445,330.67483 C 85.578448,330.78552 85.501951,330.93363 85.501953,331.11917 C 85.501951,331.28845 85.573563,331.4333 85.716797,331.55374 C 85.899086,331.70674 86.341794,331.86625 87.044922,332.03226 C 87.748043,332.19828 88.267248,332.3708 88.602539,332.54983 C 88.941075,332.72562 89.204747,332.96813 89.393555,333.27737 C 89.585606,333.58337 89.681634,333.9626 89.681641,334.41507 C 89.681634,334.82523 89.567702,335.20934 89.339844,335.56741 C 89.111974,335.92549 88.789708,336.19241 88.373047,336.36819 C 87.956376,336.54072 87.437171,336.62698 86.81543,336.62698 C 85.910479,336.62698 85.215493,336.41865 84.730469,336.00198 C 84.245442,335.58206 83.955729,334.97171 83.861328,334.17093"
|
||||
id="path5592"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 93.661133,336.5 l 0,-7.1582 l 2.163086,0 l 1.298828,4.88281 l 1.28418,-4.88281 l 2.167973,0 l 0,7.1582 l -1.342778,0 l 0,-5.63477 L 97.811523,336.5 l -1.391601,0 l -1.416016,-5.63477 l 0,5.63477 l -1.342773,0"
|
||||
d="M 93.661133,336.5 L 93.661133,329.3418 L 95.824219,329.3418 L 97.123047,334.22461 L 98.407227,329.3418 L 100.5752,329.3418 L 100.5752,336.5 L 99.232422,336.5 L 99.232422,330.86523 L 97.811523,336.5 L 96.419922,336.5 L 95.003906,330.86523 L 95.003906,336.5 L 93.661133,336.5"
|
||||
id="path5594"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 102.02051,336.5 l 0,-7.1582 l 5.30762,0 l 0,1.21093 l -3.86231,0 l 0,1.58692 l 3.59375,0 l 0,1.20605 l -3.59375,0 l 0,1.94825 l 3.99902,0 l 0,1.20605 l -5.44433,0"
|
||||
d="M 102.02051,336.5 L 102.02051,329.3418 L 107.32813,329.3418 L 107.32813,330.55273 L 103.46582,330.55273 L 103.46582,332.13965 L 107.05957,332.13965 L 107.05957,333.3457 L 103.46582,333.3457 L 103.46582,335.29395 L 107.46484,335.29395 L 107.46484,336.5 L 102.02051,336.5"
|
||||
id="path5596"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 110.31152,336.5 l 0,-5.94727 l -2.12402,0 l 0,-1.21093 l 5.68848,0 l 0,1.21093 l -2.11914,0 l 0,5.94727 l -1.44532,0"
|
||||
d="M 110.31152,336.5 L 110.31152,330.55273 L 108.1875,330.55273 L 108.1875,329.3418 L 113.87598,329.3418 L 113.87598,330.55273 L 111.75684,330.55273 L 111.75684,336.5 L 110.31152,336.5"
|
||||
id="path5598"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 114.79395,336.5 l 0,-7.1582 l 5.30761,0 l 0,1.21093 l -3.8623,0 l 0,1.58692 l 3.59375,0 l 0,1.20605 l -3.59375,0 l 0,1.94825 l 3.99902,0 l 0,1.20605 l -5.44433,0"
|
||||
d="M 114.79395,336.5 L 114.79395,329.3418 L 120.10156,329.3418 L 120.10156,330.55273 L 116.23926,330.55273 L 116.23926,332.13965 L 119.83301,332.13965 L 119.83301,333.3457 L 116.23926,333.3457 L 116.23926,335.29395 L 120.23828,335.29395 L 120.23828,336.5 L 114.79395,336.5"
|
||||
id="path5600"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 121.47852,336.5 l 0,-7.1582 l 3.04199,0 c 0.76497,0 1.31998,0.0651 1.66504,0.19531 c 0.3483,0.12696 0.62662,0.35482 0.83496,0.68359 c 0.20832,0.32879 0.31249,0.70476 0.3125,1.12793 c -1e-5,0.53712 -0.15789,0.98145 -0.47363,1.33301 c -0.31577,0.34831 -0.78777,0.56804 -1.41602,0.65918 c 0.31249,0.18229 0.56966,0.38249 0.77148,0.60059 c 0.20508,0.2181 0.48014,0.60547 0.8252,1.16211 l 0.87402,1.39648 l -1.72851,0 l -1.04492,-1.55762 c -0.3711,-0.55664 -0.62501,-0.90657 -0.76172,-1.0498 c -0.13673,-0.14648 -0.28158,-0.24577 -0.43457,-0.29785 c -0.153,-0.0553 -0.39551,-0.083 -0.72754,-0.083 l -0.29297,0 l 0,2.98828 l -1.44531,0 m 1.44531,-4.13086 l 1.06933,0 c 0.69336,0 1.1263,-0.0293 1.29883,-0.0879 c 0.17252,-0.0586 0.30761,-0.1595 0.40528,-0.30273 c 0.0977,-0.14323 0.14647,-0.32227 0.14648,-0.53711 c -1e-5,-0.24088 -0.0651,-0.43457 -0.19531,-0.58106 c -0.12696,-0.14973 -0.30762,-0.24413 -0.54199,-0.2832 c -0.1172,-0.0163 -0.46876,-0.0244 -1.05469,-0.0244 l -1.12793,0 l 0,1.81641"
|
||||
d="M 121.47852,336.5 L 121.47852,329.3418 L 124.52051,329.3418 C 125.28548,329.3418 125.84049,329.4069 126.18555,329.53711 C 126.53385,329.66407 126.81217,329.89193 127.02051,330.2207 C 127.22883,330.54949 127.333,330.92546 127.33301,331.34863 C 127.333,331.88575 127.17512,332.33008 126.85938,332.68164 C 126.54361,333.02995 126.07161,333.24968 125.44336,333.34082 C 125.75585,333.52311 126.01302,333.72331 126.21484,333.94141 C 126.41992,334.15951 126.69498,334.54688 127.04004,335.10352 L 127.91406,336.5 L 126.18555,336.5 L 125.14063,334.94238 C 124.76953,334.38574 124.51562,334.03581 124.37891,333.89258 C 124.24218,333.7461 124.09733,333.64681 123.94434,333.59473 C 123.79134,333.53943 123.54883,333.51173 123.2168,333.51173 L 122.92383,333.51173 L 122.92383,336.50001 L 121.47852,336.50001 M 122.92383,332.36915 L 123.99316,332.36915 C 124.68652,332.36915 125.11946,332.33985 125.29199,332.28125 C 125.46451,332.22265 125.5996,332.12175 125.69727,331.97852 C 125.79497,331.83529 125.84374,331.65625 125.84375,331.44141 C 125.84374,331.20053 125.77865,331.00684 125.64844,330.86035 C 125.52148,330.71062 125.34082,330.61622 125.10645,330.57715 C 124.98925,330.56085 124.63769,330.55275 124.05176,330.55275 L 122.92383,330.55275 L 122.92383,332.36916"
|
||||
id="path5602"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:open="true"
|
||||
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)"
|
||||
d="m 50.19341,295.51093 a 52.5,52.5 0 0 1 48.677155,19.66684"
|
||||
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 98.870565,315.17777"
|
||||
sodipodi:ry="52.5"
|
||||
sodipodi:rx="52.5"
|
||||
sodipodi:cy="347.5"
|
||||
@ -2375,11 +3112,11 @@
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5524"
|
||||
d="m 105.81964,316.81754 l -1.74737,-6.03282 l -1.25263,6.18907 l 1.25,24.24219 l 2.75,24.16408 l 0.25,-24.32031 z"
|
||||
d="M 105.81964,316.81754 L 104.07227,310.78472 L 102.81964,316.97379 L 104.06964,341.21598 L 106.81964,365.38006 L 107.06964,341.05975 z"
|
||||
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:0.44444445;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
|
||||
<path
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 103.23134,324.95812 l 1.42067,-1.60503 l 1.56976,1.26333 l -0.40213,-7.79888 l -1.74737,-6.03282 l -1.25263,6.18907 z"
|
||||
d="M 103.23134,324.95812 L 104.65201,323.35309 L 106.22177,324.61642 L 105.81964,316.81754 L 104.07227,310.78472 L 102.81964,316.97379 z"
|
||||
id="path5604"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
@ -2387,7 +3124,7 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5528"
|
||||
d="m 104.08793,312.53421 l 2.73969,52.85567"
|
||||
d="M 104.08793,312.53421 L 106.82762,365.38988"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.22222222;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
@ -2402,7 +3139,7 @@
|
||||
transform="matrix(1.35,0,0,1.35,-60.425521,-102.76587)">
|
||||
<path
|
||||
style="fill:#2c2929;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 64.869231,345.74074 l 88.888879,0 l 0,22.22222 c -33.90002,-4.98213 -63.368747,-4.79441 -88.888879,0 z"
|
||||
d="M 64.869231,345.74074 L 153.75811,345.74074 L 153.75811,367.96296 C 119.85809,362.98083 90.389363,363.16855 64.869231,367.96296 z"
|
||||
id="rect5536"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -2527,33 +3264,33 @@
|
||||
style="font-size:13.50032997px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="oplm-id-label">
|
||||
<path
|
||||
d="m 10.736446,402.06507 c -1e-6,-1.60404 0.430674,-2.8587 1.292024,-3.76401 c 0.861346,-0.90968 1.973189,-1.36452 3.335531,-1.36453 c 0.892105,10e-6 1.696323,0.21315 2.412656,0.63942 c 0.716318,0.42629 1.261253,1.02176 1.634806,1.78642 c 0.377929,0.76028 0.566898,1.62382 0.566908,2.59064 c -10e-6,0.98001 -0.197768,1.85674 -0.593276,2.63019 c -0.395526,0.77346 -0.955842,1.36014 -1.680949,1.76005 c -0.725123,0.39552 -1.507367,0.59328 -2.346737,0.59328 c -0.909695,0 -1.722702,-0.21973 -2.439025,-0.6592 c -0.716328,-0.43946 -1.259065,-1.03933 -1.628213,-1.7996 c -0.369151,-0.76027 -0.553726,-1.56449 -0.553725,-2.41266 m 1.318392,0.0198 c -2e-6,1.16458 0.312017,2.08306 0.936058,2.75543 c 0.62843,0.66799 1.415069,1.00198 2.359921,1.00198 c 0.962419,0 1.753454,-0.33838 2.373105,-1.01516 c 0.62403,-0.67677 0.936049,-1.637 0.936058,-2.88068 c -9e-6,-0.78664 -0.134045,-1.4722 -0.40211,-2.0567 c -0.263686,-0.58887 -0.652611,-1.04371 -1.166776,-1.36453 c -0.509785,-0.3252 -1.083285,-0.4878 -1.720501,-0.48781 c -0.9053,1e-5 -1.685348,0.31203 -2.340145,0.93606 c -0.650409,0.61965 -0.975612,1.65679 -0.97561,3.11141"
|
||||
style=""
|
||||
id="path5847" />
|
||||
d="M 10.736446,402.06507 C 10.736445,400.46103 11.16712,399.20637 12.02847,398.30106 C 12.889816,397.39138 14.001659,396.93654 15.364001,396.93653 C 16.256106,396.93654 17.060324,397.14968 17.776657,397.57595 C 18.492975,398.00224 19.03791,398.59771 19.411463,399.36237 C 19.789392,400.12265 19.978361,400.98619 19.978371,401.95301 C 19.978361,402.93302 19.780603,403.80975 19.385095,404.5832 C 18.989569,405.35666 18.429253,405.94334 17.704146,406.34325 C 16.979023,406.73877 16.196779,406.93653 15.357409,406.93653 C 14.447714,406.93653 13.634707,406.7168 12.918384,406.27733 C 12.202056,405.83787 11.659319,405.238 11.290171,404.47773 C 10.92102,403.71746 10.736445,402.91324 10.736446,402.06507 M 12.054838,402.08487 C 12.054836,403.24945 12.366855,404.16793 12.990896,404.8403 C 13.619326,405.50829 14.405965,405.84228 15.350817,405.84228 C 16.313236,405.84228 17.104271,405.5039 17.723922,404.82712 C 18.347952,404.15035 18.659971,403.19012 18.65998,401.94644 C 18.659971,401.1598 18.525935,400.47424 18.25787,399.88974 C 17.994184,399.30087 17.605259,398.84603 17.091094,398.52521 C 16.581309,398.20001 16.007809,398.03741 15.370593,398.0374 C 14.465293,398.03741 13.685245,398.34943 13.030448,398.97346 C 12.380039,399.59311 12.054836,400.63025 12.054838,402.08487"
|
||||
id="path5847"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 21.619769,406.77173 l 0,-9.66381 l 3.645353,0 c 0.641611,1e-5 1.131613,0.0308 1.470006,0.0923 c 0.474615,0.0791 0.872329,0.23072 1.193145,0.45484 c 0.320801,0.21974 0.577887,0.52956 0.771259,0.92947 c 0.19775,0.39992 0.296629,0.83938 0.296638,1.31839 c -9e-6,0.8218 -0.261489,1.51835 -0.784443,2.08965 c -0.522969,0.56691 -1.467816,0.85037 -2.834542,0.85036 l -2.478576,0 l 0,3.92881 l -1.27884,0 m 1.27884,-5.06922 l 2.498352,0 c 0.826186,10e-6 1.41287,-0.1538 1.760053,-0.46143 c 0.347169,-0.30762 0.520757,-0.74049 0.520764,-1.29862 c -7e-6,-0.4043 -0.103281,-0.74928 -0.309822,-1.03494 c -0.20216,-0.29004 -0.470232,-0.4812 -0.804219,-0.5735 c -0.215343,-0.0571 -0.613057,-0.0857 -1.193144,-0.0857 l -2.471984,0 l 0,3.45418"
|
||||
style=""
|
||||
id="path5849" />
|
||||
d="M 21.619769,406.77173 L 21.619769,397.10792 L 25.265122,397.10792 C 25.906733,397.10793 26.396735,397.13872 26.735128,397.20022 C 27.209743,397.27932 27.607457,397.43094 27.928273,397.65506 C 28.249074,397.8748 28.50616,398.18462 28.699532,398.58453 C 28.897282,398.98445 28.996161,399.42391 28.99617,399.90292 C 28.996161,400.72472 28.734681,401.42127 28.211727,401.99257 C 27.688758,402.55948 26.743911,402.84294 25.377185,402.84293 L 22.898609,402.84293 L 22.898609,406.77174 L 21.619769,406.77174 M 22.898609,401.70252 L 25.396961,401.70252 C 26.223147,401.70253 26.809831,401.54872 27.157014,401.24109 C 27.504183,400.93347 27.677771,400.5006 27.677778,399.94247 C 27.677771,399.53817 27.574497,399.19319 27.367956,398.90753 C 27.165796,398.61749 26.897724,398.42633 26.563737,398.33403 C 26.348394,398.27693 25.95068,398.24833 25.370593,398.24833 L 22.898609,398.24833 L 22.898609,401.70251"
|
||||
id="path5849"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 30.584832,406.77173 l 0,-9.66381 l 1.278839,0 l 0,8.5234 l 4.759394,0 l 0,1.14041 l -6.038233,0"
|
||||
style=""
|
||||
id="path5851" />
|
||||
d="M 30.584832,406.77173 L 30.584832,397.10792 L 31.863671,397.10792 L 31.863671,405.63132 L 36.623065,405.63132 L 36.623065,406.77173 L 30.584832,406.77173"
|
||||
id="path5851"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 38.112847,406.77173 l 0,-9.66381 l 1.924852,0 l 2.287409,6.84245 c 0.210937,0.63723 0.36475,1.11404 0.461437,1.43046 c 0.10986,-0.35157 0.281251,-0.86794 0.514173,-1.54911 l 2.313777,-6.7238 l 1.720501,0 l 0,9.66381 l -1.232696,0 l 0,-8.08833 l -2.808174,8.08833 l -1.153593,0 l -2.79499,-8.22677 l 0,8.22677 l -1.232696,0"
|
||||
style=""
|
||||
id="path5853" />
|
||||
d="M 38.112847,406.77173 L 38.112847,397.10792 L 40.037699,397.10792 L 42.325108,403.95037 C 42.536045,404.5876 42.689858,405.06441 42.786545,405.38083 C 42.896405,405.02926 43.067796,404.51289 43.300718,403.83172 L 45.614495,397.10792 L 47.334996,397.10792 L 47.334996,406.77173 L 46.1023,406.77173 L 46.1023,398.6834 L 43.294126,406.77173 L 42.140533,406.77173 L 39.345543,398.54496 L 39.345543,406.77173 L 38.112847,406.77173"
|
||||
id="path5853"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 53.373229,406.77173 l 0,-9.66381 l 1.27884,0 l 0,9.66381 l -1.27884,0"
|
||||
style=""
|
||||
id="path5855" />
|
||||
d="M 53.373229,406.77173 L 53.373229,397.10792 L 54.652069,397.10792 L 54.652069,406.77173 L 53.373229,406.77173"
|
||||
id="path5855"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 56.899927,406.77173 l 0,-9.66381 l 3.328939,0 c 0.751478,1e-5 1.324977,0.0462 1.720501,0.13843 c 0.553717,0.12745 1.026141,0.35817 1.417271,0.69215 c 0.50977,0.43069 0.889906,0.98221 1.140408,1.65459 c 0.254881,0.66799 0.382325,1.43265 0.382334,2.294 c -9e-6,0.73391 -0.0857,1.38431 -0.257086,1.95122 c -0.1714,0.56691 -0.391132,1.03713 -0.659196,1.41068 c -0.268081,0.36915 -0.562522,0.66139 -0.883323,0.87673 c -0.31642,0.21094 -0.700951,0.37134 -1.153592,0.48121 c -0.448259,0.10987 -0.964629,0.1648 -1.54911,0.1648 l -3.487146,0 m 1.27884,-1.14041 l 2.063283,0 c 0.637217,0 1.136008,-0.0593 1.496374,-0.17798 c 0.364749,-0.11866 0.654795,-0.28565 0.870138,-0.50099 c 0.303223,-0.30323 0.538336,-0.70973 0.70534,-1.21951 c 0.171383,-0.51417 0.257079,-1.13601 0.257086,-1.86553 c -7e-6,-1.01076 -0.167003,-1.78641 -0.500988,-2.32696 c -0.329605,-0.54493 -0.731714,-0.90968 -1.206329,-1.09426 c -0.342787,-0.13184 -0.894314,-0.19775 -1.654581,-0.19776 l -2.030323,0 l 0,7.38299"
|
||||
style=""
|
||||
id="path5857" />
|
||||
d="M 56.899927,406.77173 L 56.899927,397.10792 L 60.228866,397.10792 C 60.980344,397.10793 61.553843,397.15412 61.949367,397.24635 C 62.503084,397.3738 62.975508,397.60452 63.366638,397.9385 C 63.876408,398.36919 64.256544,398.92071 64.507046,399.59309 C 64.761927,400.26108 64.889371,401.02574 64.88938,401.88709 C 64.889371,402.621 64.80368,403.2714 64.632294,403.83831 C 64.460894,404.40522 64.241162,404.87544 63.973098,405.24899 C 63.705017,405.61814 63.410576,405.91038 63.089775,406.12572 C 62.773355,406.33666 62.388824,406.49706 61.936183,406.60693 C 61.487924,406.7168 60.971554,406.77173 60.387073,406.77173 L 56.899927,406.77173 M 58.178767,405.63132 L 60.24205,405.63132 C 60.879267,405.63132 61.378058,405.57202 61.738424,405.45334 C 62.103173,405.33468 62.393219,405.16769 62.608562,404.95235 C 62.911785,404.64912 63.146898,404.24262 63.313902,403.73284 C 63.485285,403.21867 63.570981,402.59683 63.570988,401.86731 C 63.570981,400.85655 63.403985,400.0809 63.07,399.54035 C 62.740395,398.99542 62.338286,398.63067 61.863671,398.44609 C 61.520884,398.31425 60.969357,398.24834 60.20909,398.24833 L 58.178767,398.24833 L 58.178767,405.63132"
|
||||
id="path5857"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 70.578242,401.12242 l 0,-1.35135 l 1.351351,0 l 0,1.35135 l -1.351351,0 m 0,5.64931 l 0,-1.35135 l 1.351351,0 l 0,1.35135 l -1.351351,0"
|
||||
style=""
|
||||
id="path5859" />
|
||||
d="M 70.578242,401.12242 L 70.578242,399.77107 L 71.929593,399.77107 L 71.929593,401.12242 L 70.578242,401.12242 M 70.578242,406.77173 L 70.578242,405.42038 L 71.929593,405.42038 L 71.929593,406.77173 L 70.578242,406.77173"
|
||||
id="path5859"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -2565,27 +3302,27 @@
|
||||
id="oplm-id-text"
|
||||
transform="translate(6,0)">
|
||||
<path
|
||||
d="m 80.143175,406.77173 l 3.73764,-5.03626 l -3.295979,-4.62755 l 1.522742,0 l 1.753461,2.47857 c 0.364751,0.51418 0.624034,0.9097 0.777851,1.18656 c 0.215333,-0.35157 0.470221,-0.71852 0.764667,-1.10086 l 1.944628,-2.56427 l 1.390903,0 l -3.394858,4.55504 l 3.658536,5.10877 l -1.58207,0 l -2.432432,-3.4476 c -0.136239,-0.19775 -0.276867,-0.41309 -0.421886,-0.64601 c -0.215341,0.35158 -0.369153,0.59328 -0.461437,0.72512 l -2.42584,3.36849 l -1.535926,0"
|
||||
d="M 80.143175,406.77173 L 83.880815,401.73547 L 80.584836,397.10792 L 82.107578,397.10792 L 83.861039,399.58649 C 84.22579,400.10067 84.485073,400.49619 84.63889,400.77305 C 84.854223,400.42148 85.109111,400.05453 85.403557,399.67219 L 87.348185,397.10792 L 88.739088,397.10792 L 85.34423,401.66296 L 89.002766,406.77173 L 87.420696,406.77173 L 84.988264,403.32413 C 84.852025,403.12638 84.711397,402.91104 84.566378,402.67812 C 84.351037,403.0297 84.197225,403.2714 84.104941,403.40324 L 81.679101,406.77173 L 80.143175,406.77173"
|
||||
id="path5862"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 89.108238,406.77173 l 3.73764,-5.03626 l -3.295979,-4.62755 l 1.522742,0 l 1.753461,2.47857 c 0.364751,0.51418 0.624034,0.9097 0.777851,1.18656 c 0.215333,-0.35157 0.470221,-0.71852 0.764667,-1.10086 l 1.944628,-2.56427 l 1.390903,0 l -3.394858,4.55504 l 3.658536,5.10877 l -1.58207,0 l -2.432432,-3.4476 c -0.136239,-0.19775 -0.276867,-0.41309 -0.421885,-0.64601 c -0.215342,0.35158 -0.369154,0.59328 -0.461437,0.72512 l -2.425841,3.36849 l -1.535926,0"
|
||||
d="M 89.108238,406.77173 L 92.845878,401.73547 L 89.549899,397.10792 L 91.072641,397.10792 L 92.826102,399.58649 C 93.190853,400.10067 93.450136,400.49619 93.603953,400.77305 C 93.819286,400.42148 94.074174,400.05453 94.36862,399.67219 L 96.313248,397.10792 L 97.704151,397.10792 L 94.309293,401.66296 L 97.967829,406.77173 L 96.385759,406.77173 L 93.953327,403.32413 C 93.817088,403.12638 93.67646,402.91104 93.531442,402.67812 C 93.3161,403.0297 93.162288,403.2714 93.070005,403.40324 L 90.644164,406.77173 L 89.108238,406.77173"
|
||||
id="path5864"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 98.073301,406.77173 l 3.737639,-5.03626 l -3.295978,-4.62755 l 1.522738,0 l 1.75347,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76466,-1.10086 l 1.94463,-2.56427 l 1.3909,0 l -3.39485,4.55504 l 3.65853,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42189,-0.64601 c -0.21534,0.35158 -0.36915,0.59328 -0.46143,0.72512 l -2.425843,3.36849 l -1.535926,0"
|
||||
d="M 98.073301,406.77173 L 101.81094,401.73547 L 98.514962,397.10792 L 100.0377,397.10792 L 101.79117,399.58649 C 102.15592,400.10067 102.4152,400.49619 102.56902,400.77305 C 102.78435,400.42148 103.03924,400.05453 103.33368,399.67219 L 105.27831,397.10792 L 106.66921,397.10792 L 103.27436,401.66296 L 106.93289,406.77173 L 105.35082,406.77173 L 102.91839,403.32413 C 102.78215,403.12638 102.64152,402.91104 102.4965,402.67812 C 102.28116,403.0297 102.12735,403.2714 102.03507,403.40324 L 99.609227,406.77173 L 98.073301,406.77173"
|
||||
id="path5866"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 107.03836,406.77173 l 3.73764,-5.03626 l -3.29597,-4.62755 l 1.52274,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76467,-1.10086 l 1.94462,-2.56427 l 1.39091,0 l -3.39486,4.55504 l 3.65854,5.10877 l -1.58207,0 l -2.43244,-3.4476 c -0.13624,-0.19775 -0.27686,-0.41309 -0.42188,-0.64601 c -0.21534,0.35158 -0.36916,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53593,0"
|
||||
d="M 107.03836,406.77173 L 110.776,401.73547 L 107.48003,397.10792 L 109.00277,397.10792 L 110.75623,399.58649 C 111.12098,400.10067 111.38026,400.49619 111.53408,400.77305 C 111.74941,400.42148 112.0043,400.05453 112.29875,399.67219 L 114.24337,397.10792 L 115.63428,397.10792 L 112.23942,401.66296 L 115.89796,406.77173 L 114.31589,406.77173 L 111.88345,403.32413 C 111.74721,403.12638 111.60659,402.91104 111.46157,402.67812 C 111.24623,403.0297 111.09241,403.2714 111.00013,403.40324 L 108.57429,406.77173 L 107.03836,406.77173"
|
||||
id="path5868"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 116.00343,406.77173 l 3.73764,-5.03626 l -3.29598,-4.62755 l 1.52274,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62404,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76467,-1.10086 l 1.94463,-2.56427 l 1.3909,0 l -3.39486,4.55504 l 3.65854,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42189,-0.64601 c -0.21534,0.35158 -0.36915,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53592,0"
|
||||
d="M 116.00343,406.77173 L 119.74107,401.73547 L 116.44509,397.10792 L 117.96783,397.10792 L 119.72129,399.58649 C 120.08604,400.10067 120.34533,400.49619 120.49914,400.77305 C 120.71447,400.42148 120.96936,400.05453 121.26381,399.67219 L 123.20844,397.10792 L 124.59934,397.10792 L 121.20448,401.66296 L 124.86302,406.77173 L 123.28095,406.77173 L 120.84852,403.32413 C 120.71228,403.12638 120.57165,402.91104 120.42663,402.67812 C 120.21129,403.0297 120.05748,403.2714 119.96519,403.40324 L 117.53935,406.77173 L 116.00343,406.77173"
|
||||
id="path5870"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 124.96849,406.77173 l 3.73764,-5.03626 l -3.29598,-4.62755 l 1.52275,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76466,-1.10086 l 1.94463,-2.56427 l 1.39091,0 l -3.39486,4.55504 l 3.65853,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42188,-0.64601 c -0.21535,0.35158 -0.36916,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53593,0"
|
||||
d="M 124.96849,406.77173 L 128.70613,401.73547 L 125.41015,397.10792 L 126.9329,397.10792 L 128.68636,399.58649 C 129.05111,400.10067 129.31039,400.49619 129.46421,400.77305 C 129.67954,400.42148 129.93443,400.05453 130.22887,399.67219 L 132.1735,397.10792 L 133.56441,397.10792 L 130.16955,401.66296 L 133.82808,406.77173 L 132.24601,406.77173 L 129.81358,403.32413 C 129.67734,403.12638 129.53671,402.91104 129.3917,402.67812 C 129.17635,403.0297 129.02254,403.2714 128.93026,403.40324 L 126.50442,406.77173 L 124.96849,406.77173"
|
||||
id="path5872"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -2597,10 +3334,10 @@
|
||||
<rect
|
||||
ry="0"
|
||||
rx="0.096870422"
|
||||
y="320.495"
|
||||
y="339.00034"
|
||||
x="173.92392"
|
||||
height="44.676563"
|
||||
width="21.192514"
|
||||
height="39.99931"
|
||||
width="21.542936"
|
||||
id="oplm-panel-mousearea"
|
||||
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:none" />
|
||||
</g>
|
||||
@ -2610,8 +3347,7 @@
|
||||
id="layer3"
|
||||
inkscape:label="info"
|
||||
style="display:inline"
|
||||
transform="translate(0,-4)"
|
||||
sodipodi:insensitive="true">
|
||||
transform="translate(0,-4)">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer48"
|
||||
@ -2621,165 +3357,13 @@
|
||||
<g
|
||||
id="info-bg"
|
||||
inkscape:label="#g4460"
|
||||
transform="matrix(1.1653043,0,0,1,0.08265213,0)">
|
||||
<rect
|
||||
transform="matrix(1.1653043,0,0,1,-0.25937667,-0.19161584)">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
d="M -0.5,-2.1167679 L 551.15164,-2.1167679 L 551.15164,57.883232 L -0.5,57.883232 z"
|
||||
id="rect4615"
|
||||
width="550.5"
|
||||
height="58.383232"
|
||||
x="-0.5"
|
||||
y="-0.5" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="telemetry-rx-label"
|
||||
transform="translate(0,-2.08992)" />
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-label"
|
||||
transform="matrix(1.7146685,0,0,1.7146685,-176.95942,-5.87421)">
|
||||
<path
|
||||
d="m 190.74466,9.2578888 l 0.79687,0 l 1.22657,4.9296872 l 1.22265,-4.9296872 l 0.88672,0 l 1.22656,4.9296872 l 1.22266,-4.9296872 l 0.80078,0 l -1.46484,5.8320312 l -0.99219,0 l -1.23047,-5.0625 l -1.24219,5.0625 l -0.99218,0 l -1.46094,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6323"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 199.9595,9.9063263 l 0,2.1914067 l 0.99219,0 c 0.36719,3e-6 0.65104,-0.09505 0.85156,-0.285157 c 0.20052,-0.1901 0.30078,-0.460933 0.30078,-0.8125 c 0,-0.348954 -0.10026,-0.618485 -0.30078,-0.808593 c -0.20052,-0.1901 -0.48437,-0.2851515 -0.85156,-0.2851567 l -0.99219,0 m -0.78906,-0.6484375 l 1.78125,0 c 0.65364,5.8e-6 1.14713,0.1484432 1.48047,0.4453125 c 0.33593,0.2942759 0.5039,0.7265667 0.50391,1.2968747 c -1e-5,0.575525 -0.16798,1.01042 -0.50391,1.304688 c -0.33334,0.294273 -0.82683,0.441408 -1.48047,0.441406 l -0.99219,0 l 0,2.34375 l -0.78906,0 l 0,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6325"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 203.18997,9.2578888 l 4.9336,0 l 0,0.6640625 l -2.07032,0 l 0,5.1679687 l -0.79297,0 l 0,-5.1679687 l -2.07031,0 l 0,-0.6640625"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6327"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-heading-label"
|
||||
transform="matrix(1.6526792,0,0,1.6526792,-165.99391,-4.9162026)">
|
||||
<path
|
||||
d="m 191.26419,24.257889 l 0.78906,0 l 0,2.390625 l 2.86719,0 l 0,-2.390625 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-2.777344 l -2.86719,0 l 0,2.777344 l -0.78906,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6330"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 198.06888,24.906326 l 0,4.535157 l 0.95312,0 c 0.80469,0 1.39323,-0.182291 1.76563,-0.546875 c 0.37499,-0.364582 0.56249,-0.940102 0.5625,-1.726563 c -1e-5,-0.781246 -0.18751,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76563,-0.546875 l -0.95312,0 m -0.78906,-0.648437 l 1.62109,0 c 1.1302,6e-6 1.95963,0.235682 2.48828,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79297,2.203125 c -1e-5,1.00521 -0.26563,1.743491 -0.79688,2.214844 c -0.53125,0.471354 -1.35937,0.707031 -2.48437,0.707031 l -1.62109,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6332"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 207.41263,29.257889 l 0,-1.566406 l -1.28906,0 l 0,-0.648438 l 2.07031,0 l 0,2.503906 c -0.30469,0.216146 -0.64063,0.380209 -1.00781,0.492188 c -0.3672,0.109375 -0.75912,0.164062 -1.17579,0.164062 c -0.91146,0 -1.625,-0.265625 -2.14062,-0.796875 c -0.51302,-0.533853 -0.76953,-1.276039 -0.76953,-2.226562 c 0,-0.953121 0.25651,-1.695308 0.76953,-2.226563 c 0.51562,-0.533848 1.22916,-0.800775 2.14062,-0.800781 c 0.38021,6e-6 0.74089,0.04688 1.08204,0.140625 c 0.34374,0.09376 0.66015,0.231776 0.94921,0.414063 l 0,0.839843 c -0.29167,-0.247391 -0.60156,-0.433588 -0.92968,-0.558593 c -0.32813,-0.124995 -0.67318,-0.187495 -1.03516,-0.1875 c -0.71354,5e-6 -1.25,0.199223 -1.60937,0.597656 c -0.35678,0.398442 -0.53516,0.992191 -0.53516,1.78125 c 0,0.78646 0.17838,1.378908 0.53516,1.777344 c 0.35937,0.398438 0.89583,0.597656 1.60937,0.597656 c 0.27864,0 0.52734,-0.02344 0.74609,-0.07031 c 0.21875,-0.04948 0.41536,-0.124999 0.58985,-0.226562"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6334"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-distance-label"
|
||||
transform="matrix(1.6526792,0,0,1.6526792,-194.69489,-29.916207)">
|
||||
<path
|
||||
d="m 278.05325,24.906326 l 0,4.535157 l 0.95313,0 c 0.80468,0 1.39322,-0.182291 1.76562,-0.546875 c 0.375,-0.364582 0.5625,-0.940102 0.5625,-1.726563 c 0,-0.781246 -0.1875,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76562,-0.546875 l -0.95313,0 m -0.78906,-0.648437 l 1.62109,0 c 1.13021,6e-6 1.95964,0.235682 2.48829,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79296,2.203125 c 0,1.00521 -0.26563,1.743491 -0.79687,2.214844 c -0.53125,0.471354 -1.35938,0.707031 -2.48438,0.707031 l -1.62109,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6373"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 283.42044,24.257889 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6375"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 289.27591,24.449295 l 0,0.769531 c -0.29948,-0.143224 -0.58204,-0.249995 -0.84766,-0.320312 c -0.26562,-0.07031 -0.52214,-0.105464 -0.76953,-0.105469 c -0.42969,5e-6 -0.76172,0.08334 -0.99609,0.25 c -0.23177,0.166672 -0.34766,0.403651 -0.34766,0.710938 c 0,0.257816 0.0768,0.453128 0.23047,0.585937 c 0.15625,0.130212 0.45052,0.235681 0.88281,0.316406 l 0.47657,0.09766 c 0.58853,0.111982 1.02213,0.309898 1.30078,0.59375 c 0.28124,0.281252 0.42187,0.658856 0.42187,1.132812 c 0,0.565105 -0.19011,0.99349 -0.57031,1.285156 c -0.37761,0.291667 -0.9323,0.4375 -1.66406,0.4375 c -0.27605,0 -0.57032,-0.03125 -0.88282,-0.09375 c -0.30989,-0.0625 -0.63151,-0.154947 -0.96484,-0.277343 l 0,-0.8125 c 0.32031,0.179688 0.63411,0.315104 0.94141,0.40625 c 0.30729,0.09115 0.60937,0.136719 0.90625,0.136718 c 0.45051,1e-6 0.79817,-0.08854 1.04297,-0.265625 c 0.24478,-0.177082 0.36718,-0.429686 0.36718,-0.757812 c 0,-0.286457 -0.0885,-0.510415 -0.26562,-0.671875 c -0.17448,-0.161456 -0.46224,-0.28255 -0.86328,-0.363281 l -0.48047,-0.09375 c -0.58855,-0.117185 -1.01433,-0.300779 -1.27735,-0.550782 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 c 0,-0.515621 0.18099,-0.92187 0.54297,-1.21875 c 0.36458,-0.29687 0.86589,-0.445307 1.50391,-0.445313 c 0.27343,6e-6 0.55208,0.02475 0.83594,0.07422 c 0.28385,0.04949 0.57421,0.123703 0.87109,0.222656"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6377"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3906"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="m 290.04935,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.6526118,0,0,1.6526118,-194.77079,-4.9141713)"
|
||||
id="waypoint-total-distance-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
d="m 262.75404,24.449065 l 0,0.769559 c -0.29949,-0.143229 -0.58206,-0.250004 -0.84768,-0.320324 c -0.26565,-0.07031 -0.52216,-0.105467 -0.76956,-0.105472 c -0.42971,5e-6 -0.76175,0.08335 -0.99614,0.250008 c -0.23178,0.166678 -0.34767,0.403666 -0.34766,0.710964 c -1e-5,0.257826 0.0768,0.453145 0.23047,0.585958 c 0.15626,0.130217 0.45054,0.235689 0.88284,0.316418 l 0.47659,0.09765 c 0.58855,0.111987 1.02217,0.30991 1.30082,0.593772 c 0.28126,0.281263 0.42189,0.65888 0.42189,1.132854 c 0,0.565125 -0.19011,0.993526 -0.57033,1.285202 c -0.37762,0.291678 -0.93232,0.437516 -1.66412,0.437516 c -0.27605,0 -0.57033,-0.03125 -0.88284,-0.09375 c -0.30991,-0.0625 -0.63154,-0.154954 -0.96488,-0.277354 l 0,-0.81253 c 0.32032,0.179695 0.63413,0.315117 0.94144,0.406265 c 0.3073,0.09115 0.6094,0.136724 0.90628,0.136723 c 0.45054,1e-6 0.7982,-0.08854 1.04301,-0.265634 c 0.24479,-0.177089 0.36719,-0.429701 0.3672,-0.75784 c -10e-6,-0.286466 -0.0886,-0.510432 -0.26563,-0.671899 c -0.1745,-0.161462 -0.46226,-0.28256 -0.86332,-0.363295 l -0.48049,-0.09375 c -0.58856,-0.117188 -1.01436,-0.300789 -1.27739,-0.550801 C 259.13151,26.609299 259,26.261631 259,25.816299 c 0,-0.51564 0.18099,-0.921903 0.54299,-1.218795 c 0.3646,-0.296879 0.86591,-0.445322 1.50395,-0.445328 c 0.27345,6e-6 0.55211,0.02475 0.83598,0.07422 c 0.28385,0.04949 0.57423,0.123708 0.87112,0.222665"
|
||||
id="path3913"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 264.2,24.25817 l 0.77785,0 l 0,3.475443 c 0,0.61309 0.11113,1.055023 0.33337,1.325803 c 0.22224,0.268226 0.58243,0.402339 1.08057,0.402339 c 0.49558,0 0.85449,-0.134113 1.07673,-0.402339 c 0.22224,-0.27078 0.33337,-0.712713 0.33337,-1.325803 l 0,-3.475443 l 0.77786,0 l 0,3.571238 c -10e-6,0.745925 -0.18521,1.309199 -0.55561,1.689824 c -0.36786,0.380625 -0.91198,0.570938 -1.63235,0.570938 c -0.72294,0 -1.26961,-0.190313 -1.64001,-0.570938 C 264.38392,29.138607 264.2,28.575333 264.2,27.829408 l 0,-3.571238"
|
||||
id="path3915"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 269.94609,24.25817 l 1.17578,0 l 1.48827,3.968729 l 1.49608,-3.968729 l 1.17578,0 l 0,5.832 l -0.76953,0 l 0,-5.121066 l -1.5039,3.999978 l -0.79296,0 l -1.5039,-3.999978 l 0,5.121066 l -0.76562,0 l 0,-5.832"
|
||||
id="path3917"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3900"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="m 278.05325,24.906326 l 0,4.535157 l 0.95313,0 c 0.80468,0 1.39322,-0.182291 1.76562,-0.546875 c 0.375,-0.364582 0.5625,-0.940102 0.5625,-1.726563 c 0,-0.781246 -0.1875,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.54687 -1.76562,-0.546875 l -0.95313,0 m -0.78906,-0.648437 l 1.62109,0 c 1.13021,6e-6 1.95964,0.235682 2.48829,0.707031 c 0.52864,0.468755 0.79296,1.203129 0.79296,2.203125 c 0,1.00521 -0.26563,1.743491 -0.79687,2.214844 c -0.53125,0.471354 -1.35938,0.707031 -2.48438,0.707031 l -1.62109,0 l 0,-5.832031" />
|
||||
<path
|
||||
d="m 290.04935,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6379"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3902"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="m 283.42044,24.257889 l 0.78906,0 l 0,5.832031 l -0.78906,0 l 0,-5.832031" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3904"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="m 289.27591,24.449295 l 0,0.769531 c -0.29948,-0.143224 -0.58204,-0.249995 -0.84766,-0.320312 c -0.26562,-0.07031 -0.52214,-0.105464 -0.76953,-0.105469 c -0.42969,5e-6 -0.76172,0.08334 -0.99609,0.25 c -0.23177,0.166672 -0.34766,0.403651 -0.34766,0.710938 c 0,0.257816 0.0768,0.453128 0.23047,0.585937 c 0.15625,0.130212 0.45052,0.235681 0.88281,0.316406 l 0.47657,0.09766 c 0.58853,0.111982 1.02213,0.309898 1.30078,0.59375 c 0.28124,0.281252 0.42187,0.658856 0.42187,1.132812 c 0,0.565105 -0.19011,0.99349 -0.57031,1.285156 c -0.37761,0.291667 -0.9323,0.4375 -1.66406,0.4375 c -0.27605,0 -0.57032,-0.03125 -0.88282,-0.09375 c -0.30989,-0.0625 -0.63151,-0.154947 -0.96484,-0.277343 l 0,-0.8125 c 0.32031,0.179688 0.63411,0.315104 0.94141,0.40625 c 0.30729,0.09115 0.60937,0.136719 0.90625,0.136718 c 0.45051,1e-6 0.79817,-0.08854 1.04297,-0.265625 c 0.24478,-0.177082 0.36718,-0.429686 0.36718,-0.757812 c 0,-0.286457 -0.0885,-0.510415 -0.26562,-0.671875 c -0.17448,-0.161456 -0.46224,-0.28255 -0.86328,-0.363281 l -0.48047,-0.09375 c -0.58855,-0.117185 -1.01433,-0.300779 -1.27735,-0.550782 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 c 0,-0.515621 0.18099,-0.92187 0.54297,-1.21875 c 0.36458,-0.29687 0.86589,-0.445307 1.50391,-0.445313 c 0.27343,6e-6 0.55208,0.02475 0.83594,0.07422 c 0.28385,0.04949 0.57421,0.123703 0.87109,0.222656" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-mode-label"
|
||||
transform="matrix(1.6526792,0,0,1.6526792,-155.46815,-5.1260141)">
|
||||
<path
|
||||
d="m 316.26419,9.2578888 l 1.17578,0 l 1.48828,3.9687502 l 1.4961,-3.9687502 l 1.17578,0 l 0,5.8320312 l -0.76953,0 l 0,-5.1210937 l -1.50391,3.9999997 l -0.79297,0 l -1.5039,-3.9999997 l 0,5.1210937 l -0.76563,0 l 0,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6382"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 325.53763,9.793045 c -0.57292,5.3e-6 -1.02865,0.213547 -1.36719,0.640625 c -0.33594,0.427088 -0.50391,1.009118 -0.50391,1.746094 c 0,0.734377 0.16797,1.315106 0.50391,1.742187 c 0.33854,0.427084 0.79427,0.640626 1.36719,0.640625 c 0.57291,10e-7 1.02604,-0.213541 1.35937,-0.640625 c 0.33594,-0.427081 0.5039,-1.00781 0.50391,-1.742187 c -1e-5,-0.736976 -0.16797,-1.319006 -0.50391,-1.746094 c -0.33333,-0.427078 -0.78646,-0.6406197 -1.35937,-0.640625 m 0,-0.640625 c 0.8177,6e-6 1.47135,0.2747453 1.96094,0.8242188 c 0.48957,0.5468792 0.73436,1.2812542 0.73437,2.2031252 c -10e-6,0.919273 -0.2448,1.653647 -0.73437,2.203125 c -0.48959,0.546875 -1.14324,0.820312 -1.96094,0.820312 c -0.82032,0 -1.47657,-0.273437 -1.96875,-0.820312 c -0.48959,-0.546874 -0.73438,-1.281248 -0.73438,-2.203125 c 0,-0.921871 0.24479,-1.656246 0.73438,-2.2031252 c 0.49218,-0.5494735 1.14843,-0.8242128 1.96875,-0.8242188"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6384"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 330.25638,9.9063263 l 0,4.5351567 l 0.95312,0 c 0.80469,0 1.39323,-0.182291 1.76563,-0.546875 c 0.37499,-0.364582 0.56249,-0.940102 0.5625,-1.726563 c -10e-6,-0.781246 -0.18751,-1.35286 -0.5625,-1.714844 c -0.3724,-0.364578 -0.96094,-0.5468695 -1.76563,-0.5468747 l -0.95312,0 m -0.78906,-0.6484375 l 1.62109,0 c 1.1302,5.8e-6 1.95963,0.2356827 2.48828,0.7070312 c 0.52864,0.468755 0.79296,1.203129 0.79297,2.203125 c -1e-5,1.00521 -0.26563,1.743491 -0.79688,2.214844 c -0.53125,0.471354 -1.35937,0.707031 -2.48437,0.707031 l -1.62109,0 l 0,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6386"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 335.62357,9.2578888 l 3.6875,0 l 0,0.6640625 l -2.89844,0 l 0,1.7265627 l 2.77734,0 l 0,0.664062 l -2.77734,0 l 0,2.113282 l 2.96875,0 l 0,0.664062 l -3.75781,0 l 0,-5.8320312"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6388"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-eta-label"
|
||||
transform="matrix(1.7146685,0,0,1.7146685,-265.93598,-6.5942385)">
|
||||
<path
|
||||
d="m 378.26419,24.257889 l 3.6875,0 l 0,0.664062 l -2.89844,0 l 0,1.726563 l 2.77735,0 l 0,0.664062 l -2.77735,0 l 0,2.113282 l 2.96875,0 l 0,0.664062 l -3.75781,0 l 0,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6802"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 382.5181,24.257889 l 4.93359,0 l 0,0.664062 l -2.07031,0 l 0,5.167969 l -0.79297,0 l 0,-5.167969 l -2.07031,0 l 0,-0.664062"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6804"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 389.54153,25.035233 l -1.07031,2.902343 l 2.14453,0 l -1.07422,-2.902343 m -0.44531,-0.777344 l 0.89453,0 l 2.22266,5.832031 l -0.82031,0 l -0.53125,-1.496094 l -2.62891,0 l -0.53125,1.496094 l -0.83203,0 l 2.22656,-5.832031"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path6806"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<g
|
||||
transform="matrix(0.89658208,0,0,1.0166066,0.62788103,-5.1809092)"
|
||||
style="display:inline"
|
||||
@ -2794,7 +3378,7 @@
|
||||
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" />
|
||||
<path
|
||||
style="fill:#787878;fill-opacity:1;stroke:#e0dfe1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="m 6.071295,40.854862 l 8.702853,-8.702852 l 3.698713,-0.652713 c 1.081677,1.081677 2.282834,2.282834 3.263569,3.263569 c 0.543928,0.543928 -0.435142,3.916284 -0.435142,3.916284 l -8.702853,8.702852 z"
|
||||
d="M 6.071295,40.854862 L 14.774148,32.15201 L 18.472861,31.499297 C 19.554538,32.580974 20.755695,33.782131 21.73643,34.762866 C 22.280358,35.306794 21.301288,38.67915 21.301288,38.67915 L 12.598435,47.382002 z"
|
||||
id="path8779"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
@ -2806,7 +3390,7 @@
|
||||
sodipodi:cy="-18"
|
||||
sodipodi:rx="9"
|
||||
sodipodi:ry="9"
|
||||
d="m 86,-18 c 0,4.970563 -4.029437,9 -9,9 c -1.57983,0 -3.131827,-0.4158564 -4.5,-1.205771"
|
||||
d="M 86,-18 C 86,-13.029437 81.970563,-9 77,-9 C 75.42017,-9 73.868173,-9.4158564 72.5,-10.205771"
|
||||
transform="matrix(0.59409,-0.16048456,0.16048456,0.59409,-14.282595,58.387875)"
|
||||
sodipodi:start="0"
|
||||
sodipodi:end="2.0943951"
|
||||
@ -2816,7 +3400,7 @@
|
||||
sodipodi:end="2.0943951"
|
||||
sodipodi:start="0"
|
||||
transform="matrix(0.94346447,-0.22256175,0.2922493,0.96228953,-38.3717,70.240727)"
|
||||
d="m 86,-18 c 0,4.970563 -4.029437,9 -9,9 c -1.57983,0 -3.131827,-0.4158564 -4.5,-1.205771"
|
||||
d="M 86,-18 C 86,-13.029437 81.970563,-9 77,-9 C 75.42017,-9 73.868173,-9.4158564 72.5,-10.205771"
|
||||
sodipodi:ry="9"
|
||||
sodipodi:rx="9"
|
||||
sodipodi:cy="-18"
|
||||
@ -2828,7 +3412,7 @@
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8785"
|
||||
d="m 34.355566,12.570595 l -8.702852,8.702849 L 25,24.972157 c 1.081677,1.081678 2.282835,2.282835 3.263569,3.263569 c 0.543929,0.543929 3.916285,-0.435142 3.916285,-0.435142 l 8.702852,-8.702853 z"
|
||||
d="M 34.355566,12.570595 L 25.652714,21.273444 L 25,24.972157 C 26.081677,26.053835 27.282835,27.254992 28.263569,28.235726 C 28.807498,28.779655 32.179854,27.800584 32.179854,27.800584 L 40.882706,19.097731 z"
|
||||
style="fill:#787878;fill-opacity:1;stroke:#e0dfe1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
@ -2837,8 +3421,165 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer58"
|
||||
inkscape:label="waypoint"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer92"
|
||||
inkscape:label="waypoint-labels"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="waypoint-labels">
|
||||
<g
|
||||
transform="matrix(1.9981106,0,0,1.7146685,-206.12893,-1.8742101)"
|
||||
id="waypoint-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6323"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 190.74466,9.2578888 L 191.54153,9.2578888 L 192.7681,14.187576 L 193.99075,9.2578888 L 194.87747,9.2578888 L 196.10403,14.187576 L 197.32669,9.2578888 L 198.12747,9.2578888 L 196.66263,15.08992 L 195.67044,15.08992 L 194.43997,10.02742 L 193.19778,15.08992 L 192.2056,15.08992 L 190.74466,9.2578888" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6325"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 199.9595,9.9063263 L 199.9595,12.097733 L 200.95169,12.097733 C 201.31888,12.097736 201.60273,12.002683 201.80325,11.812576 C 202.00377,11.622476 202.10403,11.351643 202.10403,11.000076 C 202.10403,10.651122 202.00377,10.381591 201.80325,10.191483 C 201.60273,10.001383 201.31888,9.9063315 200.95169,9.9063263 L 199.9595,9.9063263 M 199.17044,9.2578888 L 200.95169,9.2578888 C 201.60533,9.2578946 202.09882,9.406332 202.43216,9.7032013 C 202.76809,9.9974772 202.93606,10.429768 202.93607,11.000076 C 202.93606,11.575601 202.76809,12.010496 202.43216,12.304764 C 202.09882,12.599037 201.60533,12.746172 200.95169,12.74617 L 199.9595,12.74617 L 199.9595,15.08992 L 199.17044,15.08992 L 199.17044,9.2578888" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6327"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 203.18997,9.2578888 L 208.12357,9.2578888 L 208.12357,9.9219513 L 206.05325,9.9219513 L 206.05325,15.08992 L 205.26028,15.08992 L 205.26028,9.9219513 L 203.18997,9.9219513 L 203.18997,9.2578888" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.9258742,0,0,1.6526792,-193.35077,-0.91620312)"
|
||||
id="waypoint-heading-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6330"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 191.26419,24.257889 L 192.05325,24.257889 L 192.05325,26.648514 L 194.92044,26.648514 L 194.92044,24.257889 L 195.7095,24.257889 L 195.7095,30.08992 L 194.92044,30.08992 L 194.92044,27.312576 L 192.05325,27.312576 L 192.05325,30.08992 L 191.26419,30.08992 L 191.26419,24.257889" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6332"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 198.06888,24.906326 L 198.06888,29.441483 L 199.022,29.441483 C 199.82669,29.441483 200.41523,29.259192 200.78763,28.894608 C 201.16262,28.530026 201.35012,27.954506 201.35013,27.168045 C 201.35012,26.386799 201.16262,25.815185 200.78763,25.453201 C 200.41523,25.088623 199.82669,24.906331 199.022,24.906326 L 198.06888,24.906326 M 197.27982,24.257889 L 198.90091,24.257889 C 200.03111,24.257895 200.86054,24.493571 201.38919,24.96492 C 201.91783,25.433675 202.18215,26.168049 202.18216,27.168045 C 202.18215,28.173255 201.91653,28.911536 201.38528,29.382889 C 200.85403,29.854243 200.02591,30.08992 198.90091,30.08992 L 197.27982,30.08992 L 197.27982,24.257889" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6334"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 207.41263,29.257889 L 207.41263,27.691483 L 206.12357,27.691483 L 206.12357,27.043045 L 208.19388,27.043045 L 208.19388,29.546951 C 207.88919,29.763097 207.55325,29.92716 207.18607,30.039139 C 206.81887,30.148514 206.42695,30.203201 206.01028,30.203201 C 205.09882,30.203201 204.38528,29.937576 203.86966,29.406326 C 203.35664,28.872473 203.10013,28.130287 203.10013,27.179764 C 203.10013,26.226643 203.35664,25.484456 203.86966,24.953201 C 204.38528,24.419353 205.09882,24.152426 206.01028,24.15242 C 206.39049,24.152426 206.75117,24.1993 207.09232,24.293045 C 207.43606,24.386805 207.75247,24.524821 208.04153,24.707108 L 208.04153,25.546951 C 207.74986,25.29956 207.43997,25.113363 207.11185,24.988358 C 206.78372,24.863363 206.43867,24.800863 206.07669,24.800858 C 205.36315,24.800863 204.82669,25.000081 204.46732,25.398514 C 204.11054,25.796956 203.93216,26.390705 203.93216,27.179764 C 203.93216,27.966224 204.11054,28.558672 204.46732,28.957108 C 204.82669,29.355546 205.36315,29.554764 206.07669,29.554764 C 206.35533,29.554764 206.60403,29.531324 206.82278,29.484454 C 207.04153,29.434974 207.23814,29.359455 207.41263,29.257892" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.9258742,0,0,1.6526792,-226.79615,-25.916207)"
|
||||
id="waypoint-distance-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6373"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 278.05325,24.906326 L 278.05325,29.441483 L 279.00638,29.441483 C 279.81106,29.441483 280.3996,29.259192 280.772,28.894608 C 281.147,28.530026 281.3345,27.954506 281.3345,27.168045 C 281.3345,26.386799 281.147,25.815185 280.772,25.453201 C 280.3996,25.088623 279.81106,24.906331 279.00638,24.906326 L 278.05325,24.906326 M 277.26419,24.257889 L 278.88528,24.257889 C 280.01549,24.257895 280.84492,24.493571 281.37357,24.96492 C 281.90221,25.433675 282.16653,26.168049 282.16653,27.168045 C 282.16653,28.173255 281.9009,28.911536 281.36966,29.382889 C 280.83841,29.854243 280.01028,30.08992 278.88528,30.08992 L 277.26419,30.08992 L 277.26419,24.257889" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6375"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 283.42044,24.257889 L 284.2095,24.257889 L 284.2095,30.08992 L 283.42044,30.08992 L 283.42044,24.257889" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6377"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 289.27591,24.449295 L 289.27591,25.218826 C 288.97643,25.075602 288.69387,24.968831 288.42825,24.898514 C 288.16263,24.828204 287.90611,24.79305 287.65872,24.793045 C 287.22903,24.79305 286.897,24.876385 286.66263,25.043045 C 286.43086,25.209717 286.31497,25.446696 286.31497,25.753983 C 286.31497,26.011799 286.39177,26.207111 286.54544,26.33992 C 286.70169,26.470132 286.99596,26.575601 287.42825,26.656326 L 287.90482,26.753986 C 288.49335,26.865968 288.92695,27.063884 289.2056,27.347736 C 289.48684,27.628988 289.62747,28.006592 289.62747,28.480548 C 289.62747,29.045653 289.43736,29.474038 289.05716,29.765704 C 288.67955,30.057371 288.12486,30.203204 287.3931,30.203204 C 287.11705,30.203204 286.82278,30.171954 286.51028,30.109454 C 286.20039,30.046954 285.87877,29.954507 285.54544,29.832111 L 285.54544,29.019611 C 285.86575,29.199299 286.17955,29.334715 286.48685,29.425861 C 286.79414,29.517011 287.09622,29.56258 287.3931,29.562579 C 287.84361,29.56258 288.19127,29.474039 288.43607,29.296954 C 288.68085,29.119872 288.80325,28.867268 288.80325,28.539142 C 288.80325,28.252685 288.71475,28.028727 288.53763,27.867267 C 288.36315,27.705811 288.07539,27.584717 287.67435,27.503986 L 287.19388,27.410236 C 286.60533,27.293051 286.17955,27.109457 285.91653,26.859454 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 C 285.522,25.300865 285.70299,24.894616 286.06497,24.597736 C 286.42955,24.300866 286.93086,24.152429 287.56888,24.152423 C 287.84231,24.152429 288.12096,24.177173 288.40482,24.226643 C 288.68867,24.276133 288.97903,24.350346 289.27591,24.449299" />
|
||||
<path
|
||||
d="M 290.04935,24.257889 L 294.98294,24.257889 L 294.98294,24.921951 L 292.91263,24.921951 L 292.91263,30.08992 L 292.11966,30.08992 L 292.11966,24.921951 L 290.04935,24.921951 L 290.04935,24.257889"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path3906"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="waypoint-total-distance-label"
|
||||
transform="matrix(1.9257956,0,0,1.6526118,-226.8846,-0.91417112)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3913"
|
||||
d="M 262.75404,24.449065 L 262.75404,25.218624 C 262.45455,25.075395 262.17198,24.96862 261.90636,24.8983 C 261.64071,24.82799 261.3842,24.792833 261.1368,24.792828 C 260.70709,24.792833 260.37505,24.876178 260.14066,25.042836 C 259.90888,25.209514 259.79299,25.446502 259.793,25.7538 C 259.79299,26.011626 259.8698,26.206945 260.02347,26.339758 C 260.17973,26.469975 260.47401,26.575447 260.90631,26.656176 L 261.3829,26.753826 C 261.97145,26.865813 262.40507,27.063736 262.68372,27.347598 C 262.96498,27.628861 263.10561,28.006478 263.10561,28.480452 C 263.10561,29.045577 262.9155,29.473978 262.53528,29.765654 C 262.15766,30.057332 261.60296,30.20317 260.87116,30.20317 C 260.59511,30.20317 260.30083,30.17192 259.98832,30.10942 C 259.67841,30.04692 259.35678,29.954466 259.02344,29.832066 L 259.02344,29.019536 C 259.34376,29.199231 259.65757,29.334653 259.96488,29.425801 C 260.27218,29.516951 260.57428,29.562525 260.87116,29.562524 C 261.3217,29.562525 261.66936,29.473984 261.91417,29.29689 C 262.15896,29.119801 262.28136,28.867189 262.28137,28.53905 C 262.28136,28.252584 262.19277,28.028618 262.01574,27.867151 C 261.84124,27.705689 261.55348,27.584591 261.15242,27.503856 L 260.67193,27.410106 C 260.08337,27.292918 259.65757,27.109317 259.39454,26.859305 C 259.13151,26.609299 259,26.261631 259,25.816299 C 259,25.300659 259.18099,24.894396 259.54299,24.597504 C 259.90759,24.300625 260.4089,24.152182 261.04694,24.152176 C 261.32039,24.152182 261.59905,24.176926 261.88292,24.226396 C 262.16677,24.275886 262.45715,24.350104 262.75404,24.449061" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3915"
|
||||
d="M 264.2,24.25817 L 264.97785,24.25817 L 264.97785,27.733613 C 264.97785,28.346703 265.08898,28.788636 265.31122,29.059416 C 265.53346,29.327642 265.89365,29.461755 266.39179,29.461755 C 266.88737,29.461755 267.24628,29.327642 267.46852,29.059416 C 267.69076,28.788636 267.80189,28.346703 267.80189,27.733613 L 267.80189,24.25817 L 268.57975,24.25817 L 268.57975,27.829408 C 268.57974,28.575333 268.39454,29.138607 268.02414,29.519232 C 267.65628,29.899857 267.11216,30.09017 266.39179,30.09017 C 265.66885,30.09017 265.12218,29.899857 264.75178,29.519232 C 264.38392,29.138607 264.2,28.575333 264.2,27.829408 L 264.2,24.25817" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3917"
|
||||
d="M 269.94609,24.25817 L 271.12187,24.25817 L 272.61014,28.226899 L 274.10622,24.25817 L 275.282,24.25817 L 275.282,30.09017 L 274.51247,30.09017 L 274.51247,24.969104 L 273.00857,28.969082 L 272.21561,28.969082 L 270.71171,24.969104 L 270.71171,30.09017 L 269.94609,30.09017 L 269.94609,24.25817" />
|
||||
<path
|
||||
d="M 278.05325,24.906326 L 278.05325,29.441483 L 279.00638,29.441483 C 279.81106,29.441483 280.3996,29.259192 280.772,28.894608 C 281.147,28.530026 281.3345,27.954506 281.3345,27.168045 C 281.3345,26.386799 281.147,25.815185 280.772,25.453201 C 280.3996,25.088623 279.81106,24.906331 279.00638,24.906326 L 278.05325,24.906326 M 277.26419,24.257889 L 278.88528,24.257889 C 280.01549,24.257895 280.84492,24.493571 281.37357,24.96492 C 281.90221,25.433675 282.16653,26.168049 282.16653,27.168045 C 282.16653,28.173255 281.9009,28.911536 281.36966,29.382889 C 280.83841,29.854243 280.01028,30.08992 278.88528,30.08992 L 277.26419,30.08992 L 277.26419,24.257889"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path3900"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6379"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 290.04935,24.257889 L 294.98294,24.257889 L 294.98294,24.921951 L 292.91263,24.921951 L 292.91263,30.08992 L 292.11966,30.08992 L 292.11966,24.921951 L 290.04935,24.921951 L 290.04935,24.257889" />
|
||||
<path
|
||||
d="M 283.42044,24.257889 L 284.2095,24.257889 L 284.2095,30.08992 L 283.42044,30.08992 L 283.42044,24.257889"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path3902"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 289.27591,24.449295 L 289.27591,25.218826 C 288.97643,25.075602 288.69387,24.968831 288.42825,24.898514 C 288.16263,24.828204 287.90611,24.79305 287.65872,24.793045 C 287.22903,24.79305 286.897,24.876385 286.66263,25.043045 C 286.43086,25.209717 286.31497,25.446696 286.31497,25.753983 C 286.31497,26.011799 286.39177,26.207111 286.54544,26.33992 C 286.70169,26.470132 286.99596,26.575601 287.42825,26.656326 L 287.90482,26.753986 C 288.49335,26.865968 288.92695,27.063884 289.2056,27.347736 C 289.48684,27.628988 289.62747,28.006592 289.62747,28.480548 C 289.62747,29.045653 289.43736,29.474038 289.05716,29.765704 C 288.67955,30.057371 288.12486,30.203204 287.3931,30.203204 C 287.11705,30.203204 286.82278,30.171954 286.51028,30.109454 C 286.20039,30.046954 285.87877,29.954507 285.54544,29.832111 L 285.54544,29.019611 C 285.86575,29.199299 286.17955,29.334715 286.48685,29.425861 C 286.79414,29.517011 287.09622,29.56258 287.3931,29.562579 C 287.84361,29.56258 288.19127,29.474039 288.43607,29.296954 C 288.68085,29.119872 288.80325,28.867268 288.80325,28.539142 C 288.80325,28.252685 288.71475,28.028727 288.53763,27.867267 C 288.36315,27.705811 288.07539,27.584717 287.67435,27.503986 L 287.19388,27.410236 C 286.60533,27.293051 286.17955,27.109457 285.91653,26.859454 C 285.65351,26.609458 285.522,26.261802 285.522,25.816486 C 285.522,25.300865 285.70299,24.894616 286.06497,24.597736 C 286.42955,24.300866 286.93086,24.152429 287.56888,24.152423 C 287.84231,24.152429 288.12096,24.177173 288.40482,24.226643 C 288.68867,24.276133 288.97903,24.350346 289.27591,24.449299"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path3904"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.9258742,0,0,1.6526792,-181.08506,-1.1260141)"
|
||||
id="waypoint-mode-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6382"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 316.26419,9.2578888 L 317.43997,9.2578888 L 318.92825,13.226639 L 320.42435,9.2578888 L 321.60013,9.2578888 L 321.60013,15.08992 L 320.8306,15.08992 L 320.8306,9.9688263 L 319.32669,13.968826 L 318.53372,13.968826 L 317.02982,9.9688263 L 317.02982,15.08992 L 316.26419,15.08992 L 316.26419,9.2578888" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6384"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 325.53763,9.793045 C 324.96471,9.7930503 324.50898,10.006592 324.17044,10.43367 C 323.8345,10.860758 323.66653,11.442788 323.66653,12.179764 C 323.66653,12.914141 323.8345,13.49487 324.17044,13.921951 C 324.50898,14.349035 324.96471,14.562577 325.53763,14.562576 C 326.11054,14.562577 326.56367,14.349035 326.897,13.921951 C 327.23294,13.49487 327.4009,12.914141 327.40091,12.179764 C 327.4009,11.442788 327.23294,10.860758 326.897,10.43367 C 326.56367,10.006592 326.11054,9.7930503 325.53763,9.793045 M 325.53763,9.15242 C 326.35533,9.152426 327.00898,9.4271653 327.49857,9.9766388 C 327.98814,10.523518 328.23293,11.257893 328.23294,12.179764 C 328.23293,13.099037 327.98814,13.833411 327.49857,14.382889 C 327.00898,14.929764 326.35533,15.203201 325.53763,15.203201 C 324.71731,15.203201 324.06106,14.929764 323.56888,14.382889 C 323.07929,13.836015 322.8345,13.101641 322.8345,12.179764 C 322.8345,11.257893 323.07929,10.523518 323.56888,9.9766388 C 324.06106,9.4271653 324.71731,9.152426 325.53763,9.15242" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6386"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 330.25638,9.9063263 L 330.25638,14.441483 L 331.2095,14.441483 C 332.01419,14.441483 332.60273,14.259192 332.97513,13.894608 C 333.35012,13.530026 333.53762,12.954506 333.53763,12.168045 C 333.53762,11.386799 333.35012,10.815185 332.97513,10.453201 C 332.60273,10.088623 332.01419,9.9063315 331.2095,9.9063263 L 330.25638,9.9063263 M 329.46732,9.2578888 L 331.08841,9.2578888 C 332.21861,9.2578946 333.04804,9.4935715 333.57669,9.96492 C 334.10533,10.433675 334.36965,11.168049 334.36966,12.168045 C 334.36965,13.173255 334.10403,13.911536 333.57278,14.382889 C 333.04153,14.854243 332.21341,15.08992 331.08841,15.08992 L 329.46732,15.08992 L 329.46732,9.2578888" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6388"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 335.62357,9.2578888 L 339.31107,9.2578888 L 339.31107,9.9219513 L 336.41263,9.9219513 L 336.41263,11.648514 L 339.18997,11.648514 L 339.18997,12.312576 L 336.41263,12.312576 L 336.41263,14.425858 L 339.38138,14.425858 L 339.38138,15.08992 L 335.62357,15.08992 L 335.62357,9.2578888" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.9981106,0,0,1.7146685,-309.8137,-2.5942391)"
|
||||
id="waypoint-eta-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6802"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 378.26419,24.257889 L 381.95169,24.257889 L 381.95169,24.921951 L 379.05325,24.921951 L 379.05325,26.648514 L 381.8306,26.648514 L 381.8306,27.312576 L 379.05325,27.312576 L 379.05325,29.425858 L 382.022,29.425858 L 382.022,30.08992 L 378.26419,30.08992 L 378.26419,24.257889" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6804"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 382.5181,24.257889 L 387.45169,24.257889 L 387.45169,24.921951 L 385.38138,24.921951 L 385.38138,30.08992 L 384.58841,30.08992 L 384.58841,24.921951 L 382.5181,24.921951 L 382.5181,24.257889" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6806"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 389.54153,25.035233 L 388.47122,27.937576 L 390.61575,27.937576 L 389.54153,25.035233 M 389.09622,24.257889 L 389.99075,24.257889 L 392.21341,30.08992 L 391.3931,30.08992 L 390.86185,28.593826 L 388.23294,28.593826 L 387.70169,30.08992 L 386.86966,30.08992 L 389.09622,24.257889" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer20"
|
||||
@ -2849,42 +3590,42 @@
|
||||
id="waypoint-eta-text"
|
||||
transform="matrix(1.1017861,0,0,1.1017861,61.29339,14.558341)">
|
||||
<path
|
||||
d="m 400.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 400.29349,23.12117 C 399.68411,23.121178 399.22513,23.421959 398.91653,24.023514 C 398.61184,24.621177 398.4595,25.521566 398.4595,26.724686 C 398.4595,27.923908 398.61184,28.824297 398.91653,29.425858 C 399.22513,30.023515 399.68411,30.322343 400.29349,30.322342 C 400.90676,30.322343 401.36575,30.023515 401.67044,29.425858 C 401.97903,28.824297 402.13333,27.923908 402.13333,26.724686 C 402.13333,25.521566 401.97903,24.621177 401.67044,24.023514 C 401.36575,23.421959 400.90676,23.121178 400.29349,23.12117 M 400.29349,22.18367 C 401.27395,22.183679 402.022,22.57235 402.53763,23.349686 C 403.05715,24.12313 403.31692,25.248129 403.31693,26.724686 C 403.31692,28.197345 403.05715,29.322344 402.53763,30.099686 C 402.022,30.873123 401.27395,31.259842 400.29349,31.259842 C 399.31302,31.259842 398.56302,30.873123 398.04349,30.099686 C 397.52786,29.322344 397.27005,28.197345 397.27005,26.724686 C 397.27005,25.248129 397.52786,24.12313 398.04349,23.349686 C 398.56302,22.57235 399.31302,22.183679 400.29349,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6441"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 407.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 407.93411,23.12117 C 407.32473,23.121178 406.86575,23.421959 406.55716,24.023514 C 406.25247,24.621177 406.10013,25.521566 406.10013,26.724686 C 406.10013,27.923908 406.25247,28.824297 406.55716,29.425858 C 406.86575,30.023515 407.32473,30.322343 407.93411,30.322342 C 408.54739,30.322343 409.00637,30.023515 409.31107,29.425858 C 409.61965,28.824297 409.77395,27.923908 409.77396,26.724686 C 409.77395,25.521566 409.61965,24.621177 409.31107,24.023514 C 409.00637,23.421959 408.54739,23.121178 407.93411,23.12117 M 407.93411,22.18367 C 408.91458,22.183679 409.66262,22.57235 410.17825,23.349686 C 410.69778,24.12313 410.95754,25.248129 410.95755,26.724686 C 410.95754,28.197345 410.69778,29.322344 410.17825,30.099686 C 409.66262,30.873123 408.91458,31.259842 407.93411,31.259842 C 406.95364,31.259842 406.20364,30.873123 405.68411,30.099686 C 405.16849,29.322344 404.91067,28.197345 404.91068,26.724686 C 404.91067,25.248129 405.16849,24.12313 405.68411,23.349686 C 406.20364,22.57235 406.95364,22.183679 407.93411,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6443"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 413.16653,29.601639 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281 m 0,-4.716797 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281"
|
||||
d="M 413.16653,29.601639 L 414.40286,29.601639 L 414.40286,31.08992 L 413.16653,31.08992 L 413.16653,29.601639 M 413.16653,24.884842 L 414.40286,24.884842 L 414.40286,26.373123 L 413.16653,26.373123 L 413.16653,24.884842"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6445"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 419.62943,23.12117 c -0.60938,8e-6 -1.06837,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.77929,3.375 c 0,1.472659 -0.25977,2.597658 -0.77929,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98048,0 -1.73048,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51952,-0.777336 1.26952,-1.166007 2.25,-1.166016"
|
||||
d="M 419.62943,23.12117 C 419.02005,23.121178 418.56106,23.421959 418.25247,24.023514 C 417.94778,24.621177 417.79544,25.521566 417.79544,26.724686 C 417.79544,27.923908 417.94778,28.824297 418.25247,29.425858 C 418.56106,30.023515 419.02005,30.322343 419.62943,30.322342 C 420.2427,30.322343 420.70169,30.023515 421.00638,29.425858 C 421.31497,28.824297 421.46926,27.923908 421.46927,26.724686 C 421.46926,25.521566 421.31497,24.621177 421.00638,24.023514 C 420.70169,23.421959 420.2427,23.121178 419.62943,23.12117 M 419.62943,22.18367 C 420.60989,22.183679 421.35794,22.57235 421.87357,23.349686 C 422.39309,24.12313 422.65286,25.248129 422.65286,26.724686 C 422.65286,28.197345 422.39309,29.322344 421.87357,30.099686 C 421.35794,30.873123 420.60989,31.259842 419.62943,31.259842 C 418.64895,31.259842 417.89895,30.873123 417.37943,30.099686 C 416.8638,29.322344 416.60599,28.197345 416.60599,26.724686 C 416.60599,25.248129 416.8638,24.12313 417.37943,23.349686 C 417.89895,22.57235 418.64895,22.183679 419.62943,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6447"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 427.27005,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45704,1.498052 -0.45703,2.701172 c -10e-6,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76367,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 427.27005,23.12117 C 426.66067,23.121178 426.20169,23.421959 425.8931,24.023514 C 425.58841,24.621177 425.43606,25.521566 425.43607,26.724686 C 425.43606,27.923908 425.58841,28.824297 425.8931,29.425858 C 426.20169,30.023515 426.66067,30.322343 427.27005,30.322342 C 427.88333,30.322343 428.34231,30.023515 428.647,29.425858 C 428.95559,28.824297 429.10989,27.923908 429.10989,26.724686 C 429.10989,25.521566 428.95559,24.621177 428.647,24.023514 C 428.34231,23.421959 427.88333,23.121178 427.27005,23.12117 M 427.27005,22.18367 C 428.25051,22.183679 428.99856,22.57235 429.51419,23.349686 C 430.03372,24.12313 430.29348,25.248129 430.29349,26.724686 C 430.29348,28.197345 430.03372,29.322344 429.51419,30.099686 C 428.99856,30.873123 428.25051,31.259842 427.27005,31.259842 C 426.28958,31.259842 425.53958,30.873123 425.02005,30.099686 C 424.50442,29.322344 424.24661,28.197345 424.24661,26.724686 C 424.24661,25.248129 424.50442,24.12313 425.02005,23.349686 C 425.53958,22.57235 426.28958,22.183679 427.27005,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6449"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 432.50247,29.601639 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281 m 0,-4.716797 l 1.23633,0 l 0,1.488281 l -1.23633,0 l 0,-1.488281"
|
||||
d="M 432.50247,29.601639 L 433.7388,29.601639 L 433.7388,31.08992 L 432.50247,31.08992 L 432.50247,29.601639 M 432.50247,24.884842 L 433.7388,24.884842 L 433.7388,26.373123 L 432.50247,26.373123 L 432.50247,24.884842"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6451"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 438.96536,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 438.96536,23.12117 C 438.35598,23.121178 437.897,23.421959 437.58841,24.023514 C 437.28372,24.621177 437.13138,25.521566 437.13138,26.724686 C 437.13138,27.923908 437.28372,28.824297 437.58841,29.425858 C 437.897,30.023515 438.35598,30.322343 438.96536,30.322342 C 439.57864,30.322343 440.03762,30.023515 440.34232,29.425858 C 440.6509,28.824297 440.8052,27.923908 440.80521,26.724686 C 440.8052,25.521566 440.6509,24.621177 440.34232,24.023514 C 440.03762,23.421959 439.57864,23.121178 438.96536,23.12117 M 438.96536,22.18367 C 439.94583,22.183679 440.69387,22.57235 441.2095,23.349686 C 441.72903,24.12313 441.98879,25.248129 441.9888,26.724686 C 441.98879,28.197345 441.72903,29.322344 441.2095,30.099686 C 440.69387,30.873123 439.94583,31.259842 438.96536,31.259842 C 437.98489,31.259842 437.23489,30.873123 436.71536,30.099686 C 436.19974,29.322344 435.94192,28.197345 435.94193,26.724686 C 435.94192,25.248129 436.19974,24.12313 436.71536,23.349686 C 437.23489,22.57235 437.98489,22.183679 438.96536,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6453"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 446.60599,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 446.60599,23.12117 C 445.99661,23.121178 445.53763,23.421959 445.22903,24.023514 C 444.92434,24.621177 444.772,25.521566 444.772,26.724686 C 444.772,27.923908 444.92434,28.824297 445.22903,29.425858 C 445.53763,30.023515 445.99661,30.322343 446.60599,30.322342 C 447.21926,30.322343 447.67825,30.023515 447.98294,29.425858 C 448.29153,28.824297 448.44583,27.923908 448.44583,26.724686 C 448.44583,25.521566 448.29153,24.621177 447.98294,24.023514 C 447.67825,23.421959 447.21926,23.121178 446.60599,23.12117 M 446.60599,22.18367 C 447.58645,22.183679 448.3345,22.57235 448.85013,23.349686 C 449.36965,24.12313 449.62942,25.248129 449.62943,26.724686 C 449.62942,28.197345 449.36965,29.322344 448.85013,30.099686 C 448.3345,30.873123 447.58645,31.259842 446.60599,31.259842 C 445.62552,31.259842 444.87552,30.873123 444.35599,30.099686 C 443.84036,29.322344 443.58255,28.197345 443.58255,26.724686 C 443.58255,25.248129 443.84036,24.12313 444.35599,23.349686 C 444.87552,22.57235 445.62552,22.183679 446.60599,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6455"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -2900,42 +3641,42 @@
|
||||
id="waypoint-distance-text"
|
||||
transform="matrix(1.1017861,0,0,1.1017861,17.436688,-10.441659)">
|
||||
<path
|
||||
d="m 303.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 303.29349,23.12117 C 302.68411,23.121178 302.22513,23.421959 301.91653,24.023514 C 301.61184,24.621177 301.4595,25.521566 301.4595,26.724686 C 301.4595,27.923908 301.61184,28.824297 301.91653,29.425858 C 302.22513,30.023515 302.68411,30.322343 303.29349,30.322342 C 303.90676,30.322343 304.36575,30.023515 304.67044,29.425858 C 304.97903,28.824297 305.13333,27.923908 305.13333,26.724686 C 305.13333,25.521566 304.97903,24.621177 304.67044,24.023514 C 304.36575,23.421959 303.90676,23.121178 303.29349,23.12117 M 303.29349,22.18367 C 304.27395,22.183679 305.022,22.57235 305.53763,23.349686 C 306.05715,24.12313 306.31692,25.248129 306.31693,26.724686 C 306.31692,28.197345 306.05715,29.322344 305.53763,30.099686 C 305.022,30.873123 304.27395,31.259842 303.29349,31.259842 C 302.31302,31.259842 301.56302,30.873123 301.04349,30.099686 C 300.52786,29.322344 300.27005,28.197345 300.27005,26.724686 C 300.27005,25.248129 300.52786,24.12313 301.04349,23.349686 C 301.56302,22.57235 302.31302,22.183679 303.29349,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6391"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 310.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 310.93411,23.12117 C 310.32473,23.121178 309.86575,23.421959 309.55716,24.023514 C 309.25247,24.621177 309.10013,25.521566 309.10013,26.724686 C 309.10013,27.923908 309.25247,28.824297 309.55716,29.425858 C 309.86575,30.023515 310.32473,30.322343 310.93411,30.322342 C 311.54739,30.322343 312.00637,30.023515 312.31107,29.425858 C 312.61965,28.824297 312.77395,27.923908 312.77396,26.724686 C 312.77395,25.521566 312.61965,24.621177 312.31107,24.023514 C 312.00637,23.421959 311.54739,23.121178 310.93411,23.12117 M 310.93411,22.18367 C 311.91458,22.183679 312.66262,22.57235 313.17825,23.349686 C 313.69778,24.12313 313.95754,25.248129 313.95755,26.724686 C 313.95754,28.197345 313.69778,29.322344 313.17825,30.099686 C 312.66262,30.873123 311.91458,31.259842 310.93411,31.259842 C 309.95364,31.259842 309.20364,30.873123 308.68411,30.099686 C 308.16849,29.322344 307.91067,28.197345 307.91068,26.724686 C 307.91067,25.248129 308.16849,24.12313 308.68411,23.349686 C 309.20364,22.57235 309.95364,22.183679 310.93411,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6393"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 318.57474,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 318.57474,23.12117 C 317.96536,23.121178 317.50638,23.421959 317.19778,24.023514 C 316.89309,24.621177 316.74075,25.521566 316.74075,26.724686 C 316.74075,27.923908 316.89309,28.824297 317.19778,29.425858 C 317.50638,30.023515 317.96536,30.322343 318.57474,30.322342 C 319.18801,30.322343 319.647,30.023515 319.95169,29.425858 C 320.26028,28.824297 320.41458,27.923908 320.41458,26.724686 C 320.41458,25.521566 320.26028,24.621177 319.95169,24.023514 C 319.647,23.421959 319.18801,23.121178 318.57474,23.12117 M 318.57474,22.18367 C 319.5552,22.183679 320.30325,22.57235 320.81888,23.349686 C 321.3384,24.12313 321.59817,25.248129 321.59818,26.724686 C 321.59817,28.197345 321.3384,29.322344 320.81888,30.099686 C 320.30325,30.873123 319.5552,31.259842 318.57474,31.259842 C 317.59427,31.259842 316.84427,30.873123 316.32474,30.099686 C 315.80911,29.322344 315.5513,28.197345 315.5513,26.724686 C 315.5513,25.248129 315.80911,24.12313 316.32474,23.349686 C 316.84427,22.57235 317.59427,22.183679 318.57474,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6395"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 326.21536,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 326.21536,23.12117 C 325.60598,23.121178 325.147,23.421959 324.83841,24.023514 C 324.53372,24.621177 324.38138,25.521566 324.38138,26.724686 C 324.38138,27.923908 324.53372,28.824297 324.83841,29.425858 C 325.147,30.023515 325.60598,30.322343 326.21536,30.322342 C 326.82864,30.322343 327.28762,30.023515 327.59232,29.425858 C 327.9009,28.824297 328.0552,27.923908 328.05521,26.724686 C 328.0552,25.521566 327.9009,24.621177 327.59232,24.023514 C 327.28762,23.421959 326.82864,23.121178 326.21536,23.12117 M 326.21536,22.18367 C 327.19583,22.183679 327.94387,22.57235 328.4595,23.349686 C 328.97903,24.12313 329.23879,25.248129 329.2388,26.724686 C 329.23879,28.197345 328.97903,29.322344 328.4595,30.099686 C 327.94387,30.873123 327.19583,31.259842 326.21536,31.259842 C 325.23489,31.259842 324.48489,30.873123 323.96536,30.099686 C 323.44974,29.322344 323.19192,28.197345 323.19193,26.724686 C 323.19192,25.248129 323.44974,24.12313 323.96536,23.349686 C 324.48489,22.57235 325.23489,22.183679 326.21536,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6397"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 333.85599,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 333.85599,23.12117 C 333.24661,23.121178 332.78763,23.421959 332.47903,24.023514 C 332.17434,24.621177 332.022,25.521566 332.022,26.724686 C 332.022,27.923908 332.17434,28.824297 332.47903,29.425858 C 332.78763,30.023515 333.24661,30.322343 333.85599,30.322342 C 334.46926,30.322343 334.92825,30.023515 335.23294,29.425858 C 335.54153,28.824297 335.69583,27.923908 335.69583,26.724686 C 335.69583,25.521566 335.54153,24.621177 335.23294,24.023514 C 334.92825,23.421959 334.46926,23.121178 333.85599,23.12117 M 333.85599,22.18367 C 334.83645,22.183679 335.5845,22.57235 336.10013,23.349686 C 336.61965,24.12313 336.87942,25.248129 336.87943,26.724686 C 336.87942,28.197345 336.61965,29.322344 336.10013,30.099686 C 335.5845,30.873123 334.83645,31.259842 333.85599,31.259842 C 332.87552,31.259842 332.12552,30.873123 331.60599,30.099686 C 331.09036,29.322344 330.83255,28.197345 330.83255,26.724686 C 330.83255,25.248129 331.09036,24.12313 331.60599,23.349686 C 332.12552,22.57235 332.87552,22.183679 333.85599,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6399"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 341.49661,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 341.49661,23.12117 C 340.88723,23.121178 340.42825,23.421959 340.11966,24.023514 C 339.81497,24.621177 339.66263,25.521566 339.66263,26.724686 C 339.66263,27.923908 339.81497,28.824297 340.11966,29.425858 C 340.42825,30.023515 340.88723,30.322343 341.49661,30.322342 C 342.10989,30.322343 342.56887,30.023515 342.87357,29.425858 C 343.18215,28.824297 343.33645,27.923908 343.33646,26.724686 C 343.33645,25.521566 343.18215,24.621177 342.87357,24.023514 C 342.56887,23.421959 342.10989,23.121178 341.49661,23.12117 M 341.49661,22.18367 C 342.47708,22.183679 343.22512,22.57235 343.74075,23.349686 C 344.26028,24.12313 344.52004,25.248129 344.52005,26.724686 C 344.52004,28.197345 344.26028,29.322344 343.74075,30.099686 C 343.22512,30.873123 342.47708,31.259842 341.49661,31.259842 C 340.51614,31.259842 339.76614,30.873123 339.24661,30.099686 C 338.73099,29.322344 338.47317,28.197345 338.47318,26.724686 C 338.47317,25.248129 338.73099,24.12313 339.24661,23.349686 C 339.76614,22.57235 340.51614,22.183679 341.49661,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6401"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 349.13724,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 349.13724,23.12117 C 348.52786,23.121178 348.06888,23.421959 347.76028,24.023514 C 347.45559,24.621177 347.30325,25.521566 347.30325,26.724686 C 347.30325,27.923908 347.45559,28.824297 347.76028,29.425858 C 348.06888,30.023515 348.52786,30.322343 349.13724,30.322342 C 349.75051,30.322343 350.2095,30.023515 350.51419,29.425858 C 350.82278,28.824297 350.97708,27.923908 350.97708,26.724686 C 350.97708,25.521566 350.82278,24.621177 350.51419,24.023514 C 350.2095,23.421959 349.75051,23.121178 349.13724,23.12117 M 349.13724,22.18367 C 350.1177,22.183679 350.86575,22.57235 351.38138,23.349686 C 351.9009,24.12313 352.16067,25.248129 352.16068,26.724686 C 352.16067,28.197345 351.9009,29.322344 351.38138,30.099686 C 350.86575,30.873123 350.1177,31.259842 349.13724,31.259842 C 348.15677,31.259842 347.40677,30.873123 346.88724,30.099686 C 346.37161,29.322344 346.1138,28.197345 346.1138,26.724686 C 346.1138,25.248129 346.37161,24.12313 346.88724,23.349686 C 347.40677,22.57235 348.15677,22.183679 349.13724,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6403"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 356.77786,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 356.77786,23.12117 C 356.16848,23.121178 355.7095,23.421959 355.40091,24.023514 C 355.09622,24.621177 354.94388,25.521566 354.94388,26.724686 C 354.94388,27.923908 355.09622,28.824297 355.40091,29.425858 C 355.7095,30.023515 356.16848,30.322343 356.77786,30.322342 C 357.39114,30.322343 357.85012,30.023515 358.15482,29.425858 C 358.4634,28.824297 358.6177,27.923908 358.61771,26.724686 C 358.6177,25.521566 358.4634,24.621177 358.15482,24.023514 C 357.85012,23.421959 357.39114,23.121178 356.77786,23.12117 M 356.77786,22.18367 C 357.75833,22.183679 358.50637,22.57235 359.022,23.349686 C 359.54153,24.12313 359.80129,25.248129 359.8013,26.724686 C 359.80129,28.197345 359.54153,29.322344 359.022,30.099686 C 358.50637,30.873123 357.75833,31.259842 356.77786,31.259842 C 355.79739,31.259842 355.04739,30.873123 354.52786,30.099686 C 354.01224,29.322344 353.75442,28.197345 353.75443,26.724686 C 353.75442,25.248129 354.01224,24.12313 354.52786,23.349686 C 355.04739,22.57235 355.79739,22.183679 356.77786,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6405"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -2951,17 +3692,17 @@
|
||||
id="waypoint-heading-text"
|
||||
transform="matrix(1.1017861,0,0,1.1017861,-11.977973,14.558341)">
|
||||
<path
|
||||
d="m 216.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 216.29349,23.12117 C 215.68411,23.121178 215.22513,23.421959 214.91653,24.023514 C 214.61184,24.621177 214.4595,25.521566 214.4595,26.724686 C 214.4595,27.923908 214.61184,28.824297 214.91653,29.425858 C 215.22513,30.023515 215.68411,30.322343 216.29349,30.322342 C 216.90676,30.322343 217.36575,30.023515 217.67044,29.425858 C 217.97903,28.824297 218.13333,27.923908 218.13333,26.724686 C 218.13333,25.521566 217.97903,24.621177 217.67044,24.023514 C 217.36575,23.421959 216.90676,23.121178 216.29349,23.12117 M 216.29349,22.18367 C 217.27395,22.183679 218.022,22.57235 218.53763,23.349686 C 219.05715,24.12313 219.31692,25.248129 219.31693,26.724686 C 219.31692,28.197345 219.05715,29.322344 218.53763,30.099686 C 218.022,30.873123 217.27395,31.259842 216.29349,31.259842 C 215.31302,31.259842 214.56302,30.873123 214.04349,30.099686 C 213.52786,29.322344 213.27005,28.197345 213.27005,26.724686 C 213.27005,25.248129 213.52786,24.12313 214.04349,23.349686 C 214.56302,22.57235 215.31302,22.183679 216.29349,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6337"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 223.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 223.93411,23.12117 C 223.32473,23.121178 222.86575,23.421959 222.55716,24.023514 C 222.25247,24.621177 222.10013,25.521566 222.10013,26.724686 C 222.10013,27.923908 222.25247,28.824297 222.55716,29.425858 C 222.86575,30.023515 223.32473,30.322343 223.93411,30.322342 C 224.54739,30.322343 225.00637,30.023515 225.31107,29.425858 C 225.61965,28.824297 225.77395,27.923908 225.77396,26.724686 C 225.77395,25.521566 225.61965,24.621177 225.31107,24.023514 C 225.00637,23.421959 224.54739,23.121178 223.93411,23.12117 M 223.93411,22.18367 C 224.91458,22.183679 225.66262,22.57235 226.17825,23.349686 C 226.69778,24.12313 226.95754,25.248129 226.95755,26.724686 C 226.95754,28.197345 226.69778,29.322344 226.17825,30.099686 C 225.66262,30.873123 224.91458,31.259842 223.93411,31.259842 C 222.95364,31.259842 222.20364,30.873123 221.68411,30.099686 C 221.16849,29.322344 220.91067,28.197345 220.91068,26.724686 C 220.91067,25.248129 221.16849,24.12313 221.68411,23.349686 C 222.20364,22.57235 222.95364,22.183679 223.93411,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6339"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 231.57474,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016"
|
||||
d="M 231.57474,23.12117 C 230.96536,23.121178 230.50638,23.421959 230.19778,24.023514 C 229.89309,24.621177 229.74075,25.521566 229.74075,26.724686 C 229.74075,27.923908 229.89309,28.824297 230.19778,29.425858 C 230.50638,30.023515 230.96536,30.322343 231.57474,30.322342 C 232.18801,30.322343 232.647,30.023515 232.95169,29.425858 C 233.26028,28.824297 233.41458,27.923908 233.41458,26.724686 C 233.41458,25.521566 233.26028,24.621177 232.95169,24.023514 C 232.647,23.421959 232.18801,23.121178 231.57474,23.12117 M 231.57474,22.18367 C 232.5552,22.183679 233.30325,22.57235 233.81888,23.349686 C 234.3384,24.12313 234.59817,25.248129 234.59818,26.724686 C 234.59817,28.197345 234.3384,29.322344 233.81888,30.099686 C 233.30325,30.873123 232.5552,31.259842 231.57474,31.259842 C 230.59427,31.259842 229.84427,30.873123 229.32474,30.099686 C 228.80911,29.322344 228.5513,28.197345 228.5513,26.724686 C 228.5513,25.248129 228.80911,24.12313 229.32474,23.349686 C 229.84427,22.57235 230.59427,22.183679 231.57474,22.18367"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6341"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -2977,82 +3718,82 @@
|
||||
id="waypoint-mode-text"
|
||||
transform="matrix(1.0767613,0,0,1.0767613,127.81017,6.4920314)">
|
||||
<path
|
||||
d="m 346.84036,8.3145294 l 0,6.8027346 l 1.42969,0 c 1.20703,10e-7 2.08984,-0.273436 2.64844,-0.820313 c 0.56249,-0.546872 0.84374,-1.410153 0.84375,-2.589843 c -1e-5,-1.17187 -0.28126,-2.0292909 -0.84375,-2.5722661 c -0.5586,-0.5468675 -1.44141,-0.8203047 -2.64844,-0.8203125 l -1.42969,0 m -1.18359,-0.9726562 l 2.43164,0 c 1.69531,8.7e-6 2.93945,0.353524 3.73242,1.0605468 c 0.79296,0.703132 1.18945,1.804693 1.18945,3.304688 c 0,1.507815 -0.39844,2.615236 -1.19531,3.322265 c -0.79688,0.707032 -2.03907,1.060547 -3.72656,1.060547 l -2.43164,0 l 0,-8.7480468"
|
||||
d="M 346.84036,8.3145294 L 346.84036,15.117264 L 348.27005,15.117264 C 349.47708,15.117265 350.35989,14.843828 350.91849,14.296951 C 351.48098,13.750079 351.76223,12.886798 351.76224,11.707108 C 351.76223,10.535238 351.48098,9.6778171 350.91849,9.1348419 C 350.35989,8.5879744 349.47708,8.3145372 348.27005,8.3145294 L 346.84036,8.3145294 M 345.65677,7.3418732 L 348.08841,7.3418732 C 349.78372,7.3418819 351.02786,7.6953972 351.82083,8.40242 C 352.61379,9.105552 353.01028,10.207113 353.01028,11.707108 C 353.01028,13.214923 352.61184,14.322344 351.81497,15.029373 C 351.01809,15.736405 349.7759,16.08992 348.08841,16.08992 L 345.65677,16.08992 L 345.65677,7.3418732"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6408"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 358.647,10.535233 c -0.1211,-0.07031 -0.25391,-0.121089 -0.39843,-0.152344 c -0.14063,-0.03515 -0.29688,-0.05273 -0.46875,-0.05274 c -0.60938,6e-6 -1.07813,0.199225 -1.40625,0.597657 c -0.32423,0.394536 -0.48633,0.962894 -0.48633,1.705078 l 0,3.457031 l -1.08399,0 l 0,-6.5625 l 1.08399,0 l 0,1.019531 c 0.22656,-0.398431 0.52148,-0.6933528 0.88476,-0.8847653 c 0.36328,-0.1953059 0.80469,-0.2929621 1.32422,-0.2929688 c 0.0742,6.7e-6 0.15625,0.00587 0.2461,0.017578 c 0.0898,0.00782 0.18944,0.021491 0.29882,0.041016 l 0.006,1.1074221"
|
||||
d="M 358.647,10.535233 C 358.5259,10.464923 358.39309,10.414144 358.24857,10.382889 C 358.10794,10.347739 357.95169,10.330159 357.77982,10.330149 C 357.17044,10.330155 356.70169,10.529374 356.37357,10.927806 C 356.04934,11.322342 355.88724,11.8907 355.88724,12.632884 L 355.88724,16.089915 L 354.80325,16.089915 L 354.80325,9.527415 L 355.88724,9.527415 L 355.88724,10.546946 C 356.1138,10.148515 356.40872,9.8535932 356.772,9.6621807 C 357.13528,9.4668748 357.57669,9.3692186 358.09622,9.3692119 C 358.17042,9.3692186 358.25247,9.3750819 358.34232,9.3867899 C 358.43212,9.3946099 358.53176,9.4082809 358.64114,9.4278059 L 358.64714,10.535228"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6410"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 359.78958,9.52742 l 1.07813,0 l 0,6.5625 l -1.07813,0 l 0,-6.5625 m 0,-2.5546875 l 1.07813,0 l 0,1.3652344 l -1.07813,0 l 0,-1.3652344"
|
||||
d="M 359.78958,9.52742 L 360.86771,9.52742 L 360.86771,16.08992 L 359.78958,16.08992 L 359.78958,9.52742 M 359.78958,6.9727325 L 360.86771,6.9727325 L 360.86771,8.3379669 L 359.78958,8.3379669 L 359.78958,6.9727325"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6412"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 362.34427,9.52742 l 1.14258,0 l 2.05078,5.507813 l 2.05078,-5.507813 l 1.14258,0 l -2.46094,6.5625 l -1.46484,0 l -2.46094,-6.5625"
|
||||
d="M 362.34427,9.52742 L 363.48685,9.52742 L 365.53763,15.035233 L 367.58841,9.52742 L 368.73099,9.52742 L 366.27005,16.08992 L 364.80521,16.08992 L 362.34427,9.52742"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6414"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 375.83255,12.539139 l 0,0.527344 l -4.95703,0 c 0.0469,0.742189 0.26953,1.308595 0.66797,1.699218 c 0.40234,0.38672 0.96093,0.580079 1.67578,0.580078 c 0.41406,10e-7 0.81445,-0.05078 1.20117,-0.152343 c 0.39062,-0.101562 0.77734,-0.253905 1.16016,-0.457032 l 0,1.019532 c -0.38673,0.164062 -0.78321,0.289062 -1.18946,0.375 c -0.40625,0.08594 -0.81836,0.128906 -1.23632,0.128906 c -1.04688,0 -1.87696,-0.304687 -2.49024,-0.914063 c -0.60937,-0.609373 -0.91406,-1.433591 -0.91406,-2.472656 c 0,-1.074214 0.28906,-1.925776 0.86719,-2.554687 c 0.58203,-0.6328064 1.36523,-0.9492124 2.34961,-0.9492191 c 0.8828,6.7e-6 1.58007,0.2851627 2.09179,0.8554691 c 0.51562,0.566411 0.77343,1.337895 0.77344,2.314453 m -1.07812,-0.316406 c -0.008,-0.58984 -0.17384,-1.060542 -0.49805,-1.41211 c -0.32032,-0.351557 -0.7461,-0.527338 -1.27735,-0.527344 c -0.60156,6e-6 -1.08398,0.169928 -1.44726,0.509766 c -0.35938,0.339849 -0.56641,0.818364 -0.62109,1.435547 l 3.84375,-0.0059"
|
||||
d="M 375.83255,12.539139 L 375.83255,13.066483 L 370.87552,13.066483 C 370.92242,13.808672 371.14505,14.375078 371.54349,14.765701 C 371.94583,15.152421 372.50442,15.34578 373.21927,15.345779 C 373.63333,15.34578 374.03372,15.294999 374.42044,15.193436 C 374.81106,15.091874 375.19778,14.939531 375.5806,14.736404 L 375.5806,15.755936 C 375.19387,15.919998 374.79739,16.044998 374.39114,16.130936 C 373.98489,16.216876 373.57278,16.259842 373.15482,16.259842 C 372.10794,16.259842 371.27786,15.955155 370.66458,15.345779 C 370.05521,14.736406 369.75052,13.912188 369.75052,12.873123 C 369.75052,11.798909 370.03958,10.947347 370.61771,10.318436 C 371.19974,9.6856296 371.98294,9.3692236 372.96732,9.3692169 C 373.85012,9.3692236 374.54739,9.6543796 375.05911,10.224686 C 375.57473,10.791097 375.83254,11.562581 375.83255,12.539139 M 374.75443,12.222733 C 374.74643,11.632893 374.58059,11.162191 374.25638,10.810623 C 373.93606,10.459066 373.51028,10.283285 372.97903,10.283279 C 372.37747,10.283285 371.89505,10.453207 371.53177,10.793045 C 371.17239,11.132894 370.96536,11.611409 370.91068,12.228592 L 374.75443,12.222692"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6416"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 388.02005,8.0157013 l 0,1.2480469 C 387.62161,8.8926616 387.19582,8.6153181 386.74271,8.4317169 C 386.29348,8.248131 385.81497,8.1563342 385.30716,8.1563263 c -1,7.9e-6 -1.76563,0.3066482 -2.29688,0.9199219 c -0.53125,0.6093814 -0.79687,1.4921928 -0.79687,2.6484378 c 0,1.152347 0.26562,2.035158 0.79687,2.648437 c 0.53125,0.609376 1.29688,0.914063 2.29688,0.914063 c 0.50781,0 0.98632,-0.0918 1.43555,-0.275391 c 0.45311,-0.183592 0.8789,-0.460936 1.27734,-0.832031 l 0,1.236328 c -0.41407,0.28125 -0.85352,0.492188 -1.31836,0.632812 c -0.46094,0.140625 -0.94922,0.210938 -1.46484,0.210938 c -1.32423,0 -2.36719,-0.404297 -3.12891,-1.212891 c -0.76172,-0.812498 -1.14258,-1.919919 -1.14258,-3.322265 c 0,-1.406245 0.38086,-2.5136653 1.14258,-3.322266 c 0.76172,-0.8124915 1.80468,-1.218741 3.12891,-1.21875 c 0.52343,9e-6 1.01562,0.070321 1.47656,0.2109375 c 0.46484,0.1367274 0.90038,0.3437584 1.30664,0.6210938"
|
||||
d="M 388.02005,8.0157013 L 388.02005,9.2637482 C 387.62161,8.8926616 387.19582,8.6153181 386.74271,8.4317169 C 386.29348,8.248131 385.81497,8.1563342 385.30716,8.1563263 C 384.30716,8.1563342 383.54153,8.4629745 383.01028,9.0762482 C 382.47903,9.6856296 382.21341,10.568441 382.21341,11.724686 C 382.21341,12.877033 382.47903,13.759844 383.01028,14.373123 C 383.54153,14.982499 384.30716,15.287186 385.30716,15.287186 C 385.81497,15.287186 386.29348,15.195386 386.74271,15.011795 C 387.19582,14.828203 387.62161,14.550859 388.02005,14.179764 L 388.02005,15.416092 C 387.60598,15.697342 387.16653,15.90828 386.70169,16.048904 C 386.24075,16.189529 385.75247,16.259842 385.23685,16.259842 C 383.91262,16.259842 382.86966,15.855545 382.10794,15.046951 C 381.34622,14.234453 380.96536,13.127032 380.96536,11.724686 C 380.96536,10.318441 381.34622,9.2110207 382.10794,8.40242 C 382.86966,7.5899285 383.91262,7.183679 385.23685,7.18367 C 385.76028,7.183679 386.25247,7.253991 386.71341,7.3946075 C 387.17825,7.5313349 387.61379,7.7383659 388.02005,8.0157013"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6418"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 389.81302,9.52742 l 1.07812,0 l 0,6.5625 l -1.07812,0 l 0,-6.5625 m 0,-2.5546875 l 1.07812,0 l 0,1.3652344 l -1.07812,0 l 0,-1.3652344"
|
||||
d="M 389.81302,9.52742 L 390.89114,9.52742 L 390.89114,16.08992 L 389.81302,16.08992 L 389.81302,9.52742 M 389.81302,6.9727325 L 390.89114,6.9727325 L 390.89114,8.3379669 L 389.81302,8.3379669 L 389.81302,6.9727325"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6420"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 396.94388,10.535233 c -0.1211,-0.07031 -0.25391,-0.121089 -0.39844,-0.152344 c -0.14063,-0.03515 -0.29688,-0.05273 -0.46875,-0.05274 c -0.60938,6e-6 -1.07813,0.199225 -1.40625,0.597657 c -0.32422,0.394536 -0.48633,0.962894 -0.48633,1.705078 l 0,3.457031 l -1.08398,0 l 0,-6.5625 l 1.08398,0 l 0,1.019531 c 0.22656,-0.398431 0.52148,-0.6933528 0.88477,-0.8847653 c 0.36328,-0.1953059 0.80468,-0.2929621 1.32422,-0.2929688 c 0.0742,6.7e-6 0.15624,0.00587 0.24609,0.017578 c 0.0898,0.00782 0.18945,0.021491 0.29883,0.041016 l 0.006,1.1074221"
|
||||
d="M 396.94388,10.535233 C 396.82278,10.464923 396.68997,10.414144 396.54544,10.382889 C 396.40481,10.347739 396.24856,10.330159 396.07669,10.330149 C 395.46731,10.330155 394.99856,10.529374 394.67044,10.927806 C 394.34622,11.322342 394.18411,11.8907 394.18411,12.632884 L 394.18411,16.089915 L 393.10013,16.089915 L 393.10013,9.527415 L 394.18411,9.527415 L 394.18411,10.546946 C 394.41067,10.148515 394.70559,9.8535932 395.06888,9.6621807 C 395.43216,9.4668748 395.87356,9.3692186 396.3931,9.3692119 C 396.4673,9.3692186 396.54934,9.3750819 396.63919,9.3867899 C 396.72899,9.3946099 396.82864,9.4082809 396.93802,9.4278059 L 396.94402,10.535228"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6422"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 402.5513,9.7793732 l 0,1.0078128 c -0.30469,-0.167964 -0.61133,-0.292963 -0.91992,-0.375 c -0.30469,-0.08593 -0.61329,-0.128901 -0.92578,-0.128907 c -0.69923,6e-6 -1.24219,0.222662 -1.62891,0.667969 c -0.38672,0.441411 -0.58008,1.062504 -0.58008,1.863281 c 0,0.800784 0.19336,1.42383 0.58008,1.869141 c 0.38672,0.441407 0.92968,0.66211 1.62891,0.662109 c 0.31249,10e-7 0.62109,-0.04101 0.92578,-0.123046 c 0.30859,-0.08594 0.61523,-0.21289 0.91992,-0.38086 l 0,0.996094 c -0.30079,0.140625 -0.61329,0.246094 -0.9375,0.316406 c -0.32032,0.07031 -0.66211,0.105469 -1.02539,0.105469 c -0.98828,0 -1.77344,-0.310547 -2.35547,-0.931641 c -0.58203,-0.621092 -0.87305,-1.458982 -0.87305,-2.513672 c 0,-1.070308 0.29297,-1.912104 0.87891,-2.52539 c 0.58984,-0.613275 1.39648,-0.9199154 2.41992,-0.9199221 c 0.33203,6.7e-6 0.65625,0.035163 0.97266,0.1054688 c 0.3164,0.066413 0.62304,0.1679752 0.91992,0.3046875"
|
||||
d="M 402.5513,9.7793732 L 402.5513,10.787186 C 402.24661,10.619222 401.93997,10.494223 401.63138,10.412186 C 401.32669,10.326256 401.01809,10.283285 400.7056,10.283279 C 400.00637,10.283285 399.46341,10.505941 399.07669,10.951248 C 398.68997,11.392659 398.49661,12.013752 398.49661,12.814529 C 398.49661,13.615313 398.68997,14.238359 399.07669,14.68367 C 399.46341,15.125077 400.00637,15.34578 400.7056,15.345779 C 401.01809,15.34578 401.32669,15.304769 401.63138,15.222733 C 401.93997,15.136793 402.24661,15.009843 402.5513,14.841873 L 402.5513,15.837967 C 402.25051,15.978592 401.93801,16.084061 401.6138,16.154373 C 401.29348,16.224683 400.95169,16.259842 400.58841,16.259842 C 399.60013,16.259842 398.81497,15.949295 398.23294,15.328201 C 397.65091,14.707109 397.35989,13.869219 397.35989,12.814529 C 397.35989,11.744221 397.65286,10.902425 398.2388,10.289139 C 398.82864,9.675864 399.63528,9.3692236 400.65872,9.3692169 C 400.99075,9.3692236 401.31497,9.4043799 401.63138,9.4746857 C 401.94778,9.5410987 402.25442,9.6426609 402.5513,9.7793732"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6424"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 404.43802,6.9727325 l 1.07812,0 l 0,9.1171875 l -1.07812,0 l 0,-9.1171875"
|
||||
d="M 404.43802,6.9727325 L 405.51614,6.9727325 L 405.51614,16.08992 L 404.43802,16.08992 L 404.43802,6.9727325"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6426"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 413.37943,12.539139 l 0,0.527344 l -4.95704,0 c 0.0469,0.742189 0.26953,1.308595 0.66797,1.699218 c 0.40234,0.38672 0.96094,0.580079 1.67578,0.580078 c 0.41406,10e-7 0.81445,-0.05078 1.20118,-0.152343 c 0.39061,-0.101562 0.77733,-0.253905 1.16015,-0.457032 l 0,1.019532 c -0.38672,0.164062 -0.78321,0.289062 -1.18945,0.375 c -0.40626,0.08594 -0.81837,0.128906 -1.23633,0.128906 c -1.04688,0 -1.87695,-0.304687 -2.49023,-0.914063 c -0.60938,-0.609373 -0.91407,-1.433591 -0.91407,-2.472656 c 0,-1.074214 0.28907,-1.925776 0.86719,-2.554687 c 0.58203,-0.6328064 1.36523,-0.9492124 2.34961,-0.9492191 c 0.88281,6.7e-6 1.58007,0.2851627 2.0918,0.8554691 c 0.51562,0.566411 0.77343,1.337895 0.77344,2.314453 m -1.07813,-0.316406 c -0.008,-0.58984 -0.17383,-1.060542 -0.49805,-1.41211 c -0.32031,-0.351557 -0.74609,-0.527338 -1.27734,-0.527344 c -0.60157,6e-6 -1.08399,0.169928 -1.44727,0.509766 c -0.35937,0.339849 -0.5664,0.818364 -0.62109,1.435547 l 3.84375,-0.0059"
|
||||
d="M 413.37943,12.539139 L 413.37943,13.066483 L 408.42239,13.066483 C 408.46929,13.808672 408.69192,14.375078 409.09036,14.765701 C 409.4927,15.152421 410.0513,15.34578 410.76614,15.345779 C 411.1802,15.34578 411.58059,15.294999 411.96732,15.193436 C 412.35793,15.091874 412.74465,14.939531 413.12747,14.736404 L 413.12747,15.755936 C 412.74075,15.919998 412.34426,16.044998 411.93802,16.130936 C 411.53176,16.216876 411.11965,16.259842 410.70169,16.259842 C 409.65481,16.259842 408.82474,15.955155 408.21146,15.345779 C 407.60208,14.736406 407.29739,13.912188 407.29739,12.873123 C 407.29739,11.798909 407.58646,10.947347 408.16458,10.318436 C 408.74661,9.6856296 409.52981,9.3692236 410.51419,9.3692169 C 411.397,9.3692236 412.09426,9.6543796 412.60599,10.224686 C 413.12161,10.791097 413.37942,11.562581 413.37943,12.539139 M 412.3013,12.222733 C 412.2933,11.632893 412.12747,11.162191 411.80325,10.810623 C 411.48294,10.459066 411.05716,10.283285 410.52591,10.283279 C 409.92434,10.283285 409.44192,10.453207 409.07864,10.793045 C 408.71927,11.132894 408.51224,11.611409 408.45755,12.228592 L 412.3013,12.222692"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6428"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 423.16458,11.988358 c 0.2539,0.08594 0.5,0.269535 0.73828,0.550781 c 0.24218,0.281253 0.48437,0.667971 0.72657,1.160156 l 1.20117,2.390625 l -1.27149,0 l -1.11914,-2.244141 c -0.28907,-0.585934 -0.57032,-0.974606 -0.84375,-1.166015 c -0.26953,-0.191403 -0.63867,-0.287106 -1.10742,-0.28711 l -1.28906,0 l 0,3.697266 l -1.1836,0 l 0,-8.7480468 l 2.67188,0 c 0.99999,8.7e-6 1.74609,0.2089929 2.23828,0.6269531 c 0.49218,0.4179764 0.73827,1.0488352 0.73828,1.8925781 c -10e-6,0.5507866 -0.12891,1.0078176 -0.38672,1.3710936 c -0.25391,0.363286 -0.625,0.615239 -1.11328,0.75586 m -2.96484,-3.6738286 l 0,3.1054686 l 1.48828,0 c 0.57031,5e-6 0.99999,-0.130854 1.28906,-0.392578 c 0.29296,-0.26562 0.43945,-0.654291 0.43945,-1.1660156 c 0,-0.511712 -0.14649,-0.8964772 -0.43945,-1.1542969 c -0.28907,-0.2617111 -0.71875,-0.3925703 -1.28906,-0.3925781 l -1.48828,0"
|
||||
d="M 423.16458,11.988358 C 423.41848,12.074298 423.66458,12.257893 423.90286,12.539139 C 424.14504,12.820392 424.38723,13.20711 424.62943,13.699295 L 425.8306,16.08992 L 424.55911,16.08992 L 423.43997,13.845779 C 423.1509,13.259845 422.86965,12.871173 422.59622,12.679764 C 422.32669,12.488361 421.95755,12.392658 421.4888,12.392654 L 420.19974,12.392654 L 420.19974,16.08992 L 419.01614,16.08992 L 419.01614,7.3418732 L 421.68802,7.3418732 C 422.68801,7.3418819 423.43411,7.5508661 423.9263,7.9688263 C 424.41848,8.3868027 424.66457,9.0176615 424.66458,9.8614044 C 424.66457,10.412191 424.53567,10.869222 424.27786,11.232498 C 424.02395,11.595784 423.65286,11.847737 423.16458,11.988358 M 420.19974,8.3145294 L 420.19974,11.419998 L 421.68802,11.419998 C 422.25833,11.420003 422.68801,11.289144 422.97708,11.02742 C 423.27004,10.7618 423.41653,10.373129 423.41653,9.8614044 C 423.41653,9.3496924 423.27004,8.9649272 422.97708,8.7071075 C 422.68801,8.4453964 422.25833,8.3145372 421.68802,8.3145294 L 420.19974,8.3145294"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6430"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 427.31302,9.52742 l 1.07812,0 l 0,6.5625 l -1.07812,0 l 0,-6.5625 m 0,-2.5546875 l 1.07812,0 l 0,1.3652344 l -1.07812,0 l 0,-1.3652344"
|
||||
d="M 427.31302,9.52742 L 428.39114,9.52742 L 428.39114,16.08992 L 427.31302,16.08992 L 427.31302,9.52742 M 427.31302,6.9727325 L 428.39114,6.9727325 L 428.39114,8.3379669 L 427.31302,8.3379669 L 427.31302,6.9727325"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6432"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 434.9595,11.12392 c 0,-0.662783 -0.16211,-1.1764411 -0.48632,-1.5409771 c -0.32032,-0.3645275 -0.77149,-0.5467938 -1.35352,-0.546798 c -0.57813,4.2e-6 -1.0293,0.1822705 -1.35352,0.546798 c -0.32031,0.364536 -0.48047,0.8781941 -0.48046,1.5409771 c -1e-5,0.659473 0.16015,1.171476 0.48046,1.536006 c 0.32422,0.364533 0.77539,0.546798 1.35352,0.546798 c 0.58203,0 1.0332,-0.182265 1.35352,-0.546798 c 0.32421,-0.36453 0.48632,-0.876533 0.48632,-1.536006 m 1.07813,2.157367 c -10e-6,0.947784 -0.24805,1.651992 -0.74414,2.11263 c -0.4961,0.463948 -1.25587,0.695922 -2.2793,0.695925 c -0.37891,-3e-6 -0.73633,-0.02486 -1.07226,-0.07456 c -0.33594,-0.0464 -0.66212,-0.119303 -0.97852,-0.218719 l 0,-0.889789 c 0.3164,0.145811 0.6289,0.253513 0.9375,0.323107 c 0.30859,0.06959 0.62304,0.104387 0.94336,0.104389 c 0.70703,-2e-6 1.23632,-0.157413 1.58789,-0.472235 c 0.35156,-0.31151 0.52734,-0.783744 0.52734,-1.416705 l 0,-0.452351 c -0.22266,0.32808 -0.50781,0.57331 -0.85547,0.735693 c -0.34766,0.162382 -0.76367,0.243573 -1.24804,0.243573 c -0.80469,0 -1.45313,-0.260143 -1.94531,-0.78043 c -0.49219,-0.520286 -0.73829,-1.209582 -0.73829,-2.067892 c 0,-0.861617 0.2461,-1.5525709 0.73829,-2.0728617 c 0.49218,-0.5202815 1.14062,-0.7804247 1.94531,-0.7804304 c 0.48437,5.7e-6 0.90038,0.081197 1.24804,0.2435738 c 0.34766,0.1623878 0.63281,0.4076183 0.85547,0.7356923 l 0,-0.845052 l 1.07813,0 l 0,4.876446"
|
||||
d="M 434.9595,11.12392 C 434.9595,10.461137 434.79739,9.9474789 434.47318,9.5829429 C 434.15286,9.2184154 433.70169,9.0361491 433.11966,9.0361449 C 432.54153,9.0361491 432.09036,9.2184154 431.76614,9.5829429 C 431.44583,9.9474789 431.28567,10.461137 431.28568,11.12392 C 431.28567,11.783393 431.44583,12.295396 431.76614,12.659926 C 432.09036,13.024459 432.54153,13.206724 433.11966,13.206724 C 433.70169,13.206724 434.15286,13.024459 434.47318,12.659926 C 434.79739,12.295396 434.9595,11.783393 434.9595,11.12392 M 436.03763,13.281287 C 436.03762,14.229071 435.78958,14.933279 435.29349,15.393917 C 434.79739,15.857865 434.03762,16.089839 433.01419,16.089842 C 432.63528,16.089839 432.27786,16.064982 431.94193,16.015282 C 431.60599,15.968882 431.27981,15.895979 430.96341,15.796563 L 430.96341,14.906774 C 431.27981,15.052585 431.59231,15.160287 431.90091,15.229881 C 432.2095,15.299471 432.52395,15.334268 432.84427,15.33427 C 433.5513,15.334268 434.08059,15.176857 434.43216,14.862035 C 434.78372,14.550525 434.9595,14.078291 434.9595,13.44533 L 434.9595,12.992979 C 434.73684,13.321059 434.45169,13.566289 434.10403,13.728672 C 433.75637,13.891054 433.34036,13.972245 432.85599,13.972245 C 432.0513,13.972245 431.40286,13.712102 430.91068,13.191815 C 430.41849,12.671529 430.17239,11.982233 430.17239,11.123923 C 430.17239,10.262306 430.41849,9.5713521 430.91068,9.0510613 C 431.40286,8.5307798 432.0513,8.2706366 432.85599,8.2706309 C 433.34036,8.2706366 433.75637,8.3518279 434.10403,8.5142047 C 434.45169,8.6765925 434.73684,8.921823 434.9595,9.249897 L 434.9595,8.404845 L 436.03763,8.404845 L 436.03763,13.281291"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6434"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 443.71341,12.128983 l 0,3.960937 l -1.07813,0 l 0,-3.925781 c 0,-0.621089 -0.12109,-1.085933 -0.36328,-1.394531 c -0.24219,-0.308589 -0.60547,-0.462885 -1.08984,-0.462891 c -0.58204,6e-6 -1.04102,0.185552 -1.37695,0.556641 c -0.33594,0.371098 -0.50391,0.876957 -0.50391,1.517578 l 0,3.708984 l -1.08398,0 l 0,-9.1171875 l 1.08398,0 l 0,3.5742185 c 0.25781,-0.394525 0.56054,-0.6894466 0.9082,-0.8847653 c 0.35156,-0.1953059 0.75586,-0.2929621 1.21289,-0.2929688 c 0.7539,6.7e-6 1.32422,0.2343815 1.71094,0.7031251 c 0.38671,0.464849 0.58007,1.150395 0.58008,2.056641"
|
||||
d="M 443.71341,12.128983 L 443.71341,16.08992 L 442.63528,16.08992 L 442.63528,12.164139 C 442.63528,11.54305 442.51419,11.078206 442.272,10.769608 C 442.02981,10.461019 441.66653,10.306723 441.18216,10.306717 C 440.60012,10.306723 440.14114,10.492269 439.80521,10.863358 C 439.46927,11.234456 439.3013,11.740315 439.3013,12.380936 L 439.3013,16.08992 L 438.21732,16.08992 L 438.21732,6.9727325 L 439.3013,6.9727325 L 439.3013,10.546951 C 439.55911,10.152426 439.86184,9.8575044 440.2095,9.6621857 C 440.56106,9.4668798 440.96536,9.3692236 441.42239,9.3692169 C 442.17629,9.3692236 442.74661,9.6035984 443.13333,10.072342 C 443.52004,10.537191 443.7134,11.222737 443.71341,12.128983"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6436"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 446.94193,7.6641388 l 0,1.8632812 l 2.2207,0 l 0,0.837891 l -2.2207,0 l 0,3.5625 c -1e-5,0.535158 0.0723,0.878907 0.21679,1.03125 c 0.14844,0.152344 0.44726,0.228516 0.89649,0.228515 l 1.10742,0 l 0,0.902344 l -1.10742,0 c -0.83204,0 -1.40626,-0.154297 -1.72266,-0.462891 c -0.31641,-0.312499 -0.47461,-0.878904 -0.47461,-1.699218 l 0,-3.5625 l -0.79101,0 l 0,-0.837891 l 0.79101,0 l 0,-1.8632812 l 1.08399,0"
|
||||
d="M 446.94193,7.6641388 L 446.94193,9.52742 L 449.16263,9.52742 L 449.16263,10.365311 L 446.94193,10.365311 L 446.94193,13.927811 C 446.94192,14.462969 447.01423,14.806718 447.15872,14.959061 C 447.30716,15.111405 447.60598,15.187577 448.05521,15.187576 L 449.16263,15.187576 L 449.16263,16.08992 L 448.05521,16.08992 C 447.22317,16.08992 446.64895,15.935623 446.33255,15.627029 C 446.01614,15.31453 445.85794,14.748125 445.85794,13.927811 L 445.85794,10.365311 L 445.06693,10.365311 L 445.06693,9.52742 L 445.85794,9.52742 L 445.85794,7.6641388 L 446.94193,7.6641388"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
id="path6438"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -3072,7 +3813,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3957"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 309.28568,10.810623 l -1.70508,0 l -0.49219,1.957031 l 1.7168,0 l 0.48047,-1.957031 m -0.87891,-3.3339842 l -0.60938,2.4316406 l 1.71094,0 l 0.61524,-2.4316406 l 0.9375,0 l -0.60352,2.4316406 l 1.82813,0 l 0,0.9023436 l -2.05665,0 l -0.48046,1.957031 l 1.86328,0 l 0,0.896485 l -2.0918,0 l -0.60937,2.425781 l -0.9375,0 l 0.60351,-2.425781 l -1.7168,0 l -0.60351,2.425781 l -0.94336,0 l 0.60937,-2.425781 l -1.8457,0 l 0,-0.896485 l 2.0625,0 l 0.49219,-1.957031 l -1.88672,0 l 0,-0.9023436 l 2.11523,0 l 0.59766,-2.4316406 l 0.94922,0" />
|
||||
d="M 309.28568,10.810623 L 307.5806,10.810623 L 307.08841,12.767654 L 308.80521,12.767654 L 309.28568,10.810623 M 308.40677,7.4766388 L 307.79739,9.9082794 L 309.50833,9.9082794 L 310.12357,7.4766388 L 311.06107,7.4766388 L 310.45755,9.9082794 L 312.28568,9.9082794 L 312.28568,10.810623 L 310.22903,10.810623 L 309.74857,12.767654 L 311.61185,12.767654 L 311.61185,13.664139 L 309.52005,13.664139 L 308.91068,16.08992 L 307.97318,16.08992 L 308.57669,13.664139 L 306.85989,13.664139 L 306.25638,16.08992 L 305.31302,16.08992 L 305.92239,13.664139 L 304.07669,13.664139 L 304.07669,12.767654 L 306.13919,12.767654 L 306.63138,10.810623 L 304.74466,10.810623 L 304.74466,9.9082794 L 306.85989,9.9082794 L 307.45755,7.4766388 L 308.40677,7.4766388" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
@ -3089,45 +3830,330 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3882"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 303.29349,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 303.29349,23.12117 C 302.68411,23.121178 302.22513,23.421959 301.91653,24.023514 C 301.61184,24.621177 301.4595,25.521566 301.4595,26.724686 C 301.4595,27.923908 301.61184,28.824297 301.91653,29.425858 C 302.22513,30.023515 302.68411,30.322343 303.29349,30.322342 C 303.90676,30.322343 304.36575,30.023515 304.67044,29.425858 C 304.97903,28.824297 305.13333,27.923908 305.13333,26.724686 C 305.13333,25.521566 304.97903,24.621177 304.67044,24.023514 C 304.36575,23.421959 303.90676,23.121178 303.29349,23.12117 M 303.29349,22.18367 C 304.27395,22.183679 305.022,22.57235 305.53763,23.349686 C 306.05715,24.12313 306.31692,25.248129 306.31693,26.724686 C 306.31692,28.197345 306.05715,29.322344 305.53763,30.099686 C 305.022,30.873123 304.27395,31.259842 303.29349,31.259842 C 302.31302,31.259842 301.56302,30.873123 301.04349,30.099686 C 300.52786,29.322344 300.27005,28.197345 300.27005,26.724686 C 300.27005,25.248129 300.52786,24.12313 301.04349,23.349686 C 301.56302,22.57235 302.31302,22.183679 303.29349,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3884"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 310.93411,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 310.93411,23.12117 C 310.32473,23.121178 309.86575,23.421959 309.55716,24.023514 C 309.25247,24.621177 309.10013,25.521566 309.10013,26.724686 C 309.10013,27.923908 309.25247,28.824297 309.55716,29.425858 C 309.86575,30.023515 310.32473,30.322343 310.93411,30.322342 C 311.54739,30.322343 312.00637,30.023515 312.31107,29.425858 C 312.61965,28.824297 312.77395,27.923908 312.77396,26.724686 C 312.77395,25.521566 312.61965,24.621177 312.31107,24.023514 C 312.00637,23.421959 311.54739,23.121178 310.93411,23.12117 M 310.93411,22.18367 C 311.91458,22.183679 312.66262,22.57235 313.17825,23.349686 C 313.69778,24.12313 313.95754,25.248129 313.95755,26.724686 C 313.95754,28.197345 313.69778,29.322344 313.17825,30.099686 C 312.66262,30.873123 311.91458,31.259842 310.93411,31.259842 C 309.95364,31.259842 309.20364,30.873123 308.68411,30.099686 C 308.16849,29.322344 307.91067,28.197345 307.91068,26.724686 C 307.91067,25.248129 308.16849,24.12313 308.68411,23.349686 C 309.20364,22.57235 309.95364,22.183679 310.93411,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3886"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 318.57474,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 318.57474,23.12117 C 317.96536,23.121178 317.50638,23.421959 317.19778,24.023514 C 316.89309,24.621177 316.74075,25.521566 316.74075,26.724686 C 316.74075,27.923908 316.89309,28.824297 317.19778,29.425858 C 317.50638,30.023515 317.96536,30.322343 318.57474,30.322342 C 319.18801,30.322343 319.647,30.023515 319.95169,29.425858 C 320.26028,28.824297 320.41458,27.923908 320.41458,26.724686 C 320.41458,25.521566 320.26028,24.621177 319.95169,24.023514 C 319.647,23.421959 319.18801,23.121178 318.57474,23.12117 M 318.57474,22.18367 C 319.5552,22.183679 320.30325,22.57235 320.81888,23.349686 C 321.3384,24.12313 321.59817,25.248129 321.59818,26.724686 C 321.59817,28.197345 321.3384,29.322344 320.81888,30.099686 C 320.30325,30.873123 319.5552,31.259842 318.57474,31.259842 C 317.59427,31.259842 316.84427,30.873123 316.32474,30.099686 C 315.80911,29.322344 315.5513,28.197345 315.5513,26.724686 C 315.5513,25.248129 315.80911,24.12313 316.32474,23.349686 C 316.84427,22.57235 317.59427,22.183679 318.57474,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3888"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 326.21536,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 326.21536,23.12117 C 325.60598,23.121178 325.147,23.421959 324.83841,24.023514 C 324.53372,24.621177 324.38138,25.521566 324.38138,26.724686 C 324.38138,27.923908 324.53372,28.824297 324.83841,29.425858 C 325.147,30.023515 325.60598,30.322343 326.21536,30.322342 C 326.82864,30.322343 327.28762,30.023515 327.59232,29.425858 C 327.9009,28.824297 328.0552,27.923908 328.05521,26.724686 C 328.0552,25.521566 327.9009,24.621177 327.59232,24.023514 C 327.28762,23.421959 326.82864,23.121178 326.21536,23.12117 M 326.21536,22.18367 C 327.19583,22.183679 327.94387,22.57235 328.4595,23.349686 C 328.97903,24.12313 329.23879,25.248129 329.2388,26.724686 C 329.23879,28.197345 328.97903,29.322344 328.4595,30.099686 C 327.94387,30.873123 327.19583,31.259842 326.21536,31.259842 C 325.23489,31.259842 324.48489,30.873123 323.96536,30.099686 C 323.44974,29.322344 323.19192,28.197345 323.19193,26.724686 C 323.19192,25.248129 323.44974,24.12313 323.96536,23.349686 C 324.48489,22.57235 325.23489,22.183679 326.21536,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3890"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 333.85599,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 333.85599,23.12117 C 333.24661,23.121178 332.78763,23.421959 332.47903,24.023514 C 332.17434,24.621177 332.022,25.521566 332.022,26.724686 C 332.022,27.923908 332.17434,28.824297 332.47903,29.425858 C 332.78763,30.023515 333.24661,30.322343 333.85599,30.322342 C 334.46926,30.322343 334.92825,30.023515 335.23294,29.425858 C 335.54153,28.824297 335.69583,27.923908 335.69583,26.724686 C 335.69583,25.521566 335.54153,24.621177 335.23294,24.023514 C 334.92825,23.421959 334.46926,23.121178 333.85599,23.12117 M 333.85599,22.18367 C 334.83645,22.183679 335.5845,22.57235 336.10013,23.349686 C 336.61965,24.12313 336.87942,25.248129 336.87943,26.724686 C 336.87942,28.197345 336.61965,29.322344 336.10013,30.099686 C 335.5845,30.873123 334.83645,31.259842 333.85599,31.259842 C 332.87552,31.259842 332.12552,30.873123 331.60599,30.099686 C 331.09036,29.322344 330.83255,28.197345 330.83255,26.724686 C 330.83255,25.248129 331.09036,24.12313 331.60599,23.349686 C 332.12552,22.57235 332.87552,22.183679 333.85599,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3892"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 341.49661,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 341.49661,23.12117 C 340.88723,23.121178 340.42825,23.421959 340.11966,24.023514 C 339.81497,24.621177 339.66263,25.521566 339.66263,26.724686 C 339.66263,27.923908 339.81497,28.824297 340.11966,29.425858 C 340.42825,30.023515 340.88723,30.322343 341.49661,30.322342 C 342.10989,30.322343 342.56887,30.023515 342.87357,29.425858 C 343.18215,28.824297 343.33645,27.923908 343.33646,26.724686 C 343.33645,25.521566 343.18215,24.621177 342.87357,24.023514 C 342.56887,23.421959 342.10989,23.121178 341.49661,23.12117 M 341.49661,22.18367 C 342.47708,22.183679 343.22512,22.57235 343.74075,23.349686 C 344.26028,24.12313 344.52004,25.248129 344.52005,26.724686 C 344.52004,28.197345 344.26028,29.322344 343.74075,30.099686 C 343.22512,30.873123 342.47708,31.259842 341.49661,31.259842 C 340.51614,31.259842 339.76614,30.873123 339.24661,30.099686 C 338.73099,29.322344 338.47317,28.197345 338.47318,26.724686 C 338.47317,25.248129 338.73099,24.12313 339.24661,23.349686 C 339.76614,22.57235 340.51614,22.183679 341.49661,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3894"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 349.13724,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37696,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.3086,0.597657 0.76758,0.896485 1.37696,0.896484 c 0.61327,1e-6 1.07226,-0.298827 1.37695,-0.896484 c 0.30859,-0.601561 0.46289,-1.50195 0.46289,-2.701172 c 0,-1.20312 -0.1543,-2.103509 -0.46289,-2.701172 c -0.30469,-0.601555 -0.76368,-0.902336 -1.37695,-0.902344 m 0,-0.9375 c 0.98046,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51952,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25978,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26368,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51563,-0.777342 -0.77344,-1.902341 -0.77344,-3.375 c 0,-1.476557 0.25781,-2.601556 0.77344,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 349.13724,23.12117 C 348.52786,23.121178 348.06888,23.421959 347.76028,24.023514 C 347.45559,24.621177 347.30325,25.521566 347.30325,26.724686 C 347.30325,27.923908 347.45559,28.824297 347.76028,29.425858 C 348.06888,30.023515 348.52786,30.322343 349.13724,30.322342 C 349.75051,30.322343 350.2095,30.023515 350.51419,29.425858 C 350.82278,28.824297 350.97708,27.923908 350.97708,26.724686 C 350.97708,25.521566 350.82278,24.621177 350.51419,24.023514 C 350.2095,23.421959 349.75051,23.121178 349.13724,23.12117 M 349.13724,22.18367 C 350.1177,22.183679 350.86575,22.57235 351.38138,23.349686 C 351.9009,24.12313 352.16067,25.248129 352.16068,26.724686 C 352.16067,28.197345 351.9009,29.322344 351.38138,30.099686 C 350.86575,30.873123 350.1177,31.259842 349.13724,31.259842 C 348.15677,31.259842 347.40677,30.873123 346.88724,30.099686 C 346.37161,29.322344 346.1138,28.197345 346.1138,26.724686 C 346.1138,25.248129 346.37161,24.12313 346.88724,23.349686 C 347.40677,22.57235 348.15677,22.183679 349.13724,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3896"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="m 356.77786,23.12117 c -0.60938,8e-6 -1.06836,0.300789 -1.37695,0.902344 c -0.30469,0.597663 -0.45703,1.498052 -0.45703,2.701172 c 0,1.199222 0.15234,2.099611 0.45703,2.701172 c 0.30859,0.597657 0.76757,0.896485 1.37695,0.896484 c 0.61328,1e-6 1.07226,-0.298827 1.37696,-0.896484 c 0.30858,-0.601561 0.46288,-1.50195 0.46289,-2.701172 c -10e-6,-1.20312 -0.15431,-2.103509 -0.46289,-2.701172 c -0.3047,-0.601555 -0.76368,-0.902336 -1.37696,-0.902344 m 0,-0.9375 c 0.98047,9e-6 1.72851,0.38868 2.24414,1.166016 c 0.51953,0.773444 0.77929,1.898443 0.7793,3.375 c -1e-5,1.472659 -0.25977,2.597658 -0.7793,3.375 c -0.51563,0.773437 -1.26367,1.160156 -2.24414,1.160156 c -0.98047,0 -1.73047,-0.386719 -2.25,-1.160156 c -0.51562,-0.777342 -0.77344,-1.902341 -0.77343,-3.375 c -1e-5,-1.476557 0.25781,-2.601556 0.77343,-3.375 c 0.51953,-0.777336 1.26953,-1.166007 2.25,-1.166016" />
|
||||
d="M 356.77786,23.12117 C 356.16848,23.121178 355.7095,23.421959 355.40091,24.023514 C 355.09622,24.621177 354.94388,25.521566 354.94388,26.724686 C 354.94388,27.923908 355.09622,28.824297 355.40091,29.425858 C 355.7095,30.023515 356.16848,30.322343 356.77786,30.322342 C 357.39114,30.322343 357.85012,30.023515 358.15482,29.425858 C 358.4634,28.824297 358.6177,27.923908 358.61771,26.724686 C 358.6177,25.521566 358.4634,24.621177 358.15482,24.023514 C 357.85012,23.421959 357.39114,23.121178 356.77786,23.12117 M 356.77786,22.18367 C 357.75833,22.183679 358.50637,22.57235 359.022,23.349686 C 359.54153,24.12313 359.80129,25.248129 359.8013,26.724686 C 359.80129,28.197345 359.54153,29.322344 359.022,30.099686 C 358.50637,30.873123 357.75833,31.259842 356.77786,31.259842 C 355.79739,31.259842 355.04739,30.873123 354.52786,30.099686 C 354.01224,29.322344 353.75442,28.197345 353.75443,26.724686 C 353.75442,25.248129 354.01224,24.12313 354.52786,23.349686 C 355.04739,22.57235 355.79739,22.183679 356.77786,22.18367" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer98"
|
||||
inkscape:label="info-battery"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="topbattery-milliamp-text"
|
||||
transform="translate(471.54603,-363.5652)">
|
||||
<rect
|
||||
y="375"
|
||||
x="12"
|
||||
height="40"
|
||||
width="100"
|
||||
id="top-warning-low-energy"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
|
||||
<g
|
||||
id="g8649-8"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6494-6"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6496-5"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6498-5"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6500-6"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6502-4"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="topbattery-amp-text"
|
||||
transform="matrix(0.7,0,0,0.725,345.2216,-211.375)">
|
||||
<rect
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
|
||||
id="top-warning-high-current"
|
||||
width="100"
|
||||
height="40"
|
||||
x="12"
|
||||
y="335" />
|
||||
<g
|
||||
id="g8642-4"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,1.8860984,3.7600279)">
|
||||
<path
|
||||
d="M 37.344081,349.57585 C 36.269846,349.57586 35.460715,350.1061 34.916711,351.16656 C 34.379604,352.22015 34.111029,353.80741 34.111029,355.92833 C 34.111029,358.0424 34.379604,359.62965 34.916711,360.69012 C 35.460715,361.7437 36.269846,362.27049 37.344081,362.27049 C 38.425214,362.27049 39.234344,361.7437 39.771473,360.69012 C 40.315455,359.62965 40.587457,358.0424 40.587478,355.92833 C 40.587457,353.80741 40.315455,352.22015 39.771473,351.16656 C 39.234344,350.1061 38.425214,349.57586 37.344081,349.57585 M 37.344081,347.92317 C 39.072514,347.92319 40.391209,348.60836 41.300188,349.97869 C 42.216042,351.34217 42.673968,353.32538 42.67399,355.92833 C 42.673968,358.52442 42.216042,360.50764 41.300188,361.87798 C 40.391209,363.24145 39.072514,363.92317 37.344081,363.92317 C 35.61567,363.92317 34.293526,363.24145 33.377652,361.87798 C 32.468694,360.50764 32.014194,358.52442 32.014194,355.92833 C 32.014194,353.32538 32.468694,351.34217 33.377652,349.97869 C 34.293526,348.60836 35.61567,347.92319 37.344081,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4599-6"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 50.813421,349.57585 C 49.739184,349.57586 48.930054,350.1061 48.38605,351.16656 C 47.848922,352.22015 47.580368,353.80741 47.580368,355.92833 C 47.580368,358.0424 47.848922,359.62965 48.38605,360.69012 C 48.930054,361.7437 49.739184,362.27049 50.813421,362.27049 C 51.894553,362.27049 52.703662,361.7437 53.240791,360.69012 C 53.784795,359.62965 54.056797,358.0424 54.056818,355.92833 C 54.056797,353.80741 53.784795,352.22015 53.240791,351.16656 C 52.703662,350.1061 51.894553,349.57586 50.813421,349.57585 M 50.813421,347.92317 C 52.541854,347.92319 53.860549,348.60836 54.769527,349.97869 C 55.685381,351.34217 56.143308,353.32538 56.143308,355.92833 C 56.143308,358.52442 55.685381,360.50764 54.769527,361.87798 C 53.860549,363.24145 52.541854,363.92317 50.813421,363.92317 C 49.084988,363.92317 47.762845,363.24145 46.846991,361.87798 C 45.938013,360.50764 45.483534,358.52442 45.483534,355.92833 C 45.483534,353.32538 45.938013,351.34217 46.846991,349.97869 C 47.762845,348.60836 49.084988,347.92319 50.813421,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4602-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 59.820516,361 L 62,361 L 62,363.62362 L 59.820516,363.62362 L 59.820516,361"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4604-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 71.017419,349.57585 C 69.943183,349.57586 69.134053,350.1061 68.590049,351.16656 C 68.05292,352.22015 67.784366,353.80741 67.784366,355.92833 C 67.784366,358.0424 68.05292,359.62965 68.590049,360.69012 C 69.134053,361.7437 69.943183,362.27049 71.017419,362.27049 C 72.098551,362.27049 72.907661,361.7437 73.44479,360.69012 C 73.988793,359.62965 74.260795,358.0424 74.260816,355.92833 C 74.260795,353.80741 73.988793,352.22015 73.44479,351.16656 C 72.907661,350.1061 72.098551,349.57586 71.017419,349.57585 M 71.017419,347.92317 C 72.745852,347.92319 74.064547,348.60836 74.973526,349.97869 C 75.88938,351.34217 76.347306,353.32538 76.347306,355.92833 C 76.347306,358.52442 75.88938,360.50764 74.973526,361.87798 C 74.064547,363.24145 72.745852,363.92317 71.017419,363.92317 C 69.288987,363.92317 67.966844,363.24145 67.05099,361.87798 C 66.142032,360.50764 65.687532,358.52442 65.687532,355.92833 C 65.687532,353.32538 66.142032,351.34217 67.05099,349.97869 C 67.966844,348.60836 69.288987,347.92319 71.017419,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4606-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 84.486758,349.57585 C 83.412523,349.57586 82.603392,350.1061 82.059388,351.16656 C 81.52226,352.22015 81.253706,353.80741 81.253706,355.92833 C 81.253706,358.0424 81.52226,359.62965 82.059388,360.69012 C 82.603392,361.7437 83.412523,362.27049 84.486758,362.27049 C 85.567891,362.27049 86.377,361.7437 86.914129,360.69012 C 87.458133,359.62965 87.730134,358.0424 87.730134,355.92833 C 87.730134,353.80741 87.458133,352.22015 86.914129,351.16656 C 86.377,350.1061 85.567891,349.57586 84.486758,349.57585 M 84.486758,347.92317 C 86.21517,347.92319 87.533886,348.60836 88.442865,349.97869 C 89.358718,351.34217 89.816646,353.32538 89.816646,355.92833 C 89.816646,358.52442 89.358718,360.50764 88.442865,361.87798 C 87.533886,363.24145 86.21517,363.92317 84.486758,363.92317 C 82.758326,363.92317 81.436182,363.24145 80.520329,361.87798 C 79.61135,360.50764 79.156871,358.52442 79.156871,355.92833 C 79.156871,353.32538 79.61135,351.34217 80.520329,349.97869 C 81.436182,348.60836 82.758326,347.92319 84.486758,347.92317"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path4608-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="topbattery-volt-text"
|
||||
transform="matrix(0.7,0,0,0.725,345.2216,-211.375)">
|
||||
<rect
|
||||
y="295"
|
||||
x="12"
|
||||
height="40"
|
||||
width="100"
|
||||
id="top-warning-low-voltage"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
|
||||
<g
|
||||
id="g8656-4"
|
||||
transform="matrix(0.98684211,0,0,0.98684211,4.3808609,3.1578932)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6483-0"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 34.816055,309.65268 C 33.74182,309.65269 32.932689,310.18292 32.388685,311.24338 C 31.851578,312.29697 31.583003,313.88423 31.583003,316.00516 C 31.583003,318.11922 31.851578,319.70648 32.388685,320.76694 C 32.932689,321.82052 33.74182,322.34732 34.816055,322.34732 C 35.897188,322.34732 36.706318,321.82052 37.243447,320.76694 C 37.787429,319.70648 38.059431,318.11922 38.059452,316.00516 C 38.059431,313.88423 37.787429,312.29697 37.243447,311.24338 C 36.706318,310.18292 35.897188,309.65269 34.816055,309.65268 M 34.816055,308 C 36.544488,308.00001 37.863183,308.68518 38.772162,310.05552 C 39.688016,311.41899 40.145942,313.4022 40.145964,316.00516 C 40.145942,318.60125 39.688016,320.58446 38.772162,321.95481 C 37.863183,323.31827 36.544488,323.99999 34.816055,324 C 33.087644,323.99999 31.7655,323.31827 30.849626,321.95481 C 29.940668,320.58446 29.486168,318.60125 29.486168,316.00516 C 29.486168,313.4022 29.940668,311.41899 30.849626,310.05552 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6485-3"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 48.285395,309.65268 C 47.211158,309.65269 46.402028,310.18292 45.858024,311.24338 C 45.320896,312.29697 45.052342,313.88423 45.052342,316.00516 C 45.052342,318.11922 45.320896,319.70648 45.858024,320.76694 C 46.402028,321.82052 47.211158,322.34732 48.285395,322.34732 C 49.366527,322.34732 50.175636,321.82052 50.712765,320.76694 C 51.256769,319.70648 51.528771,318.11922 51.528792,316.00516 C 51.528771,313.88423 51.256769,312.29697 50.712765,311.24338 C 50.175636,310.18292 49.366527,309.65269 48.285395,309.65268 M 48.285395,308 C 50.013828,308.00001 51.332523,308.68518 52.241501,310.05552 C 53.157355,311.41899 53.615282,313.4022 53.615282,316.00516 C 53.615282,318.60125 53.157355,320.58446 52.241501,321.95481 C 51.332523,323.31827 50.013828,323.99999 48.285395,324 C 46.556962,323.99999 45.234819,323.31827 44.318965,321.95481 C 43.409987,320.58446 42.955508,318.60125 42.955508,316.00516 C 42.955508,313.4022 43.409987,311.41899 44.318965,310.05552 C 45.234819,308.68518 46.556962,308.00001 48.285395,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6487-9"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 57.29249,321.07682 L 59.471974,321.07682 L 59.471974,323.70044 L 57.29249,323.70044 L 57.29249,321.07682" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6489-6"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 68.489393,309.65268 C 67.415157,309.65269 66.606027,310.18292 66.062023,311.24338 C 65.524894,312.29697 65.25634,313.88423 65.25634,316.00516 C 65.25634,318.11922 65.524894,319.70648 66.062023,320.76694 C 66.606027,321.82052 67.415157,322.34732 68.489393,322.34732 C 69.570525,322.34732 70.379635,321.82052 70.916764,320.76694 C 71.460767,319.70648 71.732769,318.11922 71.73279,316.00516 C 71.732769,313.88423 71.460767,312.29697 70.916764,311.24338 C 70.379635,310.18292 69.570525,309.65269 68.489393,309.65268 M 68.489393,308 C 70.217826,308.00001 71.536521,308.68518 72.4455,310.05552 C 73.361354,311.41899 73.81928,313.4022 73.81928,316.00516 C 73.81928,318.60125 73.361354,320.58446 72.4455,321.95481 C 71.536521,323.31827 70.217826,323.99999 68.489393,324 C 66.760961,323.99999 65.438818,323.31827 64.522964,321.95481 C 63.614006,320.58446 63.159506,318.60125 63.159506,316.00516 C 63.159506,313.4022 63.614006,311.41899 64.522964,310.05552 C 65.438818,308.68518 66.760961,308.00001 68.489393,308" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6491-5"
|
||||
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 81.958732,309.65268 C 80.884497,309.65269 80.075366,310.18292 79.531362,311.24338 C 78.994234,312.29697 78.72568,313.88423 78.72568,316.00516 C 78.72568,318.11922 78.994234,319.70648 79.531362,320.76694 C 80.075366,321.82052 80.884497,322.34732 81.958732,322.34732 C 83.039865,322.34732 83.848974,321.82052 84.386103,320.76694 C 84.930107,319.70648 85.202108,318.11922 85.202108,316.00516 C 85.202108,313.88423 84.930107,312.29697 84.386103,311.24338 C 83.848974,310.18292 83.039865,309.65269 81.958732,309.65268 M 81.958732,308 C 83.687144,308.00001 85.00586,308.68518 85.914839,310.05552 C 86.830692,311.41899 87.28862,313.4022 87.28862,316.00516 C 87.28862,318.60125 86.830692,320.58446 85.914839,321.95481 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 C 80.2303,323.99999 78.908156,323.31827 77.992303,321.95481 C 77.083324,320.58446 76.628845,318.60125 76.628845,316.00516 C 76.628845,313.4022 77.083324,311.41899 77.992303,310.05552 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(2.7544652,0,0,2.7544652,-587.831,-43.112217)"
|
||||
id="topbattery-total-distance-text"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ff00ff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3882-8"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="M 303.29349,23.12117 C 302.68411,23.121178 302.22513,23.421959 301.91653,24.023514 C 301.61184,24.621177 301.4595,25.521566 301.4595,26.724686 C 301.4595,27.923908 301.61184,28.824297 301.91653,29.425858 C 302.22513,30.023515 302.68411,30.322343 303.29349,30.322342 C 303.90676,30.322343 304.36575,30.023515 304.67044,29.425858 C 304.97903,28.824297 305.13333,27.923908 305.13333,26.724686 C 305.13333,25.521566 304.97903,24.621177 304.67044,24.023514 C 304.36575,23.421959 303.90676,23.121178 303.29349,23.12117 M 303.29349,22.18367 C 304.27395,22.183679 305.022,22.57235 305.53763,23.349686 C 306.05715,24.12313 306.31692,25.248129 306.31693,26.724686 C 306.31692,28.197345 306.05715,29.322344 305.53763,30.099686 C 305.022,30.873123 304.27395,31.259842 303.29349,31.259842 C 302.31302,31.259842 301.56302,30.873123 301.04349,30.099686 C 300.52786,29.322344 300.27005,28.197345 300.27005,26.724686 C 300.27005,25.248129 300.52786,24.12313 301.04349,23.349686 C 301.56302,22.57235 302.31302,22.183679 303.29349,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3884-5"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="M 310.93411,23.12117 C 310.32473,23.121178 309.86575,23.421959 309.55716,24.023514 C 309.25247,24.621177 309.10013,25.521566 309.10013,26.724686 C 309.10013,27.923908 309.25247,28.824297 309.55716,29.425858 C 309.86575,30.023515 310.32473,30.322343 310.93411,30.322342 C 311.54739,30.322343 312.00637,30.023515 312.31107,29.425858 C 312.61965,28.824297 312.77395,27.923908 312.77396,26.724686 C 312.77395,25.521566 312.61965,24.621177 312.31107,24.023514 C 312.00637,23.421959 311.54739,23.121178 310.93411,23.12117 M 310.93411,22.18367 C 311.91458,22.183679 312.66262,22.57235 313.17825,23.349686 C 313.69778,24.12313 313.95754,25.248129 313.95755,26.724686 C 313.95754,28.197345 313.69778,29.322344 313.17825,30.099686 C 312.66262,30.873123 311.91458,31.259842 310.93411,31.259842 C 309.95364,31.259842 309.20364,30.873123 308.68411,30.099686 C 308.16849,29.322344 307.91067,28.197345 307.91068,26.724686 C 307.91067,25.248129 308.16849,24.12313 308.68411,23.349686 C 309.20364,22.57235 309.95364,22.183679 310.93411,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3886-0"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="M 318.57474,23.12117 C 317.96536,23.121178 317.50638,23.421959 317.19778,24.023514 C 316.89309,24.621177 316.74075,25.521566 316.74075,26.724686 C 316.74075,27.923908 316.89309,28.824297 317.19778,29.425858 C 317.50638,30.023515 317.96536,30.322343 318.57474,30.322342 C 319.18801,30.322343 319.647,30.023515 319.95169,29.425858 C 320.26028,28.824297 320.41458,27.923908 320.41458,26.724686 C 320.41458,25.521566 320.26028,24.621177 319.95169,24.023514 C 319.647,23.421959 319.18801,23.121178 318.57474,23.12117 M 318.57474,22.18367 C 319.5552,22.183679 320.30325,22.57235 320.81888,23.349686 C 321.3384,24.12313 321.59817,25.248129 321.59818,26.724686 C 321.59817,28.197345 321.3384,29.322344 320.81888,30.099686 C 320.30325,30.873123 319.5552,31.259842 318.57474,31.259842 C 317.59427,31.259842 316.84427,30.873123 316.32474,30.099686 C 315.80911,29.322344 315.5513,28.197345 315.5513,26.724686 C 315.5513,25.248129 315.80911,24.12313 316.32474,23.349686 C 316.84427,22.57235 317.59427,22.183679 318.57474,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3888-5"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="M 326.21536,23.12117 C 325.60598,23.121178 325.147,23.421959 324.83841,24.023514 C 324.53372,24.621177 324.38138,25.521566 324.38138,26.724686 C 324.38138,27.923908 324.53372,28.824297 324.83841,29.425858 C 325.147,30.023515 325.60598,30.322343 326.21536,30.322342 C 326.82864,30.322343 327.28762,30.023515 327.59232,29.425858 C 327.9009,28.824297 328.0552,27.923908 328.05521,26.724686 C 328.0552,25.521566 327.9009,24.621177 327.59232,24.023514 C 327.28762,23.421959 326.82864,23.121178 326.21536,23.12117 M 326.21536,22.18367 C 327.19583,22.183679 327.94387,22.57235 328.4595,23.349686 C 328.97903,24.12313 329.23879,25.248129 329.2388,26.724686 C 329.23879,28.197345 328.97903,29.322344 328.4595,30.099686 C 327.94387,30.873123 327.19583,31.259842 326.21536,31.259842 C 325.23489,31.259842 324.48489,30.873123 323.96536,30.099686 C 323.44974,29.322344 323.19192,28.197345 323.19193,26.724686 C 323.19192,25.248129 323.44974,24.12313 323.96536,23.349686 C 324.48489,22.57235 325.23489,22.183679 326.21536,22.18367" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3890-9"
|
||||
style="font-size:12px;fill:#ff00ff"
|
||||
d="M 333.85599,23.12117 C 333.24661,23.121178 332.78763,23.421959 332.47903,24.023514 C 332.17434,24.621177 332.022,25.521566 332.022,26.724686 C 332.022,27.923908 332.17434,28.824297 332.47903,29.425858 C 332.78763,30.023515 333.24661,30.322343 333.85599,30.322342 C 334.46926,30.322343 334.92825,30.023515 335.23294,29.425858 C 335.54153,28.824297 335.69583,27.923908 335.69583,26.724686 C 335.69583,25.521566 335.54153,24.621177 335.23294,24.023514 C 334.92825,23.421959 334.46926,23.121178 333.85599,23.12117 M 333.85599,22.18367 C 334.83645,22.183679 335.5845,22.57235 336.10013,23.349686 C 336.61965,24.12313 336.87942,25.248129 336.87943,26.724686 C 336.87942,28.197345 336.61965,29.322344 336.10013,30.099686 C 335.5845,30.873123 334.83645,31.259842 333.85599,31.259842 C 332.87552,31.259842 332.12552,30.873123 331.60599,30.099686 C 331.09036,29.322344 330.83255,28.197345 330.83255,26.724686 C 330.83255,25.248129 331.09036,24.12313 331.60599,23.349686 C 332.12552,22.57235 332.87552,22.183679 333.85599,22.18367" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(2.578764,0.38210888)"
|
||||
id="topbattery-total-distance-label"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g12760"
|
||||
transform="translate(-1.07066,4.962966)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3913-8"
|
||||
d="M 189.05254,9.7946662 L 189.05254,11.658211 C 188.20743,11.311371 187.41005,11.052807 186.66051,10.882522 C 185.91088,10.712261 185.18703,10.627125 184.4889,10.627114 C 183.27632,10.627125 182.33935,10.828952 181.67793,11.232526 C 181.02388,11.636149 180.69685,12.210033 180.69688,12.954178 C 180.69685,13.578522 180.9136,14.051502 181.34723,14.373118 C 181.78818,14.688448 182.61859,14.943856 183.83849,15.139348 L 185.18337,15.375815 C 186.84418,15.647 188.0678,16.126283 188.85411,16.813676 C 189.64779,17.494776 190.04464,18.409203 190.04464,19.556965 C 190.04464,20.925457 189.50816,21.962862 188.43524,22.669176 C 187.36964,23.375497 185.80435,23.728653 183.7393,23.728653 C 182.96033,23.728653 182.1299,23.652979 181.24804,23.501631 C 180.37352,23.350283 179.46593,23.126398 178.52528,22.829997 L 178.52528,20.862397 C 179.42918,21.297542 180.31472,21.625476 181.1819,21.846197 C 182.04906,22.066924 182.90154,22.177285 183.7393,22.177282 C 185.01067,22.177285 185.99172,21.962876 186.68255,21.53403 C 187.3733,21.105196 187.71871,20.493477 187.71873,19.698865 C 187.71871,19.005167 187.46871,18.462817 186.96916,18.071813 C 186.47675,17.680821 185.66472,17.387573 184.53298,17.192067 L 183.17711,16.965045 C 181.51626,16.681264 180.31472,16.236661 179.57247,15.631239 C 178.83024,15.025832 178.45913,14.183928 178.45913,13.105523 C 178.45913,11.856864 178.96986,10.873069 179.99138,10.154122 C 181.02023,9.4352089 182.43486,9.0757428 184.23533,9.0757281 C 185.00698,9.0757428 185.79331,9.1356618 186.59437,9.2554575 C 187.39534,9.3753015 188.21475,9.555025 189.05254,9.7946574"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3915-2"
|
||||
d="M 193.13286,9.3324004 L 195.32785,9.3324004 L 195.32785,17.74844 C 195.32785,19.233083 195.64144,20.303256 196.26857,20.95897 C 196.89571,21.608498 197.91211,21.933263 199.31781,21.933263 C 200.71626,21.933263 201.72906,21.608498 202.35619,20.95897 C 202.98333,20.303256 203.29692,19.233083 203.29692,17.74844 L 203.29692,9.3324004 L 205.49194,9.3324004 L 205.49194,17.980415 C 205.49191,19.786727 204.96929,21.150736 203.92408,22.072447 C 202.88603,22.994158 201.35059,23.455015 199.31781,23.455015 C 197.27776,23.455015 195.73513,22.994158 194.6899,22.072447 C 193.65185,21.150736 193.13286,19.786727 193.13286,17.980415 L 193.13286,9.3324004"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3917-4"
|
||||
d="M 209.34757,9.3324004 L 212.66546,9.3324004 L 216.86518,18.942968 L 221.08691,9.3324004 L 224.40481,9.3324004 L 224.40481,23.455015 L 222.23331,23.455015 L 222.23331,11.053979 L 217.98949,20.740219 L 215.75186,20.740219 L 211.50805,11.053979 L 211.50805,23.455015 L 209.34757,23.455015 L 209.34757,9.3324004"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans" />
|
||||
<path
|
||||
d="M 179.46962,31.407344 L 179.46962,42.389559 L 182.15923,42.389559 C 184.42993,42.389559 186.09072,41.948128 187.14157,41.065261 C 188.19978,40.1824 188.72887,38.788735 188.72887,36.884263 C 188.72887,34.992418 188.19978,33.608213 187.14157,32.731642 C 186.09072,31.84879 184.42993,31.407357 182.15923,31.407344 L 179.46962,31.407344 M 177.243,29.837108 L 181.8175,29.837108 C 185.0068,29.837122 187.34734,30.407828 188.83912,31.549234 C 190.33089,32.684358 191.07675,34.4627 191.07675,36.884263 C 191.07675,39.318453 190.32718,41.106255 188.82809,42.24767 C 187.32897,43.389088 184.99211,43.959797 181.8175,43.959797 L 177.243,43.959797 L 177.243,29.837108"
|
||||
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path3900-2"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6379-2"
|
||||
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
d="M 213.32104,29.837108 L 227.243,29.837108 L 227.243,31.445181 L 221.40084,31.445181 L 221.40084,43.959797 L 219.1632,43.959797 L 219.1632,31.445181 L 213.32104,31.445181 L 213.32104,29.837108" />
|
||||
<path
|
||||
d="M 194.61513,29.837108 L 196.84174,29.837108 L 196.84174,43.959797 L 194.61513,43.959797 L 194.61513,29.837108"
|
||||
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path3902-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 211.13849,30.30061 L 211.13849,32.164086 C 210.29341,31.817259 209.49605,31.558705 208.74651,31.388427 C 207.99696,31.218167 207.2731,31.133039 206.575,31.133027 C 205.36247,31.133039 204.42553,31.33484 203.76416,31.73842 C 203.11014,32.142028 202.78311,32.71589 202.78311,33.460008 C 202.78311,34.084329 202.99983,34.557291 203.43347,34.878898 C 203.87438,35.194215 204.70478,35.449617 205.92465,35.645098 L 207.26947,35.881589 C 208.93021,36.152762 210.15378,36.632029 210.94009,37.319397 C 211.73371,38.000471 212.13056,38.914865 212.13056,40.062585 C 212.13056,41.431028 211.59408,42.468394 210.52122,43.174685 C 209.45565,43.880977 207.89039,44.234122 205.82546,44.234122 C 205.04648,44.234122 204.21609,44.158448 203.33426,44.0071 C 202.45978,43.855752 201.55222,43.631885 200.6116,43.335494 L 200.6116,41.367966 C 201.51547,41.803093 202.40098,42.131013 203.26814,42.351729 C 204.13526,42.572456 204.9877,42.682805 205.82546,42.682802 C 207.09674,42.682805 208.07779,42.468397 208.76857,42.039572 C 209.45932,41.610755 209.80472,40.999056 209.80472,40.204475 C 209.80472,39.510799 209.55499,38.968467 209.05517,38.57748 C 208.56282,38.186502 207.75079,37.893265 206.61911,37.697769 L 205.26328,37.470745 C 203.60247,37.186974 202.40098,36.742388 201.65877,36.136988 C 200.91656,35.531603 200.54545,34.689729 200.54545,33.611363 C 200.54545,32.36275 201.05618,31.378988 202.07764,30.660072 C 203.10645,29.941179 204.52108,29.581728 206.32148,29.581713 C 207.09306,29.581728 207.87939,29.641647 208.68039,29.761442 C 209.48138,29.881286 210.30074,30.060998 211.13849,30.30062"
|
||||
style="font-size:8px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
||||
id="path3904-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10160-1"
|
||||
d="M 351.17234,60.617891 L 351.17234,2.6178911"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="topbattery-labels">
|
||||
<g
|
||||
transform="matrix(2.6093993,0,0,2.7073858,-1027.0265,-102.88932)"
|
||||
id="top-battery-milliamp-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4641-4"
|
||||
d="M 620.206,52 L 620.206,47.775181 L 620.84648,47.775181 L 620.84648,48.367929 C 620.97909,48.161068 621.15545,47.995311 621.37558,47.870658 C 621.5957,47.74336 621.84633,47.67971 622.12746,47.679705 C 622.4404,47.67971 622.69633,47.744685 622.89524,47.874636 C 623.0968,48.004593 623.23869,48.186263 623.32091,48.419645 C 623.65507,47.926356 624.09002,47.67971 624.62575,47.679705 C 625.04478,47.67971 625.36701,47.796403 625.59244,48.029784 C 625.81787,48.260522 625.93058,48.617231 625.93059,49.099913 L 625.93059,52 L 625.2185,52 L 625.2185,49.338603 C 625.21849,49.052178 625.1946,48.846639 625.1469,48.721986 C 625.1018,48.594688 625.01827,48.492582 624.89627,48.415667 C 624.77427,48.338757 624.63106,48.300304 624.46663,48.3003 C 624.16959,48.300304 623.92294,48.39976 623.72669,48.598663 C 623.53043,48.794923 623.4323,49.110524 623.43231,49.545468 L 623.43231,52 L 622.71623,52 L 622.71623,49.255061 C 622.71623,48.936811 622.65793,48.698121 622.5412,48.53899 C 622.4245,48.379867 622.23355,48.300304 621.96834,48.3003 C 621.76678,48.300304 621.5798,48.35335 621.40742,48.459427 C 621.23768,48.565515 621.11436,48.720664 621.03745,48.924873 C 620.96055,49.129089 620.92208,49.423473 620.92208,49.808027 L 620.92208,52 L 620.20601,52" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4645-4"
|
||||
d="M 632.45877,52 L 632.45877,46.168 L 633.17484,46.168 L 633.17484,48.260518 C 633.509,47.873314 633.93069,47.67971 634.4399,47.679705 C 634.75284,47.67971 635.02469,47.742035 635.25542,47.866679 C 635.48615,47.988681 635.65058,48.158416 635.74872,48.375885 C 635.84949,48.593362 635.89988,48.908964 635.89989,49.32269 L 635.89989,52 L 635.18382,52 L 635.18382,49.32269 C 635.18381,48.964658 635.10562,48.704751 634.9491,48.542969 C 634.79528,48.378541 634.57648,48.296326 634.29271,48.296322 C 634.08053,48.296326 633.8803,48.352022 633.692,48.463405 C 633.50635,48.572145 633.37375,48.720664 633.29418,48.90896 C 633.21458,49.097264 633.17484,49.35717 633.17484,49.688682 L 633.17484,52 L 632.45877,52" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4643-0"
|
||||
d="M 626.46764,52 L 628.70735,46.168 L 629.53879,46.168 L 631.92569,52 L 631.04652,52 L 630.36625,50.233692 L 627.92763,50.233692 L 627.28714,52 L 626.46764,52 M 628.15041,49.605141 L 630.12756,49.605141 L 629.5189,47.990003 C 629.33325,47.499366 629.19534,47.096245 629.10517,46.780639 C 629.03087,47.154592 628.92615,47.525887 628.79089,47.894527 L 628.15041,49.605141" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.9483514,0,0,2.0215039,-801.18111,-13.343583)"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="top-battery-amp-label">
|
||||
<path
|
||||
d="M 631.84326,27.351151 L 630.83984,30.072097 L 632.85034,30.072097 L 631.84326,27.351151 M 631.42578,26.622391 L 632.2644,26.622391 L 634.34815,32.08992 L 633.57911,32.08992 L 633.08106,30.687332 L 630.61646,30.687332 L 630.11841,32.08992 L 629.33838,32.08992 L 631.42578,26.622391"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
id="path4614-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.8265794,0,0,1.8951599,-713.95685,-4.1763355)"
|
||||
id="top-battery-volt-label"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6809-3"
|
||||
style="font-size:8px;fill:#ffffff"
|
||||
d="M 625.76807,14.08992 L 623.5415,8.2578888 L 624.36572,8.2578888 L 626.21338,13.168045 L 628.06494,8.2578888 L 628.88525,8.2578888 L 626.6626,14.08992 L 625.76807,14.08992" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4935782,0,0,1.4938662,187.36162,-550.49066)"
|
||||
id="top-battery-icon"
|
||||
style="display:inline">
|
||||
<rect
|
||||
ry="0.37989542"
|
||||
rx="0.3369644"
|
||||
y="379.88272"
|
||||
x="179.70692"
|
||||
height="23.048584"
|
||||
width="10.563934"
|
||||
id="rect8252-6"
|
||||
style="fill:#373737;fill-opacity:1;stroke:#ffffff;stroke-width:0.59997100000000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
ry="0.37989542"
|
||||
rx="0.3369644"
|
||||
y="377.36176"
|
||||
x="182.70804"
|
||||
height="2.4008942"
|
||||
width="4.4416542"
|
||||
id="rect8254-0"
|
||||
style="fill:url(#linearGradient12811);fill-opacity:1;stroke:#ffffff;stroke-width:0.60000001999999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8256-9"
|
||||
d="M 187.02966,383.00388 L 181.98777,391.88719 L 185.22898,391.76714 L 182.10782,399.32996 L 188.2301,390.56669 L 184.74881,390.44665 z"
|
||||
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
style="color:#000000;fill:#000000;fill-opacity:0;fill-rule:nonzero;stroke:none;stroke-width:0.98506242;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
||||
id="topbattery-label-voltamp-bg"
|
||||
width="90"
|
||||
height="59.014935"
|
||||
x="354.7511"
|
||||
y="2.1841474" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer57"
|
||||
@ -3145,11 +4171,11 @@
|
||||
inkscape:label="#path10180"
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps0"
|
||||
d="m 55.41388,54 l 0,-9.532546"
|
||||
d="M 55.41388,54 L 55.41388,44.467454"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 55.41388,54 l 0,-9.532546"
|
||||
d="M 55.41388,54 L 55.41388,44.467454"
|
||||
id="gps1"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10180"
|
||||
@ -3157,13 +4183,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps2"
|
||||
d="m 66.241636,54 l 0,-13.345565"
|
||||
d="M 66.241636,54 L 66.241636,40.654435"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10211"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 77.069393,54 l 0,-17.158583"
|
||||
d="M 77.069393,54 L 77.069393,36.841417"
|
||||
id="gps3"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10213"
|
||||
@ -3171,13 +4197,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps4"
|
||||
d="m 87.89715,54 l 0,-20.971601"
|
||||
d="M 87.89715,54 L 87.89715,33.028399"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10215"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 98.724906,54 l 0,-24.78462"
|
||||
d="M 98.724906,54 L 98.724906,29.21538"
|
||||
id="gps5"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10217"
|
||||
@ -3185,13 +4211,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps6"
|
||||
d="m 109.55266,54 l 0,-28.597638"
|
||||
d="M 109.55266,54 L 109.55266,25.402362"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10219"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 120.38042,54 l 0,-32.410657"
|
||||
d="M 120.38042,54 L 120.38042,21.589343"
|
||||
id="gps7"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10221"
|
||||
@ -3199,13 +4225,13 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps8"
|
||||
d="m 131.20817,54 l 0,-36.223675"
|
||||
d="M 131.20817,54 L 131.20817,17.776325"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10223"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 142.03593,54 l 0,-40.036693"
|
||||
d="M 142.03593,54 L 142.03593,13.963307"
|
||||
id="gps9"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10225"
|
||||
@ -3213,7 +4239,7 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="gps10"
|
||||
d="m 152.86369,54 l 0,-43.849712"
|
||||
d="M 152.86369,54 L 152.86369,10.150288"
|
||||
style="fill:none;stroke:#009600;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:label="#path10227"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -3230,12 +4256,12 @@
|
||||
id="gps-mode-text"
|
||||
transform="matrix(1.4543578,0,0,1.4543578,-4.981688,1.3723646)">
|
||||
<path
|
||||
d="m 54.155106,11.899892 c 0.472,0.100915 0.839838,0.310876 1.103515,0.629883 c 0.266922,0.319013 0.400385,0.712893 0.400391,1.18164 c -6e-6,0.719403 -0.247401,1.276043 -0.742188,1.669922 c -0.494796,0.39388 -1.19792,0.59082 -2.109375,0.59082 c -0.305992,0 -0.621747,-0.03092 -0.947265,-0.09277 c -0.322267,-0.05859 -0.655926,-0.148112 -1.000977,-0.268555 l 0,-0.952148 c 0.273437,0.159506 0.572915,0.279949 0.898438,0.361328 c 0.325519,0.08138 0.665687,0.122071 1.020507,0.12207 c 0.618487,10e-7 1.088864,-0.122069 1.411133,-0.366211 c 0.325517,-0.244139 0.488277,-0.598956 0.488282,-1.064453 c -5e-6,-0.429685 -0.151372,-0.764971 -0.454102,-1.005859 c -0.299483,-0.244137 -0.717777,-0.366208 -1.254883,-0.366211 l -0.849609,0 l 0,-0.810547 l 0.888672,0 c 0.485022,4e-6 0.856116,-0.09602 1.113281,-0.288086 c 0.257157,-0.195308 0.385738,-0.475255 0.385742,-0.839844 C 54.506664,10.026525 54.3732,9.7400672 54.106277,9.5414934 C 53.842602,9.339677 53.46337,9.2387656 52.968582,9.238759 c -0.270185,6.6e-6 -0.559898,0.029303 -0.86914,0.087891 c -0.309247,0.0586 -0.649416,0.1497459 -1.020508,0.2734375 l 0,-0.8789063 c 0.374347,-0.1041594 0.724282,-0.1822844 1.049804,-0.234375 c 0.328774,-0.052076 0.638019,-0.078118 0.927735,-0.078125 c 0.748694,7.4e-6 1.341141,0.1709057 1.777344,0.5126953 c 0.436192,0.3385483 0.654291,0.7975322 0.654296,1.3769525 c -5e-6,0.403651 -0.115565,0.745448 -0.346679,1.025391 c -0.231125,0.276697 -0.559901,0.468754 -0.986328,0.576172"
|
||||
d="M 54.155106,11.899892 C 54.627106,12.000807 54.994944,12.210768 55.258621,12.529775 C 55.525543,12.848788 55.659006,13.242668 55.659012,13.711415 C 55.659006,14.430818 55.411611,14.987458 54.916824,15.381337 C 54.422028,15.775217 53.718904,15.972157 52.807449,15.972157 C 52.501457,15.972157 52.185702,15.941237 51.860184,15.879387 C 51.537917,15.820797 51.204258,15.731275 50.859207,15.610832 L 50.859207,14.658684 C 51.132644,14.81819 51.432122,14.938633 51.757645,15.020012 C 52.083164,15.101392 52.423332,15.142083 52.778152,15.142082 C 53.396639,15.142083 53.867016,15.020013 54.189285,14.775871 C 54.514802,14.531732 54.677562,14.176915 54.677567,13.711418 C 54.677562,13.281733 54.526195,12.946447 54.223465,12.705559 C 53.923982,12.461422 53.505688,12.339351 52.968582,12.339348 L 52.118973,12.339348 L 52.118973,11.528801 L 53.007645,11.528801 C 53.492667,11.528805 53.863761,11.432781 54.120926,11.240715 C 54.378083,11.045407 54.506664,10.76546 54.506668,10.400871 C 54.506664,10.026525 54.3732,9.7400672 54.106277,9.5414934 C 53.842602,9.339677 53.46337,9.2387656 52.968582,9.238759 C 52.698397,9.2387656 52.408684,9.268062 52.099442,9.32665 C 51.790195,9.38525 51.450026,9.4763959 51.078934,9.6000875 L 51.078934,8.7211812 C 51.453281,8.6170218 51.803216,8.5388968 52.128738,8.4868062 C 52.457512,8.4347302 52.766757,8.4086882 53.056473,8.4086812 C 53.805167,8.4086886 54.397614,8.5795869 54.833817,8.9213765 C 55.270009,9.2599248 55.488108,9.7189087 55.488113,10.298329 C 55.488108,10.70198 55.372548,11.043777 55.141434,11.32372 C 54.910309,11.600417 54.581533,11.792474 54.155106,11.899892"
|
||||
style="font-size:10px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6298"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 58.432449,9.3510637 l 0,5.6689453 l 1.191407,0 c 1.005855,10e-7 1.741531,-0.227864 2.207031,-0.683594 c 0.468744,-0.455727 0.703119,-1.175127 0.703125,-2.158203 c -6e-6,-0.976558 -0.234381,-1.691075 -0.703125,-2.143555 C 61.365387,9.5789346 60.629711,9.3510702 59.623856,9.3510637 l -1.191407,0 M 57.446121,8.5405169 l 2.026367,0 c 1.412756,7.2e-6 2.449539,0.2946033 3.110352,0.883789 c 0.6608,0.5859431 0.991204,1.5039111 0.991211,2.7539061 c -7e-6,1.256513 -0.332038,2.179364 -0.996094,2.768555 c -0.664068,0.589193 -1.699223,0.883789 -3.105469,0.883789 l -2.026367,0 l 0,-7.2900391"
|
||||
d="M 58.432449,9.3510637 L 58.432449,15.020009 L 59.623856,15.020009 C 60.629711,15.02001 61.365387,14.792145 61.830887,14.336415 C 62.299631,13.880688 62.534006,13.161288 62.534012,12.178212 C 62.534006,11.201654 62.299631,10.487137 61.830887,10.034657 C 61.365387,9.5789346 60.629711,9.3510702 59.623856,9.3510637 L 58.432449,9.3510637 M 57.446121,8.5405169 L 59.472488,8.5405169 C 60.885244,8.5405241 61.922027,8.8351202 62.58284,9.4243059 C 63.24364,10.010249 63.574044,10.928217 63.574051,12.178212 C 63.574044,13.434725 63.242013,14.357576 62.577957,14.946767 C 61.913889,15.53596 60.878734,15.830556 59.472488,15.830556 L 57.446121,15.830556 L 57.446121,8.5405169"
|
||||
style="font-size:10px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6300"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -3252,7 +4278,7 @@
|
||||
id="info-border">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;display:inline"
|
||||
d="m 642,61.5 l -642.5,0"
|
||||
d="M 642,61.5 L -0.5,61.5"
|
||||
id="info-bg-top"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -3272,7 +4298,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 50.000001,53.843809 l 108.277569,0.1562 l 0,-43.847141 l -10.82776,-0.0027 l 0,43.83468 l -10.82776,-0.01678 l 0,-39.992233 l 10.82776,0.08526 l -10.82776,-0.08526 l 0,4.047576 l -10.82775,6.63e-4 l 0,35.929072 l -10.82776,-0.01315 l 0.045,-32.090134 l 10.78275,-0.01335 l -10.87277,0.01335 l 0.045,3.688376 l -10.82774,-0.135867 l 0,28.519647 l -10.827754,-0.01544 l 0,-24.691183 l 10.827754,-6.26e-4 l -10.827754,6.26e-4 l 0,3.813018 l -10.827757,0 l 0,20.861798 l 0,-17.04878 l -10.827756,0 l 0,17.034126 l 0,-13.221107 l -10.827757,0 l 0,13.204955 l 0,-9.391937 L 50,44.467478 z"
|
||||
d="M 50.000001,53.843809 L 158.27757,54.000009 L 158.27757,10.152868 L 147.44981,10.150168 L 147.44981,53.984848 L 136.62205,53.968068 L 136.62205,13.975835 L 147.44981,14.061095 L 136.62205,13.975835 L 136.62205,18.023411 L 125.7943,18.024074 L 125.7943,53.953146 L 114.96654,53.939996 L 115.01154,21.849862 L 125.79429,21.836512 L 114.92152,21.849862 L 114.96652,25.538238 L 104.13878,25.402371 L 104.13878,53.922018 L 93.311026,53.906578 L 93.311026,29.215395 L 104.13878,29.214769 L 93.311026,29.215395 L 93.311026,33.028413 L 82.483269,33.028413 L 82.483269,53.890211 L 82.483269,36.841431 L 71.655513,36.841431 L 71.655513,53.875557 L 71.655513,40.65445 L 60.827756,40.65445 L 60.827756,53.859405 L 60.827756,44.467468 L 50,44.467478 z"
|
||||
id="satbar-mask"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc"
|
||||
@ -3305,7 +4331,7 @@
|
||||
inkscape:transform-center-y="-105.12133"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3444"
|
||||
d="m 262.55821,71.879346 l -6.50008,-11.25848"
|
||||
d="M 262.55821,71.879346 L 256.05813,60.620866"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:transform-center-x="60.69183" />
|
||||
<path
|
||||
@ -3341,7 +4367,7 @@
|
||||
inkscape:transform-center-y="-104.31057"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3466"
|
||||
d="m 281.77925,62.464332 l -1.94063,-4.28458"
|
||||
d="M 281.77925,62.464332 L 279.83862,58.179752"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:transform-center-x="38.90241" />
|
||||
<path
|
||||
@ -3349,7 +4375,7 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:transform-center-x="47.84564"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 272.99748,66.39497 l -2.31603,-4.30844"
|
||||
d="M 272.99748,66.39497 L 270.68145,62.08653"
|
||||
id="path3468"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-100.52307" />
|
||||
@ -3358,14 +4384,14 @@
|
||||
inkscape:transform-center-y="-117.24761"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3491"
|
||||
d="m 349.73406,60.402428 l 3.36469,-12.557202"
|
||||
d="M 349.73406,60.402428 L 353.09875,47.845226"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:transform-center-x="31.416405" />
|
||||
<path
|
||||
transform="translate(0,4)"
|
||||
inkscape:transform-center-x="60.69183"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 377.44179,71.879346 l 6.50008,-11.25848"
|
||||
d="M 377.44179,71.879346 L 383.94187,60.620866"
|
||||
id="path3493"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-105.12133" />
|
||||
@ -3374,7 +4400,7 @@
|
||||
inkscape:transform-center-y="-85.831206"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3495"
|
||||
d="m 399.82423,91.345686 l 11.40936,-9.763523"
|
||||
d="M 399.82423,91.345686 L 411.23359,81.582163"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:transform-center-x="85.83121"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -3383,7 +4409,7 @@
|
||||
inkscape:transform-center-y="-51.353944"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3497"
|
||||
d="m 330.38014,56.242757 l 0.76566,-4.817725"
|
||||
d="M 330.38014,56.242757 L 331.1458,51.425032"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:transform-center-x="10.57928"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -3400,7 +4426,7 @@
|
||||
transform="translate(0,4)"
|
||||
inkscape:transform-center-x="38.90241"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 358.22075,62.464332 l 1.94063,-4.28458"
|
||||
d="M 358.22075,62.464332 L 360.16138,58.179752"
|
||||
id="path3501"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-104.31057"
|
||||
@ -3410,7 +4436,7 @@
|
||||
inkscape:transform-center-y="-100.52307"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3503"
|
||||
d="m 367.00252,66.39497 l 2.31603,-4.30844"
|
||||
d="M 367.00252,66.39497 L 369.31855,62.08653"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:transform-center-x="47.84564"
|
||||
sodipodi:nodetypes="cc" />
|
||||
@ -3419,7 +4445,7 @@
|
||||
sodipodi:open="true"
|
||||
sodipodi:end="5.5477076"
|
||||
sodipodi:start="3.8773293"
|
||||
d="M 238.84479,91.530033 C 279.42114,46.70925 348.64918,43.268451 393.46997,83.844794 c 2.69442,2.439265 5.26569,5.011203 7.70426,7.706256"
|
||||
d="M 238.84479,91.530033 C 279.42114,46.70925 348.64918,43.268451 393.46997,83.844794 C 396.16439,86.284059 398.73566,88.855997 401.17423,91.55105"
|
||||
sodipodi:ry="109.47147"
|
||||
sodipodi:rx="109.47147"
|
||||
sodipodi:cy="165"
|
||||
@ -3429,7 +4455,7 @@
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:none;display:inline"
|
||||
d="m 311.913,44.002 l 8.08652,15 l 8.01834,-15 z"
|
||||
d="M 311.913,44.002 L 319.99952,59.002 L 328.01786,44.002 z"
|
||||
id="path8288"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-7.5"
|
||||
@ -3451,7 +4477,7 @@
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:#ffffff;stroke:none;display:inline"
|
||||
d="m 328.90502,126.42145 l -2.96834,-5.50609 l -11.82329,0 l -2.9433,5.50609 z"
|
||||
d="M 328.90502,126.42145 L 325.93668,120.91536 L 314.11339,120.91536 L 311.17009,126.42145 z"
|
||||
id="sideslip-moving"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="11.012182"
|
||||
@ -3466,7 +4492,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#ffffff;stroke:none;display:inline"
|
||||
d="M 324.45251,118.16231 320,109.90318 l -4.41496,8.25913 z"
|
||||
d="M 324.45251,118.16231 L 320,109.90318 L 315.58504,118.16231 z"
|
||||
id="sideslip-fixed"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="11.012182"
|
||||
@ -3489,13 +4515,13 @@
|
||||
<path
|
||||
id="path4955"
|
||||
transform="translate(0,4)"
|
||||
d="M 320,165 274.59375,187.5 320,174.125 l 0.0312,0 L 365.4375,187.5 320.03125,165 320,165 z"
|
||||
d="M 320,165 L 274.59375,187.5 L 320,174.125 L 320.0312,174.125 L 365.4375,187.5 L 320.03125,165 L 320,165 z"
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4957"
|
||||
transform="translate(0,4)"
|
||||
d="m 320,174 -45.15625,13.375 45.15625,-5.5 0.0312,0 45.15625,5.5 L 320.03125,174 320,174 z"
|
||||
d="M 320,174 L 274.84375,187.375 L 320,181.875 L 320.0312,181.875 L 365.18745,187.375 L 320.03125,174 L 320,174 z"
|
||||
style="fill:#808000;fill-opacity:1;stroke:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -3516,7 +4542,7 @@
|
||||
id="g4945">
|
||||
<path
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:none"
|
||||
d="m 165,174.9375 42.9375,0 5,4.56167 -47.9375,0 z"
|
||||
d="M 165,174.9375 L 207.9375,174.9375 L 212.9375,179.49917 L 165,179.49917 z"
|
||||
id="path4941"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
@ -3526,7 +4552,7 @@
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4943"
|
||||
d="m 165,184.06084 42.9375,0 5,-4.56167 -47.9375,0 z"
|
||||
d="M 165,184.06084 L 207.9375,184.06084 L 212.9375,179.49917 L 165,179.49917 z"
|
||||
style="fill:#808000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
@ -3537,7 +4563,7 @@
|
||||
transform="matrix(-1,0,0,1,610.48878,-10.5)">
|
||||
<path
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:none"
|
||||
d="m 165,174.9375 42.9375,0 5,4.56167 -47.9375,0 z"
|
||||
d="M 165,174.9375 L 207.9375,174.9375 L 212.9375,179.49917 L 165,179.49917 z"
|
||||
id="path4951"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
@ -3547,7 +4573,7 @@
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4953"
|
||||
d="m 165,184.06084 42.9375,0 5,-4.56167 -47.9375,0 z"
|
||||
d="M 165,184.06084 L 207.9375,184.06084 L 212.9375,179.49917 L 165,179.49917 z"
|
||||
style="fill:#808000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
@ -3593,7 +4619,7 @@
|
||||
transform="translate(0,78)">
|
||||
<path
|
||||
transform="matrix(0.84971585,0,0,0.84971585,73.153736,57.627199)"
|
||||
d="m 381.49999,370 c 0,50.26377 -40.74684,91.01061 -91.01061,91.01061 c -50.26377,0 -91.01061,-40.74684 -91.01061,-91.01061 c 0,-50.26377 40.74684,-91.01061 91.01061,-91.01061 c 50.26377,0 91.01061,40.74684 91.01061,91.01061 z"
|
||||
d="M 381.49999,370 C 381.49999,420.26377 340.75315,461.01061 290.48938,461.01061 C 240.22561,461.01061 199.47877,420.26377 199.47877,370 C 199.47877,319.73623 240.22561,278.98939 290.48938,278.98939 C 340.75315,278.98939 381.49999,319.73623 381.49999,370 z"
|
||||
sodipodi:ry="91.010612"
|
||||
sodipodi:rx="91.010612"
|
||||
sodipodi:cy="370"
|
||||
@ -3603,7 +4629,7 @@
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.25098039;fill-rule:evenodd;stroke:none;display:inline"
|
||||
d="m 300.325,286.83216 l 0,10.32484 c 14.21621,-3.46975 26.48893,-3.18251 38.975,-0.032 l 0,-10.32842 z"
|
||||
d="M 300.325,286.83216 L 300.325,297.157 C 314.54121,293.68725 326.81393,293.97449 339.3,297.125 L 339.3,286.79658 z"
|
||||
id="path6040"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -3620,12 +4646,12 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6065"
|
||||
d="m 241.40244,372.02206 l -8.50092,0"
|
||||
d="M 241.40244,372.02206 L 232.90152,372.02206"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
inkscape:transform-center-y="68.929095"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 264.41805,427.58668 l -6.01105,6.01105"
|
||||
d="M 264.41805,427.58668 L 258.407,433.59773"
|
||||
id="path6067"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
@ -3635,12 +4661,12 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6069"
|
||||
d="m 375.54729,427.58668 l 6.01105,6.01105"
|
||||
d="M 375.54729,427.58668 L 381.55834,433.59773"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
inkscape:transform-center-y="68.929095" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 398.56291,372.02206 l 8.50091,0"
|
||||
d="M 398.56291,372.02206 L 407.06382,372.02206"
|
||||
id="path6071"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
@ -3651,7 +4677,7 @@
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6073"
|
||||
d="m 375.54729,316.45744 l 6.01105,-6.01105"
|
||||
d="M 375.54729,316.45744 L 381.55834,310.44639"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
inkscape:transform-center-x="68.929095"
|
||||
@ -3664,7 +4690,7 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5455"
|
||||
d="m 315.35322,289.07759 l 4.64583,5.68314 l 4.61355,-5.68314 l -4.61355,0 z"
|
||||
d="M 315.35322,289.07759 L 319.99905,294.76073 L 324.6126,289.07759 L 319.99905,289.07759 z"
|
||||
style="fill:#ffffff;stroke:none;display:inline"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
@ -3684,11 +4710,11 @@
|
||||
inkscape:transform-center-y="-85.40481"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4980"
|
||||
d="m 319.99877,294.64611 l 0.16778,9.61226"
|
||||
d="M 319.99877,294.64611 L 320.16655,304.25837"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 306.5624,295.81961 l 1.83439,9.43709"
|
||||
d="M 306.5624,295.81961 L 308.39679,305.2567"
|
||||
id="path4984"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-84.126835"
|
||||
@ -3698,11 +4724,11 @@
|
||||
inkscape:transform-center-y="-80.292705"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4988"
|
||||
d="m 293.53394,299.30849 l 3.44525,8.97518"
|
||||
d="M 293.53394,299.30849 L 296.97919,308.28367"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 281.30925,305.00672 l 4.95143,8.24057"
|
||||
d="M 281.30925,305.00672 L 286.26068,313.24729"
|
||||
id="path4990"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-74.018925"
|
||||
@ -3712,11 +4738,11 @@
|
||||
inkscape:transform-center-y="-65.49612"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4992"
|
||||
d="m 270.25976,312.74119 l 6.30716,7.25557"
|
||||
d="M 270.25976,312.74119 L 276.56692,319.99676"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 260.72122,322.27687 l 7.47125,6.05012"
|
||||
d="M 260.72122,322.27687 L 268.19247,328.32699"
|
||||
id="path4994"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-54.983245"
|
||||
@ -3726,11 +4752,11 @@
|
||||
inkscape:transform-center-y="-42.799735"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4996"
|
||||
d="m 252.98344,333.32403 l 8.40834,4.66084"
|
||||
d="M 252.98344,333.32403 L 261.39178,337.98487"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 247.28154,345.54702 l 9.08994,3.12993"
|
||||
d="M 247.28154,345.54702 L 256.37148,348.67695"
|
||||
id="path4998"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-29.315775"
|
||||
@ -3740,11 +4766,11 @@
|
||||
inkscape:transform-center-y="-14.94107"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5000"
|
||||
d="m 243.78875,358.57443 l 9.49536,1.50393"
|
||||
d="M 243.78875,358.57443 L 253.28411,360.07836"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 242.61123,372.01045 l 9.61224,-0.16777"
|
||||
d="M 242.61123,372.01045 L 252.22347,371.84268"
|
||||
id="path5002"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-0.11239"
|
||||
@ -3754,11 +4780,11 @@
|
||||
inkscape:transform-center-y="14.71971"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5004"
|
||||
d="m 243.78473,385.44682 l 9.43708,-1.83437"
|
||||
d="M 243.78473,385.44682 L 253.22181,383.61245"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 247.2736,398.47528 l 8.97517,-3.44523"
|
||||
d="M 247.2736,398.47528 L 256.24877,395.03005"
|
||||
id="path5006"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="29.104555"
|
||||
@ -3768,11 +4794,11 @@
|
||||
inkscape:transform-center-y="42.60507"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5008"
|
||||
d="m 252.97184,410.69997 l 8.24056,-4.95141"
|
||||
d="M 252.97184,410.69997 L 261.2124,405.74856"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 260.7063,421.74946 l 7.25556,-6.30715"
|
||||
d="M 260.7063,421.74946 L 267.96186,415.44231"
|
||||
id="path5010"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="54.811055"
|
||||
@ -3782,11 +4808,11 @@
|
||||
inkscape:transform-center-y="65.351635"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5012"
|
||||
d="m 270.24198,431.288 l 6.05011,-7.47123"
|
||||
d="M 270.24198,431.288 L 276.29209,423.81677"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 281.28914,439.02578 l 4.66083,-8.40832"
|
||||
d="M 281.28914,439.02578 L 285.94997,430.61746"
|
||||
id="path5014"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="73.906535"
|
||||
@ -3796,11 +4822,11 @@
|
||||
inkscape:transform-center-y="80.215825"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5016"
|
||||
d="m 293.51213,444.72769 l 3.12993,-9.08993"
|
||||
d="M 293.51213,444.72769 L 296.64206,435.63776"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 306.53954,448.22047 l 1.50393,-9.49534"
|
||||
d="M 306.53954,448.22047 L 308.04347,438.72513"
|
||||
id="path5018"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="84.0878"
|
||||
@ -3810,11 +4836,11 @@
|
||||
inkscape:transform-center-y="85.40481"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5020"
|
||||
d="m 319.97555,449.398 l -0.16777,-9.61224"
|
||||
d="M 319.97555,449.398 L 319.80778,439.78576"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 333.41192,448.2245 l -1.83437,-9.43707"
|
||||
d="M 333.41192,448.2245 L 331.57755,438.78743"
|
||||
id="path5022"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="84.126835"
|
||||
@ -3824,11 +4850,11 @@
|
||||
inkscape:transform-center-y="80.29271"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5024"
|
||||
d="m 346.44038,444.73564 l -3.44523,-8.97518"
|
||||
d="M 346.44038,444.73564 L 342.99515,435.76046"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 358.66508,439.0374 l -4.95142,-8.24056"
|
||||
d="M 358.66508,439.0374 L 353.71366,430.79684"
|
||||
id="path5026"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="74.01893"
|
||||
@ -3838,11 +4864,11 @@
|
||||
inkscape:transform-center-y="65.496125"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5028"
|
||||
d="m 369.71456,431.30294 l -6.30714,-7.25556"
|
||||
d="M 369.71456,431.30294 L 363.40742,424.04738"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 379.25311,421.76726 l -7.47124,-6.05011"
|
||||
d="M 379.25311,421.76726 L 371.78187,415.71715"
|
||||
id="path5030"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="54.983255"
|
||||
@ -3852,11 +4878,11 @@
|
||||
inkscape:transform-center-y="42.799745"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5032"
|
||||
d="m 386.99088,410.72009 l -8.40832,-4.66081"
|
||||
d="M 386.99088,410.72009 L 378.58256,406.05928"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 392.69279,398.49711 l -9.08992,-3.12992"
|
||||
d="M 392.69279,398.49711 L 383.60287,395.36719"
|
||||
id="path5034"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="29.315785"
|
||||
@ -3866,11 +4892,11 @@
|
||||
inkscape:transform-center-y="14.941085"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5036"
|
||||
d="m 396.18557,385.4697 l -9.49533,-1.50392"
|
||||
d="M 396.18557,385.4697 L 386.69024,383.96578"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 397.36311,372.03369 l -9.61223,0.16777"
|
||||
d="M 397.36311,372.03369 L 387.75088,372.20146"
|
||||
id="path5038"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="0.112405"
|
||||
@ -3880,11 +4906,11 @@
|
||||
inkscape:transform-center-y="-14.719695"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5040"
|
||||
d="m 396.18962,358.59732 l -9.43708,1.83437"
|
||||
d="M 396.18962,358.59732 L 386.75254,360.43169"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 392.70075,345.56885 l -8.97517,3.44525"
|
||||
d="M 392.70075,345.56885 L 383.72558,349.0141"
|
||||
id="path5042"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-29.10454"
|
||||
@ -3894,11 +4920,11 @@
|
||||
inkscape:transform-center-y="-42.60506"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5044"
|
||||
d="m 387.00251,333.34416 l -8.24055,4.95142"
|
||||
d="M 387.00251,333.34416 L 378.76196,338.29558"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 379.26805,322.29468 l -7.25555,6.30714"
|
||||
d="M 379.26805,322.29468 L 372.0125,328.60182"
|
||||
id="path5046"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-54.811045"
|
||||
@ -3908,11 +4934,11 @@
|
||||
inkscape:transform-center-y="-65.351625"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5048"
|
||||
d="m 369.73237,312.75613 l -6.0501,7.47124"
|
||||
d="M 369.73237,312.75613 L 363.68227,320.22737"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 358.68521,305.01836 l -4.66081,8.40831"
|
||||
d="M 358.68521,305.01836 L 354.0244,313.42667"
|
||||
id="path5050"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-73.90653"
|
||||
@ -3922,18 +4948,18 @@
|
||||
inkscape:transform-center-y="-80.215825"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5052"
|
||||
d="m 346.46222,299.31645 l -3.12991,9.08991"
|
||||
d="M 346.46222,299.31645 L 343.33231,308.40636"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 333.43481,295.82367 l -1.50392,9.49532"
|
||||
d="M 333.43481,295.82367 L 331.93089,305.31899"
|
||||
id="path5054"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-84.0878"
|
||||
inkscape:transform-center-x="-14.941085" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 319.99877,294.64611 l 0.16778,9.61226"
|
||||
d="M 319.99877,294.64611 L 320.16655,304.25837"
|
||||
id="compass-line-0"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-85.40481"
|
||||
@ -3944,11 +4970,11 @@
|
||||
inkscape:transform-center-y="-84.126835"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5062"
|
||||
d="m 306.5624,295.81961 l 1.83439,9.43709"
|
||||
d="M 306.5624,295.81961 L 308.39679,305.2567"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 293.53394,299.30849 l 3.44525,8.97518"
|
||||
d="M 293.53394,299.30849 L 296.97919,308.28367"
|
||||
id="path5064"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-80.292705"
|
||||
@ -3958,11 +4984,11 @@
|
||||
inkscape:transform-center-y="-74.018925"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5066"
|
||||
d="m 281.30925,305.00672 l 4.95143,8.24057"
|
||||
d="M 281.30925,305.00672 L 286.26068,313.24729"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 270.25976,312.74119 l 6.30716,7.25557"
|
||||
d="M 270.25976,312.74119 L 276.56692,319.99676"
|
||||
id="path5068"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-65.49612"
|
||||
@ -3972,11 +4998,11 @@
|
||||
inkscape:transform-center-y="-54.983245"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5070"
|
||||
d="m 260.72122,322.27687 l 7.47125,6.05012"
|
||||
d="M 260.72122,322.27687 L 268.19247,328.32699"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 252.98344,333.32403 l 8.40834,4.66084"
|
||||
d="M 252.98344,333.32403 L 261.39178,337.98487"
|
||||
id="path5072"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-42.799735"
|
||||
@ -3986,11 +5012,11 @@
|
||||
inkscape:transform-center-y="-29.315775"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5074"
|
||||
d="m 247.28154,345.54702 l 9.08994,3.12993"
|
||||
d="M 247.28154,345.54702 L 256.37148,348.67695"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 243.78875,358.57443 l 9.49536,1.50393"
|
||||
d="M 243.78875,358.57443 L 253.28411,360.07836"
|
||||
id="path5076"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-14.94107"
|
||||
@ -4000,11 +5026,11 @@
|
||||
inkscape:transform-center-y="-0.11239"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5078"
|
||||
d="m 242.61123,372.01045 l 9.61224,-0.16777"
|
||||
d="M 242.61123,372.01045 L 252.22347,371.84268"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 243.78473,385.44682 l 9.43708,-1.83437"
|
||||
d="M 243.78473,385.44682 L 253.22181,383.61245"
|
||||
id="path5080"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="14.71971"
|
||||
@ -4014,11 +5040,11 @@
|
||||
inkscape:transform-center-y="29.104555"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5082"
|
||||
d="m 247.2736,398.47528 l 8.97517,-3.44523"
|
||||
d="M 247.2736,398.47528 L 256.24877,395.03005"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 252.97184,410.69997 l 8.24056,-4.95141"
|
||||
d="M 252.97184,410.69997 L 261.2124,405.74856"
|
||||
id="path5084"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="42.60507"
|
||||
@ -4028,11 +5054,11 @@
|
||||
inkscape:transform-center-y="54.811055"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5086"
|
||||
d="m 260.7063,421.74946 l 7.25556,-6.30715"
|
||||
d="M 260.7063,421.74946 L 267.96186,415.44231"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 270.24198,431.288 l 6.05011,-7.47123"
|
||||
d="M 270.24198,431.288 L 276.29209,423.81677"
|
||||
id="path5088"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="65.351635"
|
||||
@ -4042,11 +5068,11 @@
|
||||
inkscape:transform-center-y="73.906535"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5090"
|
||||
d="m 281.28914,439.02578 l 4.66083,-8.40832"
|
||||
d="M 281.28914,439.02578 L 285.94997,430.61746"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 293.51213,444.72769 l 3.12993,-9.08993"
|
||||
d="M 293.51213,444.72769 L 296.64206,435.63776"
|
||||
id="path5092"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="80.215825"
|
||||
@ -4056,11 +5082,11 @@
|
||||
inkscape:transform-center-y="84.0878"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5094"
|
||||
d="m 306.53954,448.22047 l 1.50393,-9.49534"
|
||||
d="M 306.53954,448.22047 L 308.04347,438.72513"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 319.97555,449.398 l -0.16777,-9.61224"
|
||||
d="M 319.97555,449.398 L 319.80778,439.78576"
|
||||
id="path5096"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="85.40481"
|
||||
@ -4070,11 +5096,11 @@
|
||||
inkscape:transform-center-y="84.126835"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5098"
|
||||
d="m 333.41192,448.2245 l -1.83437,-9.43707"
|
||||
d="M 333.41192,448.2245 L 331.57755,438.78743"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 346.44038,444.73564 l -3.44523,-8.97518"
|
||||
d="M 346.44038,444.73564 L 342.99515,435.76046"
|
||||
id="path5100"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="80.29271"
|
||||
@ -4084,11 +5110,11 @@
|
||||
inkscape:transform-center-y="74.01893"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5102"
|
||||
d="m 358.66508,439.0374 l -4.95142,-8.24056"
|
||||
d="M 358.66508,439.0374 L 353.71366,430.79684"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 369.71456,431.30294 l -6.30714,-7.25556"
|
||||
d="M 369.71456,431.30294 L 363.40742,424.04738"
|
||||
id="path5104"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="65.496125"
|
||||
@ -4098,11 +5124,11 @@
|
||||
inkscape:transform-center-y="54.983255"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5106"
|
||||
d="m 379.25311,421.76726 l -7.47124,-6.05011"
|
||||
d="M 379.25311,421.76726 L 371.78187,415.71715"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 386.99088,410.72009 l -8.40832,-4.66081"
|
||||
d="M 386.99088,410.72009 L 378.58256,406.05928"
|
||||
id="path5108"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="42.799745"
|
||||
@ -4112,11 +5138,11 @@
|
||||
inkscape:transform-center-y="29.315785"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5110"
|
||||
d="m 392.69279,398.49711 l -9.08992,-3.12992"
|
||||
d="M 392.69279,398.49711 L 383.60287,395.36719"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 396.18557,385.4697 l -9.49533,-1.50392"
|
||||
d="M 396.18557,385.4697 L 386.69024,383.96578"
|
||||
id="path5112"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="14.941085"
|
||||
@ -4126,11 +5152,11 @@
|
||||
inkscape:transform-center-y="0.112405"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5114"
|
||||
d="m 397.36311,372.03369 l -9.61223,0.16777"
|
||||
d="M 397.36311,372.03369 L 387.75088,372.20146"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 396.18962,358.59732 l -9.43708,1.83437"
|
||||
d="M 396.18962,358.59732 L 386.75254,360.43169"
|
||||
id="path5116"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-14.719695"
|
||||
@ -4140,11 +5166,11 @@
|
||||
inkscape:transform-center-y="-29.10454"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5118"
|
||||
d="m 392.70075,345.56885 l -8.97517,3.44525"
|
||||
d="M 392.70075,345.56885 L 383.72558,349.0141"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 387.00251,333.34416 l -8.24055,4.95142"
|
||||
d="M 387.00251,333.34416 L 378.76196,338.29558"
|
||||
id="path5120"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-42.60506"
|
||||
@ -4154,11 +5180,11 @@
|
||||
inkscape:transform-center-y="-54.811045"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5122"
|
||||
d="m 379.26805,322.29468 l -7.25555,6.30714"
|
||||
d="M 379.26805,322.29468 L 372.0125,328.60182"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 369.73237,312.75613 l -6.0501,7.47124"
|
||||
d="M 369.73237,312.75613 L 363.68227,320.22737"
|
||||
id="path5124"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-65.351625"
|
||||
@ -4168,11 +5194,11 @@
|
||||
inkscape:transform-center-y="-73.90653"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5126"
|
||||
d="m 358.68521,305.01836 l -4.66081,8.40831"
|
||||
d="M 358.68521,305.01836 L 354.0244,313.42667"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 346.46222,299.31645 l -3.12991,9.08991"
|
||||
d="M 346.46222,299.31645 L 343.33231,308.40636"
|
||||
id="path5128"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-80.215825"
|
||||
@ -4182,18 +5208,18 @@
|
||||
inkscape:transform-center-y="-84.0878"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5130"
|
||||
d="m 333.43481,295.82367 l -1.50392,9.49532"
|
||||
d="M 333.43481,295.82367 L 331.93089,305.31899"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
inkscape:transform-center-x="7.58159"
|
||||
inkscape:transform-center-y="-87.94732"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5250"
|
||||
d="m 313.25497,294.93954 l 0.58002,4.70459"
|
||||
d="M 313.25497,294.93954 L 313.83499,299.64413"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 299.97201,297.27963 l 1.38814,4.53239"
|
||||
d="M 299.97201,297.27963 L 301.36015,301.81202"
|
||||
id="path5252"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-85.294675"
|
||||
@ -4203,11 +5229,11 @@
|
||||
inkscape:transform-center-y="-80.050395"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5254"
|
||||
d="m 287.2972,301.89073 l 2.15409,4.22249"
|
||||
d="M 287.2972,301.89073 L 289.45129,306.11322"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 275.61565,308.63274 l 2.8546,3.78428"
|
||||
d="M 275.61565,308.63274 L 278.47025,312.41702"
|
||||
id="path5256"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-72.37382"
|
||||
@ -4217,11 +5243,11 @@
|
||||
inkscape:transform-center-y="-62.498205"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5258"
|
||||
d="m 265.28232,317.3008 l 3.46837,3.23109"
|
||||
d="M 265.28232,317.3008 L 268.75069,320.53189"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 256.61116,327.63154 l 3.97675,2.57973"
|
||||
d="M 256.61116,327.63154 L 260.58791,330.21127"
|
||||
id="path5260"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-50.723615"
|
||||
@ -4231,11 +5257,11 @@
|
||||
inkscape:transform-center-y="-37.40781"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5262"
|
||||
d="m 249.86565,339.31106 l 4.3643,1.84999"
|
||||
d="M 249.86565,339.31106 L 254.22995,341.16105"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 245.25075,351.98449 l 4.61924,1.06403"
|
||||
d="M 245.25075,351.98449 L 249.86999,353.04852"
|
||||
id="path5264"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-22.95539"
|
||||
@ -4245,11 +5271,11 @@
|
||||
inkscape:transform-center-y="-7.805485"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5266"
|
||||
d="m 242.90667,365.26675 l 4.73384,0.24574"
|
||||
d="M 242.90667,365.26675 L 247.64051,365.51249"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 242.90465,378.75426 l 4.70459,-0.58001"
|
||||
d="M 242.90465,378.75426 L 247.60924,378.17425"
|
||||
id="path5268"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="7.581585"
|
||||
@ -4259,11 +5285,11 @@
|
||||
inkscape:transform-center-y="22.738295"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5270"
|
||||
d="m 245.24474,392.03722 l 4.53239,-1.38814"
|
||||
d="M 245.24474,392.03722 L 249.77713,390.64908"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 249.85584,404.71203 l 4.22249,-2.15408"
|
||||
d="M 249.85584,404.71203 L 254.07833,402.55795"
|
||||
id="path5272"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="37.204115"
|
||||
@ -4273,11 +5299,11 @@
|
||||
inkscape:transform-center-y="50.539505"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5274"
|
||||
d="m 256.59785,416.39358 l 3.78428,-2.8546"
|
||||
d="M 256.59785,416.39358 L 260.38213,413.53898"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 265.26591,426.72691 l 3.23109,-3.46836"
|
||||
d="M 265.26591,426.72691 L 268.497,423.25855"
|
||||
id="path5276"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="62.339275"
|
||||
@ -4287,11 +5313,11 @@
|
||||
inkscape:transform-center-y="72.2449"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5278"
|
||||
d="m 275.59664,435.39807 l 2.57974,-3.97674"
|
||||
d="M 275.59664,435.39807 L 278.17638,431.42133"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 287.27617,442.14358 l 1.84999,-4.36429"
|
||||
d="M 287.27617,442.14358 L 289.12616,437.77929"
|
||||
id="path5280"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="79.9554"
|
||||
@ -4301,11 +5327,11 @@
|
||||
inkscape:transform-center-y="85.236495"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5282"
|
||||
d="m 299.94959,446.75848 l 1.06404,-4.61923"
|
||||
d="M 299.94959,446.75848 L 301.01363,442.13925"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 313.23185,449.10256 l 0.24575,-4.73383"
|
||||
d="M 313.23185,449.10256 L 313.4776,444.36873"
|
||||
id="path5284"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="87.927725"
|
||||
@ -4315,7 +5341,7 @@
|
||||
inkscape:transform-center-y="87.947315"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5286"
|
||||
d="m 326.71936,449.10458 l -0.58,-4.70458"
|
||||
d="M 326.71936,449.10458 L 326.13936,444.4"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
@ -4329,11 +5355,11 @@
|
||||
inkscape:transform-center-y="80.05039"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5290"
|
||||
d="m 352.67714,442.15339 l -2.15408,-4.22248"
|
||||
d="M 352.67714,442.15339 L 350.52306,437.93091"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 364.35868,435.41138 l -2.85458,-3.78427"
|
||||
d="M 364.35868,435.41138 L 361.5041,431.62711"
|
||||
id="path5292"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="72.37382"
|
||||
@ -4343,11 +5369,11 @@
|
||||
inkscape:transform-center-y="62.498205"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5294"
|
||||
d="m 374.69202,426.74332 l -3.46836,-3.23108"
|
||||
d="M 374.69202,426.74332 L 371.22366,423.51224"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 383.36317,416.41259 l -3.97673,-2.57973"
|
||||
d="M 383.36317,416.41259 L 379.38644,413.83286"
|
||||
id="path5296"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="50.723615"
|
||||
@ -4357,11 +5383,11 @@
|
||||
inkscape:transform-center-y="37.407815"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5298"
|
||||
d="m 390.10868,404.73307 l -4.36428,-1.84999"
|
||||
d="M 390.10868,404.73307 L 385.7444,402.88308"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 394.72358,392.05965 l -4.61922,-1.06404"
|
||||
d="M 394.72358,392.05965 L 390.10436,390.99561"
|
||||
id="path5300"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="22.955395"
|
||||
@ -4371,11 +5397,11 @@
|
||||
inkscape:transform-center-y="7.80549"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5302"
|
||||
d="m 397.06766,378.77739 l -4.73382,-0.24576"
|
||||
d="M 397.06766,378.77739 L 392.33384,378.53163"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 397.06968,365.28988 l -4.70457,0.57999"
|
||||
d="M 397.06968,365.28988 L 392.36511,365.86987"
|
||||
id="path5304"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-7.58158"
|
||||
@ -4385,11 +5411,11 @@
|
||||
inkscape:transform-center-y="-22.73829"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5306"
|
||||
d="m 394.72959,352.00691 l -4.53237,1.38813"
|
||||
d="M 394.72959,352.00691 L 390.19722,353.39504"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 390.11849,339.3321 l -4.22247,2.15408"
|
||||
d="M 390.11849,339.3321 L 385.89602,341.48618"
|
||||
id="path5308"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-37.20411"
|
||||
@ -4399,11 +5425,11 @@
|
||||
inkscape:transform-center-y="-50.5395"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5310"
|
||||
d="m 383.37649,327.65056 l -3.78427,2.85458"
|
||||
d="M 383.37649,327.65056 L 379.59222,330.50514"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 374.70843,317.31722 l -3.23108,3.46835"
|
||||
d="M 374.70843,317.31722 L 371.47735,320.78557"
|
||||
id="path5312"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-62.33927"
|
||||
@ -4413,11 +5439,11 @@
|
||||
inkscape:transform-center-y="-72.244895"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5314"
|
||||
d="m 364.3777,308.64607 l -2.57973,3.97673"
|
||||
d="M 364.3777,308.64607 L 361.79797,312.6228"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 352.69818,301.90055 l -1.84999,4.36429"
|
||||
d="M 352.69818,301.90055 L 350.84819,306.26484"
|
||||
id="path5316"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-79.955395"
|
||||
@ -4427,11 +5453,11 @@
|
||||
inkscape:transform-center-y="-85.23649"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5318"
|
||||
d="m 340.02476,297.28565 l -1.06404,4.61923"
|
||||
d="M 340.02476,297.28565 L 338.96072,301.90488"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.69943166;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 326.7425,294.94158 l -0.24575,4.73382"
|
||||
d="M 326.7425,294.94158 L 326.49675,299.6754"
|
||||
id="path5320"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-y="-87.92772"
|
||||
@ -4441,7 +5467,7 @@
|
||||
style="font-size:33.9886322px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="compass-0">
|
||||
<path
|
||||
d="m 316.09539,305.91479 l 2.4977,0 l 3.15407,5.94801 l 0,-5.94801 l 2.12014,0 l 0,8.67225 l -2.4977,0 l -3.15407,-5.94801 l 0,5.94801 l -2.12014,0 l 0,-8.67225"
|
||||
d="M 316.09539,305.91479 L 318.59309,305.91479 L 321.74716,311.8628 L 321.74716,305.91479 L 323.8673,305.91479 L 323.8673,314.58704 L 321.3696,314.58704 L 318.21553,308.63903 L 318.21553,314.58704 L 316.09539,314.58704 L 316.09539,305.91479"
|
||||
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
|
||||
id="path6234"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4454,12 +5480,12 @@
|
||||
id="compass330"
|
||||
inkscape:label="#compass330">
|
||||
<path
|
||||
d="m 88.35851,420.06321 c 0.561493,0.12005 0.999074,0.36982 1.312745,0.74931 c 0.31753,0.3795 0.476299,0.84806 0.476305,1.40568 c -6e-6,0.8558 -0.294309,1.51798 -0.882908,1.98654 c -0.58861,0.46856 -1.425048,0.70285 -2.509317,0.70285 c -0.364009,0 -0.739631,-0.0368 -1.126869,-0.11037 c -0.38337,-0.0697 -0.780291,-0.17619 -1.190764,-0.31947 l 0,-1.13268 c 0.325281,0.18975 0.681541,0.33303 1.068783,0.42984 c 0.387238,0.0968 0.791904,0.14521 1.213999,0.14521 c 0.735752,0 1.295314,-0.14521 1.678686,-0.43564 c 0.387235,-0.29043 0.580855,-0.71252 0.580861,-1.26628 c -6e-6,-0.51115 -0.180072,-0.91001 -0.540201,-1.19657 c -0.356265,-0.29043 -0.853868,-0.43564 -1.492811,-0.43565 l -1.010697,0 l 0,-0.96422 l 1.057166,0 c 0.576984,0 1.018437,-0.11424 1.324362,-0.34271 c 0.305915,-0.23234 0.458874,-0.56537 0.45888,-0.99908 c -6e-6,-0.44532 -0.158774,-0.78609 -0.476306,-1.02232 c -0.313669,-0.24008 -0.764804,-0.36012 -1.353405,-0.36013 c -0.321412,1e-5 -0.666056,0.0349 -1.033931,0.10455 c -0.367881,0.0697 -0.772546,0.17814 -1.213999,0.32529 l 0,-1.04555 c 0.445325,-0.12391 0.861608,-0.21685 1.24885,-0.27882 c 0.39111,-0.0619 0.758988,-0.0929 1.103635,-0.0929 c 0.890648,10e-6 1.595425,0.20331 2.114332,0.6099 c 0.518896,0.40274 0.778347,0.94875 0.778353,1.63803 c -6e-6,0.48018 -0.137477,0.88678 -0.412411,1.2198 c -0.274946,0.32916 -0.666059,0.55763 -1.173338,0.68542"
|
||||
d="M 88.35851,420.06321 C 88.920003,420.18326 89.357584,420.43303 89.671255,420.81252 C 89.988785,421.19202 90.147554,421.66058 90.14756,422.2182 C 90.147554,423.074 89.853251,423.73618 89.264652,424.20474 C 88.676042,424.6733 87.839604,424.90759 86.755335,424.90759 C 86.391326,424.90759 86.015704,424.87079 85.628466,424.79722 C 85.245096,424.72752 84.848175,424.62103 84.437702,424.47775 L 84.437702,423.34507 C 84.762983,423.53482 85.119243,423.6781 85.506485,423.77491 C 85.893723,423.87171 86.298389,423.92012 86.720484,423.92012 C 87.456236,423.92012 88.015798,423.77491 88.39917,423.48448 C 88.786405,423.19405 88.980025,422.77196 88.980031,422.2182 C 88.980025,421.70705 88.799959,421.30819 88.43983,421.02163 C 88.083565,420.7312 87.585962,420.58599 86.947019,420.58598 L 85.936322,420.58598 L 85.936322,419.62176 L 86.993488,419.62176 C 87.570472,419.62176 88.011925,419.50752 88.31785,419.27905 C 88.623765,419.04671 88.776724,418.71368 88.77673,418.27997 C 88.776724,417.83465 88.617956,417.49388 88.300424,417.25765 C 87.986755,417.01757 87.53562,416.89753 86.947019,416.89752 C 86.625607,416.89753 86.280963,416.93242 85.913088,417.00207 C 85.545207,417.07177 85.140542,417.18021 84.699089,417.32736 L 84.699089,416.28181 C 85.144414,416.1579 85.560697,416.06496 85.947939,416.00299 C 86.339049,415.94109 86.706927,415.91009 87.051574,415.91009 C 87.942222,415.9101 88.646999,416.1134 89.165906,416.51999 C 89.684802,416.92273 89.944253,417.46874 89.944259,418.15802 C 89.944253,418.6382 89.806782,419.0448 89.531848,419.37782 C 89.256902,419.70698 88.865789,419.93545 88.35851,420.06324"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6277"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 95.93293,420.06321 c 0.561493,0.12005 0.999074,0.36982 1.312745,0.74931 c 0.31753,0.3795 0.476299,0.84806 0.476305,1.40568 c -6e-6,0.8558 -0.294309,1.51798 -0.882908,1.98654 c -0.58861,0.46856 -1.425048,0.70285 -2.509317,0.70285 c -0.364009,0 -0.739631,-0.0368 -1.126869,-0.11037 c -0.38337,-0.0697 -0.780291,-0.17619 -1.190764,-0.31947 l 0,-1.13268 c 0.325281,0.18975 0.681541,0.33303 1.068783,0.42984 c 0.387238,0.0968 0.791904,0.14521 1.213999,0.14521 c 0.735752,0 1.295314,-0.14521 1.678686,-0.43564 c 0.387235,-0.29043 0.580855,-0.71252 0.580861,-1.26628 c -6e-6,-0.51115 -0.180072,-0.91001 -0.540201,-1.19657 c -0.356265,-0.29043 -0.853868,-0.43564 -1.492811,-0.43565 l -1.010697,0 l 0,-0.96422 l 1.057166,0 c 0.576984,0 1.018437,-0.11424 1.324362,-0.34271 c 0.305915,-0.23234 0.458874,-0.56537 0.45888,-0.99908 c -6e-6,-0.44532 -0.158774,-0.78609 -0.476306,-1.02232 c -0.313669,-0.24008 -0.764804,-0.36012 -1.353405,-0.36013 c -0.321412,1e-5 -0.666056,0.0349 -1.033931,0.10455 c -0.367881,0.0697 -0.772546,0.17814 -1.213999,0.32529 l 0,-1.04555 c 0.445325,-0.12391 0.861608,-0.21685 1.24885,-0.27882 c 0.39111,-0.0619 0.758988,-0.0929 1.103635,-0.0929 c 0.890648,10e-6 1.595425,0.20331 2.114332,0.6099 c 0.518896,0.40274 0.778347,0.94875 0.778353,1.63803 c -6e-6,0.48018 -0.137477,0.88678 -0.412411,1.2198 c -0.274946,0.32916 -0.666059,0.55763 -1.173338,0.68542"
|
||||
d="M 95.93293,420.06321 C 96.494423,420.18326 96.932004,420.43303 97.245675,420.81252 C 97.563205,421.19202 97.721974,421.66058 97.72198,422.2182 C 97.721974,423.074 97.427671,423.73618 96.839072,424.20474 C 96.250462,424.6733 95.414024,424.90759 94.329755,424.90759 C 93.965746,424.90759 93.590124,424.87079 93.202886,424.79722 C 92.819516,424.72752 92.422595,424.62103 92.012122,424.47775 L 92.012122,423.34507 C 92.337403,423.53482 92.693663,423.6781 93.080905,423.77491 C 93.468143,423.87171 93.872809,423.92012 94.294904,423.92012 C 95.030656,423.92012 95.590218,423.77491 95.97359,423.48448 C 96.360825,423.19405 96.554445,422.77196 96.554451,422.2182 C 96.554445,421.70705 96.374379,421.30819 96.01425,421.02163 C 95.657985,420.7312 95.160382,420.58599 94.521439,420.58598 L 93.510742,420.58598 L 93.510742,419.62176 L 94.567908,419.62176 C 95.144892,419.62176 95.586345,419.50752 95.89227,419.27905 C 96.198185,419.04671 96.351144,418.71368 96.35115,418.27997 C 96.351144,417.83465 96.192376,417.49388 95.874844,417.25765 C 95.561175,417.01757 95.11004,416.89753 94.521439,416.89752 C 94.200027,416.89753 93.855383,416.93242 93.487508,417.00207 C 93.119627,417.07177 92.714962,417.18021 92.273509,417.32736 L 92.273509,416.28181 C 92.718834,416.1579 93.135117,416.06496 93.522359,416.00299 C 93.913469,415.94109 94.281347,415.91009 94.625994,415.91009 C 95.516642,415.9101 96.221419,416.1134 96.740326,416.51999 C 97.259222,416.92273 97.518673,417.46874 97.518679,418.15802 C 97.518673,418.6382 97.381202,419.0448 97.106268,419.37782 C 96.831322,419.70698 96.440209,419.93545 95.93293,420.06324"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6279"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4472,12 +5498,12 @@
|
||||
id="compass300"
|
||||
inkscape:label="#compass300">
|
||||
<path
|
||||
d="m -164.93444,401.01713 c 0.5615,0.12005 0.99908,0.36982 1.31275,0.74931 c 0.31753,0.3795 0.4763,0.84806 0.4763,1.40568 c 0,0.8558 -0.2943,1.51798 -0.8829,1.98654 c -0.58861,0.46856 -1.42505,0.70284 -2.50932,0.70284 c -0.36401,0 -0.73963,-0.0368 -1.12687,-0.11036 c -0.38337,-0.0697 -0.78029,-0.17619 -1.19076,-0.31947 l 0,-1.13268 c 0.32528,0.18975 0.68154,0.33303 1.06878,0.42984 c 0.38724,0.0968 0.7919,0.14521 1.214,0.14521 c 0.73575,0 1.29531,-0.14521 1.67868,-0.43564 c 0.38724,-0.29043 0.58086,-0.71252 0.58086,-1.26628 c 0,-0.51115 -0.18007,-0.91001 -0.5402,-1.19657 c -0.35626,-0.29043 -0.85386,-0.43564 -1.49281,-0.43565 l -1.01069,0 l 0,-0.96423 l 1.05716,0 c 0.57699,10e-6 1.01844,-0.11423 1.32436,-0.3427 c 0.30592,-0.23234 0.45888,-0.56537 0.45888,-0.99908 c 0,-0.44532 -0.15877,-0.78609 -0.4763,-1.02232 c -0.31367,-0.24008 -0.76481,-0.36012 -1.35341,-0.36013 c -0.32141,10e-6 -0.66605,0.0349 -1.03393,0.10455 c -0.36788,0.0697 -0.77254,0.17814 -1.214,0.32528 l 0,-1.04554 c 0.44533,-0.12391 0.86161,-0.21685 1.24885,-0.27882 c 0.39111,-0.0619 0.75899,-0.0929 1.10364,-0.0929 c 0.89065,0 1.59542,0.20331 2.11433,0.6099 c 0.5189,0.40274 0.77835,0.94874 0.77835,1.63803 c 0,0.48018 -0.13747,0.88678 -0.41241,1.2198 c -0.27494,0.32916 -0.66606,0.55763 -1.17334,0.68542"
|
||||
d="M -164.93444,401.01713 C -164.37294,401.13718 -163.93536,401.38695 -163.62169,401.76644 C -163.30416,402.14594 -163.14539,402.6145 -163.14539,403.17212 C -163.14539,404.02792 -163.43969,404.6901 -164.02829,405.15866 C -164.6169,405.62722 -165.45334,405.8615 -166.53761,405.8615 C -166.90162,405.8615 -167.27724,405.8247 -167.66448,405.75114 C -168.04785,405.68144 -168.44477,405.57495 -168.85524,405.43167 L -168.85524,404.29899 C -168.52996,404.48874 -168.1737,404.63202 -167.78646,404.72883 C -167.39922,404.82563 -166.99456,404.87404 -166.57246,404.87404 C -165.83671,404.87404 -165.27715,404.72883 -164.89378,404.4384 C -164.50654,404.14797 -164.31292,403.72588 -164.31292,403.17212 C -164.31292,402.66097 -164.49299,402.26211 -164.85312,401.97555 C -165.20938,401.68512 -165.70698,401.53991 -166.34593,401.5399 L -167.35662,401.5399 L -167.35662,400.57567 L -166.29946,400.57567 C -165.72247,400.57568 -165.28102,400.46144 -164.9751,400.23297 C -164.66918,400.00063 -164.51622,399.6676 -164.51622,399.23389 C -164.51622,398.78857 -164.67499,398.4478 -164.99252,398.21157 C -165.30619,397.97149 -165.75733,397.85145 -166.34593,397.85144 C -166.66734,397.85145 -167.01198,397.88634 -167.37986,397.95599 C -167.74774,398.02569 -168.1524,398.13413 -168.59386,398.28127 L -168.59386,397.23573 C -168.14853,397.11182 -167.73225,397.01888 -167.34501,396.95691 C -166.9539,396.89501 -166.58602,396.86401 -166.24137,396.86401 C -165.35072,396.86401 -164.64595,397.06732 -164.12704,397.47391 C -163.60814,397.87665 -163.34869,398.42265 -163.34869,399.11194 C -163.34869,399.59212 -163.48616,399.99872 -163.7611,400.33174 C -164.03604,400.6609 -164.42716,400.88937 -164.93444,401.01716"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6272"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -158.40556,397.79335 c -0.6041,1e-5 -1.05911,0.29818 -1.36503,0.89453 c -0.30205,0.59248 -0.45307,1.48507 -0.45307,2.67776 c 0,1.18883 0.15102,2.08142 0.45307,2.67777 c 0.30592,0.59248 0.76093,0.88872 1.36503,0.88872 c 0.60796,0 1.06297,-0.29624 1.36502,-0.88872 c 0.30591,-0.59635 0.45887,-1.48894 0.45888,-2.67777 c -1e-5,-1.19269 -0.15297,-2.08528 -0.45888,-2.67776 c -0.30205,-0.59635 -0.75706,-0.89452 -1.36502,-0.89453 m 0,-0.92937 c 0.97196,0 1.71353,0.38531 2.22469,1.15591 c 0.51502,0.76674 0.77254,1.88199 0.77255,3.34575 c -1e-5,1.4599 -0.25753,2.57515 -0.77255,3.34576 c -0.51116,0.76674 -1.25273,1.1501 -2.22469,1.1501 c -0.97198,0 -1.71548,-0.38336 -2.23051,-1.1501 c -0.51116,-0.77061 -0.76674,-1.88586 -0.76673,-3.34576 c -10e-6,-1.46376 0.25557,-2.57901 0.76673,-3.34575 c 0.51503,-0.7706 1.25853,-1.15591 2.23051,-1.15591"
|
||||
d="M -158.40556,397.79335 C -159.00966,397.79336 -159.46467,398.09153 -159.77059,398.68788 C -160.07264,399.28036 -160.22366,400.17295 -160.22366,401.36564 C -160.22366,402.55447 -160.07264,403.44706 -159.77059,404.04341 C -159.46467,404.63589 -159.00966,404.93213 -158.40556,404.93213 C -157.7976,404.93213 -157.34259,404.63589 -157.04054,404.04341 C -156.73463,403.44706 -156.58167,402.55447 -156.58166,401.36564 C -156.58167,400.17295 -156.73463,399.28036 -157.04054,398.68788 C -157.34259,398.09153 -157.7976,397.79336 -158.40556,397.79335 M -158.40556,396.86398 C -157.4336,396.86398 -156.69203,397.24929 -156.18087,398.01989 C -155.66585,398.78663 -155.40833,399.90188 -155.40832,401.36564 C -155.40833,402.82554 -155.66585,403.94079 -156.18087,404.7114 C -156.69203,405.47814 -157.4336,405.8615 -158.40556,405.8615 C -159.37754,405.8615 -160.12104,405.47814 -160.63607,404.7114 C -161.14723,403.94079 -161.40281,402.82554 -161.4028,401.36564 C -161.40281,399.90188 -161.14723,398.78663 -160.63607,398.01989 C -160.12104,397.24929 -159.37754,396.86398 -158.40556,396.86398"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6274"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4489,7 +5515,7 @@
|
||||
id="compass270"
|
||||
inkscape:label="#compass270">
|
||||
<path
|
||||
d="m -378.23146,253.87991 l 2.14337,0 l 1.49862,6.30233 l 1.48701,-6.30233 l 2.15499,0 l 1.487,6.30233 l 1.49862,-6.30233 l 2.12595,0 l -2.04463,8.67224 l -2.57902,0 l -1.57413,-6.59276 l -1.55671,6.59276 l -2.57902,0 l -2.06205,-8.67224"
|
||||
d="M -378.23146,253.87991 L -376.08809,253.87991 L -374.58947,260.18224 L -373.10246,253.87991 L -370.94747,253.87991 L -369.46047,260.18224 L -367.96185,253.87991 L -365.8359,253.87991 L -367.88053,262.55215 L -370.45955,262.55215 L -372.03368,255.95939 L -373.59039,262.55215 L -376.16941,262.55215 L -378.23146,253.87991"
|
||||
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
|
||||
id="path6269"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4502,12 +5528,12 @@
|
||||
id="compass240"
|
||||
inkscape:label="#compass240">
|
||||
<path
|
||||
d="m -487.4658,32.68352 l 4.09506,0 l 0,0.987462 l -5.50655,0 l 0,-0.987462 c 0.44532,-0.460815 1.05135,-1.078463 1.81809,-1.852945 c 0.7706,-0.77835 1.25465,-1.279825 1.45215,-1.504429 c 0.37562,-0.422087 0.63701,-0.778348 0.78416,-1.068783 c 0.15102,-0.294297 0.22653,-0.582791 0.22654,-0.865482 c -1e-5,-0.460809 -0.16265,-0.836432 -0.48792,-1.126869 c -0.32142,-0.290423 -0.74157,-0.435638 -1.26047,-0.435646 c -0.36788,8e-6 -0.75706,0.0639 -1.16753,0.191684 c -0.40661,0.127797 -0.84225,0.321417 -1.30694,0.580861 l 0,-1.184956 c 0.47243,-0.189739 0.91389,-0.333018 1.32436,-0.429836 c 0.41048,-0.0968 0.7861,-0.145207 1.12687,-0.145215 c 0.8984,8e-6 1.61479,0.224608 2.14919,0.673798 c 0.53438,0.449206 0.80158,1.049428 0.80158,1.800667 c 0,0.356267 -0.0678,0.695102 -0.2033,1.016506 c -0.13166,0.317542 -0.37369,0.693165 -0.72607,1.126869 c -0.0968,0.112304 -0.40467,0.437585 -0.92357,0.975846 c -0.51891,0.534394 -1.25079,1.283703 -2.19565,2.24793"
|
||||
d="M -487.4658,32.68352 L -483.37074,32.68352 L -483.37074,33.670982 L -488.87729,33.670982 L -488.87729,32.68352 C -488.43197,32.222705 -487.82594,31.605057 -487.0592,30.830575 C -486.2886,30.052225 -485.80455,29.55075 -485.60705,29.326146 C -485.23143,28.904059 -484.97004,28.547798 -484.82289,28.257363 C -484.67187,27.963066 -484.59636,27.674572 -484.59635,27.391881 C -484.59636,26.931072 -484.759,26.555449 -485.08427,26.265012 C -485.40569,25.974589 -485.82584,25.829374 -486.34474,25.829366 C -486.71262,25.829374 -487.1018,25.893266 -487.51227,26.02105 C -487.91888,26.148847 -488.35452,26.342467 -488.81921,26.601911 L -488.81921,25.416955 C -488.34678,25.227216 -487.90532,25.083937 -487.49485,24.987119 C -487.08437,24.890319 -486.70875,24.841912 -486.36798,24.841904 C -485.46958,24.841912 -484.75319,25.066512 -484.21879,25.515702 C -483.68441,25.964908 -483.41721,26.56513 -483.41721,27.316369 C -483.41721,27.672636 -483.48501,28.011471 -483.62051,28.332875 C -483.75217,28.650417 -483.9942,29.02604 -484.34658,29.459744 C -484.44338,29.572048 -484.75125,29.897329 -485.27015,30.43559 C -485.78906,30.969984 -486.52094,31.719293 -487.4658,32.68352"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6264"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -477.6783,26.02105 l -2.96239,4.629458 l 2.96239,0 l 0,-4.629458 m -0.30786,-1.022314 l 1.47539,0 l 0,5.651772 l 1.23723,0 l 0,0.975846 l -1.23723,0 l 0,2.044628 l -1.16753,0 l 0,-2.044628 l -3.915,0 l 0,-1.132678 l 3.60714,-5.49494"
|
||||
d="M -477.6783,26.02105 L -480.64069,30.650508 L -477.6783,30.650508 L -477.6783,26.02105 M -477.98616,24.998736 L -476.51077,24.998736 L -476.51077,30.650508 L -475.27354,30.650508 L -475.27354,31.626354 L -476.51077,31.626354 L -476.51077,33.670982 L -477.6783,33.670982 L -477.6783,31.626354 L -481.5933,31.626354 L -481.5933,30.493676 L -477.98616,24.998736"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6266"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4520,12 +5546,12 @@
|
||||
id="compass210"
|
||||
inkscape:label="#compass210">
|
||||
<path
|
||||
d="m -468.41969,-220.60944 l 4.09507,0 l 0,0.98746 l -5.50656,0 l 0,-0.98746 c 0.44532,-0.46082 1.05135,-1.07846 1.81809,-1.85295 c 0.77061,-0.77835 1.25466,-1.27982 1.45215,-1.50442 c 0.37562,-0.42209 0.63701,-0.77835 0.78416,-1.06879 c 0.15102,-0.29429 0.22654,-0.58279 0.22654,-0.86548 c 0,-0.46081 -0.16265,-0.83643 -0.48792,-1.12687 c -0.32142,-0.29042 -0.74157,-0.43564 -1.26047,-0.43564 c -0.36788,0 -0.75706,0.0639 -1.16753,0.19168 c -0.4066,0.1278 -0.84225,0.32142 -1.30694,0.58086 l 0,-1.18496 c 0.47244,-0.18973 0.91389,-0.33301 1.32437,-0.42983 c 0.41047,-0.0968 0.78609,-0.14521 1.12687,-0.14522 c 0.89839,1e-5 1.61478,0.22461 2.14918,0.6738 c 0.53439,0.44921 0.80158,1.04943 0.80159,1.80067 c -1e-5,0.35627 -0.0678,0.6951 -0.2033,1.0165 c -0.13167,0.31755 -0.3737,0.69317 -0.72608,1.12687 c -0.0968,0.11231 -0.40467,0.43759 -0.92357,0.97585 c -0.5189,0.53439 -1.25079,1.2837 -2.19565,2.24793"
|
||||
d="M -468.41969,-220.60944 L -464.32462,-220.60944 L -464.32462,-219.62198 L -469.83118,-219.62198 L -469.83118,-220.60944 C -469.38586,-221.07026 -468.77983,-221.6879 -468.01309,-222.46239 C -467.24248,-223.24074 -466.75843,-223.74221 -466.56094,-223.96681 C -466.18532,-224.3889 -465.92393,-224.74516 -465.77678,-225.0356 C -465.62576,-225.32989 -465.55024,-225.61839 -465.55024,-225.90108 C -465.55024,-226.36189 -465.71289,-226.73751 -466.03816,-227.02795 C -466.35958,-227.31837 -466.77973,-227.46359 -467.29863,-227.46359 C -467.66651,-227.46359 -468.05569,-227.39969 -468.46616,-227.27191 C -468.87276,-227.14411 -469.30841,-226.95049 -469.7731,-226.69105 L -469.7731,-227.87601 C -469.30066,-228.06574 -468.85921,-228.20902 -468.44873,-228.30584 C -468.03826,-228.40264 -467.66264,-228.45105 -467.32186,-228.45106 C -466.42347,-228.45105 -465.70708,-228.22645 -465.17268,-227.77726 C -464.63829,-227.32805 -464.3711,-226.72783 -464.37109,-225.97659 C -464.3711,-225.62032 -464.43889,-225.28149 -464.57439,-224.96009 C -464.70606,-224.64254 -464.94809,-224.26692 -465.30047,-223.83322 C -465.39727,-223.72091 -465.70514,-223.39563 -466.22404,-222.85737 C -466.74294,-222.32298 -467.47483,-221.57367 -468.41969,-220.60944"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6259"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -461.65267,-220.60944 l 1.91684,0 l 0,-6.616 l -2.08529,0.41822 l 0,-1.06879 l 2.07368,-0.41822 l 1.17333,0 l 0,7.68479 l 1.91684,0 l 0,0.98746 l -4.9954,0 l 0,-0.98746"
|
||||
d="M -461.65267,-220.60944 L -459.73583,-220.60944 L -459.73583,-227.22544 L -461.82112,-226.80722 L -461.82112,-227.87601 L -459.74744,-228.29423 L -458.57411,-228.29423 L -458.57411,-220.60944 L -456.65727,-220.60944 L -456.65727,-219.62198 L -461.65267,-219.62198 L -461.65267,-220.60944"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6261"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4537,7 +5563,7 @@
|
||||
id="compass180"
|
||||
inkscape:label="#compass180">
|
||||
<path
|
||||
d="m -317.14674,-437.8563 l 0,1.83552 c -0.47632,-0.21298 -0.941,-0.37368 -1.39407,-0.48212 c -0.45308,-0.10842 -0.88098,-0.16263 -1.2837,-0.16264 c -0.5344,1e-5 -0.92938,0.0736 -1.18496,0.22073 c -0.25558,0.14716 -0.38337,0.37563 -0.38336,0.68541 c -10e-6,0.23235 0.0852,0.41436 0.25557,0.54601 c 0.17426,0.1278 0.48792,0.23816 0.941,0.33109 l 0.95261,0.19169 c 0.96422,0.19362 1.64964,0.48792 2.05625,0.8829 c 0.40659,0.39499 0.60989,0.95649 0.6099,1.6845 c -1e-5,0.95648 -0.28463,1.66901 -0.85387,2.13757 c -0.56537,0.46468 -1.43085,0.69703 -2.59644,0.69703 c -0.54989,0 -1.1017,-0.0523 -1.65545,-0.15683 c -0.55376,-0.10456 -1.10751,-0.25946 -1.66127,-0.46469 l 0,-1.8878 c 0.55376,0.29431 1.08815,0.51697 1.60318,0.66799 c 0.5189,0.14715 1.01844,0.22073 1.49862,0.22073 c 0.48792,0 0.8616,-0.0813 1.12106,-0.24396 c 0.25945,-0.16264 0.38917,-0.39499 0.38918,-0.69704 c -1e-5,-0.27106 -0.0891,-0.48017 -0.2672,-0.62733 c -0.17426,-0.14714 -0.52471,-0.27881 -1.05136,-0.39498 l -0.86548,-0.19169 c -0.86742,-0.18587 -1.50249,-0.48211 -1.90522,-0.88871 c -0.39886,-0.4066 -0.59829,-0.95454 -0.59829,-1.64384 c 0,-0.86354 0.27881,-1.52765 0.83644,-1.99235 c 0.55763,-0.46468 1.35921,-0.69702 2.40476,-0.69703 c 0.4763,10e-6 0.96616,0.0368 1.46958,0.11036 c 0.50341,0.0697 1.02424,0.17621 1.56252,0.31948"
|
||||
d="M -317.14674,-437.8563 L -317.14674,-436.02078 C -317.62306,-436.23376 -318.08774,-436.39446 -318.54081,-436.5029 C -318.99389,-436.61132 -319.42179,-436.66553 -319.82451,-436.66554 C -320.35891,-436.66553 -320.75389,-436.59194 -321.00947,-436.44481 C -321.26505,-436.29765 -321.39284,-436.06918 -321.39283,-435.7594 C -321.39284,-435.52705 -321.30763,-435.34504 -321.13726,-435.21339 C -320.963,-435.08559 -320.64934,-434.97523 -320.19626,-434.8823 L -319.24365,-434.69061 C -318.27943,-434.49699 -317.59401,-434.20269 -317.1874,-433.80771 C -316.78081,-433.41272 -316.57751,-432.85122 -316.5775,-432.12321 C -316.57751,-431.16673 -316.86213,-430.4542 -317.43137,-429.98564 C -317.99674,-429.52096 -318.86222,-429.28861 -320.02781,-429.28861 C -320.5777,-429.28861 -321.12951,-429.34091 -321.68326,-429.44544 C -322.23702,-429.55 -322.79077,-429.7049 -323.34453,-429.91013 L -323.34453,-431.79793 C -322.79077,-431.50362 -322.25638,-431.28096 -321.74135,-431.12994 C -321.22245,-430.98279 -320.72291,-430.90921 -320.24273,-430.90921 C -319.75481,-430.90921 -319.38113,-430.99051 -319.12167,-431.15317 C -318.86222,-431.31581 -318.7325,-431.54816 -318.73249,-431.85021 C -318.7325,-432.12127 -318.82159,-432.33038 -318.99969,-432.47754 C -319.17395,-432.62468 -319.5244,-432.75635 -320.05105,-432.87252 L -320.91653,-433.06421 C -321.78395,-433.25008 -322.41902,-433.54632 -322.82175,-433.95292 C -323.22061,-434.35952 -323.42004,-434.90746 -323.42004,-435.59676 C -323.42004,-436.4603 -323.14123,-437.12441 -322.5836,-437.58911 C -322.02597,-438.05379 -321.22439,-438.28613 -320.17884,-438.28614 C -319.70254,-438.28613 -319.21268,-438.24934 -318.70926,-438.17578 C -318.20585,-438.10608 -317.68502,-437.99957 -317.14674,-437.8563"
|
||||
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
|
||||
id="path6256"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4549,12 +5575,12 @@
|
||||
style="font-size:33.9886322px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="compass150">
|
||||
<path
|
||||
d="m -97.205015,-540.59659 l 1.91684,0 l 0,-6.616 l -2.085289,0.41822 l 0,-1.06879 l 2.073672,-0.41822 l 1.173338,0 l 0,7.68479 l 1.916839,0 l 0,0.98746 l -4.9954,0 l 0,-0.98746"
|
||||
d="M -97.205015,-540.59659 L -95.288175,-540.59659 L -95.288175,-547.21259 L -97.373464,-546.79437 L -97.373464,-547.86316 L -95.299792,-548.28138 L -94.126454,-548.28138 L -94.126454,-540.59659 L -92.209615,-540.59659 L -92.209615,-539.60913 L -97.205015,-539.60913 L -97.205015,-540.59659"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6251"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -89.822279,-548.28138 l 4.606224,0 l 0,0.98747 l -3.531632,0 l 0,2.12594 c 0.170383,-0.0581 0.340769,-0.10067 0.511157,-0.12778 c 0.170383,-0.031 0.340769,-0.0465 0.511158,-0.0465 c 0.968096,0 1.734831,0.26526 2.300207,0.79578 c 0.565365,0.53052 0.84805,1.24885 0.848056,2.15499 c -6e-6,0.93325 -0.290436,1.65932 -0.87129,2.17822 c -0.580866,0.51503 -1.399878,0.77255 -2.45704,0.77255 c -0.364009,0 -0.735759,-0.031 -1.115252,-0.0929 c -0.375625,-0.062 -0.764801,-0.1549 -1.16753,-0.27881 l 0,-1.17915 c 0.348515,0.18975 0.708649,0.33109 1.080401,0.42403 c 0.371748,0.0929 0.764797,0.13941 1.179147,0.13941 c 0.669921,0 1.20044,-0.1762 1.591557,-0.52859 c 0.391108,-0.35238 0.586664,-0.83063 0.586669,-1.43472 c -5e-6,-0.60409 -0.195561,-1.08234 -0.586669,-1.43473 c -0.391117,-0.35238 -0.921636,-0.52858 -1.591557,-0.52858 c -0.313668,0 -0.627332,0.0349 -0.940994,0.10455 c -0.309795,0.0697 -0.627331,0.17814 -0.952612,0.32529 l 0,-4.35646"
|
||||
d="M -89.822279,-548.28138 L -85.216055,-548.28138 L -85.216055,-547.29391 L -88.747687,-547.29391 L -88.747687,-545.16797 C -88.577304,-545.22607 -88.406918,-545.26864 -88.23653,-545.29575 C -88.066147,-545.32675 -87.895761,-545.34225 -87.725372,-545.34225 C -86.757276,-545.34225 -85.990541,-545.07699 -85.425165,-544.54647 C -84.8598,-544.01595 -84.577115,-543.29762 -84.577109,-542.39148 C -84.577115,-541.45823 -84.867545,-540.73216 -85.448399,-540.21326 C -86.029265,-539.69823 -86.848277,-539.44071 -87.905439,-539.44071 C -88.269448,-539.44071 -88.641198,-539.47171 -89.020691,-539.53361 C -89.396316,-539.59561 -89.785492,-539.68851 -90.188221,-539.81242 L -90.188221,-540.99157 C -89.839706,-540.80182 -89.479572,-540.66048 -89.10782,-540.56754 C -88.736072,-540.47464 -88.343023,-540.42813 -87.928673,-540.42813 C -87.258752,-540.42813 -86.728233,-540.60433 -86.337116,-540.95672 C -85.946008,-541.3091 -85.750452,-541.78735 -85.750447,-542.39144 C -85.750452,-542.99553 -85.946008,-543.47378 -86.337116,-543.82617 C -86.728233,-544.17855 -87.258752,-544.35475 -87.928673,-544.35475 C -88.242341,-544.35475 -88.556005,-544.31985 -88.869667,-544.2502 C -89.179462,-544.1805 -89.496998,-544.07206 -89.822279,-543.92491 L -89.822279,-548.28137"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6253"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4567,12 +5593,12 @@
|
||||
id="compass120"
|
||||
inkscape:label="#compass120">
|
||||
<path
|
||||
d="m 156.08793,-521.55051 l 1.91684,0 l 0,-6.616 l -2.08529,0.41822 l 0,-1.06879 l 2.07367,-0.41822 l 1.17334,0 l 0,7.68479 l 1.91684,0 l 0,0.98746 l -4.9954,0 l 0,-0.98746"
|
||||
d="M 156.08793,-521.55051 L 158.00477,-521.55051 L 158.00477,-528.16651 L 155.91948,-527.74829 L 155.91948,-528.81708 L 157.99315,-529.2353 L 159.16649,-529.2353 L 159.16649,-521.55051 L 161.08333,-521.55051 L 161.08333,-520.56305 L 156.08793,-520.56305 L 156.08793,-521.55051"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6246"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 164.46975,-521.55051 l 4.09506,0 l 0,0.98746 l -5.50655,0 l 0,-0.98746 c 0.44532,-0.46082 1.05135,-1.07846 1.81809,-1.85295 c 0.7706,-0.77835 1.25465,-1.27982 1.45215,-1.50443 c 0.37562,-0.42208 0.63701,-0.77834 0.78416,-1.06878 c 0.15102,-0.2943 0.22653,-0.58279 0.22654,-0.86548 c -1e-5,-0.46081 -0.16265,-0.83643 -0.48792,-1.12687 c -0.32142,-0.29042 -0.74157,-0.43564 -1.26047,-0.43565 c -0.36788,10e-6 -0.75706,0.0639 -1.16753,0.19169 c -0.40661,0.1278 -0.84225,0.32142 -1.30694,0.58086 l 0,-1.18496 c 0.47243,-0.18974 0.91389,-0.33301 1.32436,-0.42983 c 0.41048,-0.0968 0.7861,-0.14521 1.12687,-0.14522 c 0.8984,10e-6 1.61479,0.22461 2.14919,0.6738 c 0.53438,0.44921 0.80158,1.04943 0.80158,1.80067 c 0,0.35626 -0.0678,0.6951 -0.2033,1.0165 c -0.13166,0.31755 -0.37369,0.69317 -0.72607,1.12687 c -0.0968,0.11231 -0.40467,0.43759 -0.92357,0.97585 c -0.51891,0.53439 -1.25079,1.2837 -2.19565,2.24793"
|
||||
d="M 164.46975,-521.55051 L 168.56481,-521.55051 L 168.56481,-520.56305 L 163.05826,-520.56305 L 163.05826,-521.55051 C 163.50358,-522.01133 164.10961,-522.62897 164.87635,-523.40346 C 165.64695,-524.18181 166.131,-524.68328 166.3285,-524.90789 C 166.70412,-525.32997 166.96551,-525.68623 167.11266,-525.97667 C 167.26368,-526.27097 167.33919,-526.55946 167.3392,-526.84215 C 167.33919,-527.30296 167.17655,-527.67858 166.85128,-527.96902 C 166.52986,-528.25944 166.10971,-528.40466 165.59081,-528.40467 C 165.22293,-528.40466 164.83375,-528.34077 164.42328,-528.21298 C 164.01667,-528.08518 163.58103,-527.89156 163.11634,-527.63212 L 163.11634,-528.81708 C 163.58877,-529.00682 164.03023,-529.15009 164.4407,-529.24691 C 164.85118,-529.34371 165.2268,-529.39212 165.56757,-529.39213 C 166.46597,-529.39212 167.18236,-529.16752 167.71676,-528.71833 C 168.25114,-528.26912 168.51834,-527.6689 168.51834,-526.91766 C 168.51834,-526.5614 168.45054,-526.22256 168.31504,-525.90116 C 168.18338,-525.58361 167.94135,-525.20799 167.58897,-524.77429 C 167.49217,-524.66198 167.1843,-524.3367 166.6654,-523.79844 C 166.14649,-523.26405 165.41461,-522.51474 164.46975,-521.55051"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6248"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4584,7 +5610,7 @@
|
||||
id="compass90"
|
||||
inkscape:label="#compass90">
|
||||
<path
|
||||
d="m 369.04806,-386.0944 l 6.03514,0 l 0,1.69031 l -3.79883,0 l 0,1.61479 l 3.57229,0 l 0,1.6903 l -3.57229,0 l 0,1.98655 l 3.92662,0 l 0,1.6903 l -6.16293,0 l 0,-8.67225"
|
||||
d="M 369.04806,-386.0944 L 375.0832,-386.0944 L 375.0832,-384.40409 L 371.28437,-384.40409 L 371.28437,-382.7893 L 374.85666,-382.7893 L 374.85666,-381.099 L 371.28437,-381.099 L 371.28437,-379.11245 L 375.21099,-379.11245 L 375.21099,-377.42215 L 369.04806,-377.42215 L 369.04806,-386.0944"
|
||||
style="font-size:11.89602184px;font-weight:bold;text-align:center;text-anchor:middle;fill:#ffffff;-inkscape-font-specification:Sans Bold"
|
||||
id="path6243"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4596,7 +5622,7 @@
|
||||
style="font-size:33.9886322px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
|
||||
id="compass60">
|
||||
<path
|
||||
d="m 482.31357,-153.34469 c -0.52665,1e-5 -0.94487,0.18008 -1.25466,0.5402 c -0.30592,0.36014 -0.45888,0.85387 -0.45888,1.4812 c 0,0.62346 0.15296,1.11719 0.45888,1.48119 c 0.30979,0.36014 0.72801,0.5402 1.25466,0.5402 c 0.52664,0 0.94293,-0.18006 1.24885,-0.5402 c 0.30979,-0.364 0.46468,-0.85773 0.46469,-1.48119 c -10e-6,-0.62733 -0.1549,-1.12106 -0.46469,-1.4812 c -0.30592,-0.36012 -0.72221,-0.54019 -1.24885,-0.5402 m 2.32925,-3.67684 l 0,1.06878 c -0.29431,-0.1394 -0.59248,-0.24589 -0.89452,-0.31947 c -0.29818,-0.0736 -0.59442,-0.11036 -0.88872,-0.11037 c -0.77449,1e-5 -1.36696,0.2614 -1.77743,0.78417 c -0.40661,0.52278 -0.63895,1.31275 -0.69704,2.36991 c 0.22847,-0.3369 0.51503,-0.59441 0.85968,-0.77255 c 0.34464,-0.182 0.72413,-0.273 1.13848,-0.273 c 0.87129,0 1.55864,0.26526 2.06206,0.79578 c 0.50728,0.52665 0.76092,1.24498 0.76093,2.15499 c -10e-6,0.89065 -0.26333,1.60511 -0.78997,2.14337 c -0.52666,0.53827 -1.22756,0.8074 -2.10272,0.8074 c -1.00295,0 -1.76969,-0.38337 -2.30021,-1.1501 c -0.53052,-0.77061 -0.79578,-1.88586 -0.79578,-3.34576 c 0,-1.37083 0.32528,-2.46284 0.97585,-3.27605 c 0.65056,-0.81707 1.52379,-1.22561 2.61968,-1.22562 c 0.2943,1e-5 0.59054,0.029 0.88872,0.0871 c 0.30204,0.0581 0.6157,0.14522 0.94099,0.26139"
|
||||
d="M 482.31357,-153.34469 C 481.78692,-153.34468 481.3687,-153.16461 481.05891,-152.80449 C 480.75299,-152.44435 480.60003,-151.95062 480.60003,-151.32329 C 480.60003,-150.69983 480.75299,-150.2061 481.05891,-149.8421 C 481.3687,-149.48196 481.78692,-149.3019 482.31357,-149.3019 C 482.84021,-149.3019 483.2565,-149.48196 483.56242,-149.8421 C 483.87221,-150.2061 484.0271,-150.69983 484.02711,-151.32329 C 484.0271,-151.95062 483.87221,-152.44435 483.56242,-152.80449 C 483.2565,-153.16461 482.84021,-153.34468 482.31357,-153.34469 M 484.64282,-157.02153 L 484.64282,-155.95275 C 484.34851,-156.09215 484.05034,-156.19864 483.7483,-156.27222 C 483.45012,-156.34582 483.15388,-156.38258 482.85958,-156.38259 C 482.08509,-156.38258 481.49262,-156.12119 481.08215,-155.59842 C 480.67554,-155.07564 480.4432,-154.28567 480.38511,-153.22851 C 480.61358,-153.56541 480.90014,-153.82292 481.24479,-154.00106 C 481.58943,-154.18306 481.96892,-154.27406 482.38327,-154.27406 C 483.25456,-154.27406 483.94191,-154.0088 484.44533,-153.47828 C 484.95261,-152.95163 485.20625,-152.2333 485.20626,-151.32329 C 485.20625,-150.43264 484.94293,-149.71818 484.41629,-149.17992 C 483.88963,-148.64165 483.18873,-148.37252 482.31357,-148.37252 C 481.31062,-148.37252 480.54388,-148.75589 480.01336,-149.52262 C 479.48284,-150.29323 479.21758,-151.40848 479.21758,-152.86838 C 479.21758,-154.23921 479.54286,-155.33122 480.19343,-156.14443 C 480.84399,-156.9615 481.71722,-157.37004 482.81311,-157.37005 C 483.10741,-157.37004 483.40365,-157.34105 483.70183,-157.28295 C 484.00387,-157.22485 484.31753,-157.13773 484.64282,-157.02156"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6240"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4609,7 +5635,7 @@
|
||||
id="compass30"
|
||||
inkscape:label="#compass-30">
|
||||
<path
|
||||
d="m 464.16779,100.07606 c 0.56149,0.12005 0.99908,0.36982 1.31275,0.74931 c 0.31753,0.3795 0.4763,0.84806 0.4763,1.40568 c 0,0.8558 -0.29431,1.51798 -0.88291,1.98654 c -0.58861,0.46856 -1.42504,0.70284 -2.50931,0.70284 c -0.36401,0 -0.73963,-0.0368 -1.12687,-0.11036 c -0.38337,-0.0697 -0.78029,-0.17619 -1.19077,-0.31947 l 0,-1.13268 c 0.32528,0.18975 0.68155,0.33303 1.06879,0.42984 c 0.38724,0.0968 0.7919,0.14521 1.214,0.14521 c 0.73575,0 1.29531,-0.14521 1.67868,-0.43564 c 0.38724,-0.29043 0.58086,-0.71253 0.58086,-1.26628 c 0,-0.51115 -0.18007,-0.91001 -0.5402,-1.19657 c -0.35626,-0.29043 -0.85387,-0.43564 -1.49281,-0.43565 l -1.0107,0 l 0,-0.964227 l 1.05717,0 c 0.57698,5e-6 1.01844,-0.114231 1.32436,-0.342708 c 0.30592,-0.232338 0.45888,-0.565364 0.45888,-0.999079 c 0,-0.44532 -0.15877,-0.786091 -0.4763,-1.022315 c -0.31367,-0.240081 -0.76481,-0.360125 -1.35341,-0.360133 c -0.32141,8e-6 -0.66605,0.03486 -1.03393,0.104555 c -0.36788,0.06971 -0.77255,0.178138 -1.214,0.325281 l 0,-1.045548 c 0.44533,-0.123909 0.86161,-0.216846 1.24885,-0.278813 c 0.39111,-0.06195 0.75899,-0.09293 1.10364,-0.09294 c 0.89064,9e-6 1.59542,0.20331 2.11433,0.609903 c 0.51889,0.402738 0.77834,0.948746 0.77835,1.638027 c -10e-6,0.480184 -0.13748,0.886786 -0.41241,1.219807 c -0.27495,0.329159 -0.66606,0.557631 -1.17334,0.68542"
|
||||
d="M 464.16779,100.07606 C 464.72928,100.19611 465.16687,100.44588 465.48054,100.82537 C 465.79807,101.20487 465.95684,101.67343 465.95684,102.23105 C 465.95684,103.08685 465.66253,103.74903 465.07393,104.21759 C 464.48532,104.68615 463.64889,104.92043 462.56462,104.92043 C 462.20061,104.92043 461.82499,104.88363 461.43775,104.81007 C 461.05438,104.74037 460.65746,104.63388 460.24698,104.4906 L 460.24698,103.35792 C 460.57226,103.54767 460.92853,103.69095 461.31577,103.78776 C 461.70301,103.88456 462.10767,103.93297 462.52977,103.93297 C 463.26552,103.93297 463.82508,103.78776 464.20845,103.49733 C 464.59569,103.2069 464.78931,102.7848 464.78931,102.23105 C 464.78931,101.7199 464.60924,101.32104 464.24911,101.03448 C 463.89285,100.74405 463.39524,100.59884 462.7563,100.59883 L 461.7456,100.59883 L 461.7456,99.634603 L 462.80277,99.634603 C 463.37975,99.634608 463.82121,99.520372 464.12713,99.291895 C 464.43305,99.059557 464.58601,98.726531 464.58601,98.292816 C 464.58601,97.847496 464.42724,97.506725 464.10971,97.270501 C 463.79604,97.03042 463.3449,96.910376 462.7563,96.910368 C 462.43489,96.910376 462.09025,96.945228 461.72237,97.014923 C 461.35449,97.084633 460.94982,97.193061 460.50837,97.340204 L 460.50837,96.294656 C 460.9537,96.170747 461.36998,96.07781 461.75722,96.015843 C 462.14833,95.953893 462.51621,95.922913 462.86086,95.922903 C 463.7515,95.922912 464.45628,96.126213 464.97519,96.532806 C 465.49408,96.935544 465.75353,97.481552 465.75354,98.170833 C 465.75353,98.651017 465.61606,99.057619 465.34113,99.39064 C 465.06618,99.719799 464.67507,99.948271 464.16779,100.07606"
|
||||
style="font-size:11.89602184px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6237"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4629,7 +5655,7 @@
|
||||
inkscape:label="#g4651">
|
||||
<path
|
||||
style="fill:#008000;fill-opacity:1;stroke:none"
|
||||
d="m 319.99619,305.5318 l -8.52371,8.73614 l 6.87739,-0.0531 l -4.3e-4,27.16436 l 3.29307,0 l 0,-27.16436 l 6.85084,0.0531 z"
|
||||
d="M 319.99619,305.5318 L 311.47248,314.26794 L 318.34987,314.21484 L 318.34944,341.3792 L 321.64251,341.3792 L 321.64251,314.21484 L 328.49335,314.26794 z"
|
||||
id="path4653"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
@ -4657,11 +5683,11 @@
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5472"
|
||||
d="m 319.99619,305.5318 l -8.52371,8.73614 l 6.87739,-0.0531 l -4.3e-4,27.16436 l 3.29307,0 l 0,-27.16436 l 6.85084,0.0531 z"
|
||||
d="M 319.99619,305.5318 L 311.47248,314.26794 L 318.34987,314.21484 L 318.34944,341.3792 L 321.64251,341.3792 L 321.64251,314.21484 L 328.49335,314.26794 z"
|
||||
style="fill:#bf00bf;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
style="fill:#bf00bf;fill-opacity:1;stroke:none"
|
||||
d="m 319.99619,402.73825 l -8.52371,8.73614 l 6.87739,-0.0531 l -4.3e-4,27.16436 l 3.29307,0 l 0,-27.16436 l 6.85084,0.0531 z"
|
||||
d="M 319.99619,402.73825 L 311.47248,411.47439 L 318.34987,411.42129 L 318.34944,438.58565 L 321.64251,438.58565 L 321.64251,411.42129 L 328.49335,411.47439 z"
|
||||
id="path4628"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc" />
|
||||
@ -4678,17 +5704,17 @@
|
||||
id="compass-text"
|
||||
transform="translate(0,78)">
|
||||
<path
|
||||
d="m 311.31955,276.77926 c -0.6904,10e-6 -1.21041,0.34078 -1.56003,1.02232 c -0.3452,0.67712 -0.5178,1.69722 -0.51779,3.0603 c -1e-5,1.35867 0.17259,2.37877 0.51779,3.06031 c 0.34962,0.67712 0.86963,1.01567 1.56003,1.01567 c 0.69481,0 1.21482,-0.33855 1.56002,-1.01567 c 0.34962,-0.68154 0.52443,-1.70164 0.52444,-3.06031 c -1e-5,-1.36308 -0.17482,-2.38318 -0.52444,-3.0603 c -0.3452,-0.68154 -0.86521,-1.02231 -1.56002,-1.02232 m 0,-1.06214 c 1.11082,10e-6 1.95832,0.44036 2.54251,1.32104 c 0.58859,0.87628 0.8829,2.15085 0.8829,3.82372 c 0,1.66846 -0.29431,2.94303 -0.8829,3.82372 c -0.58419,0.87627 -1.43169,1.31441 -2.54251,1.31441 c -1.11083,0 -1.96055,-0.43814 -2.54915,-1.31441 c -0.58418,-0.88069 -0.87627,-2.15526 -0.87627,-3.82372 c 0,-1.67287 0.29209,-2.94744 0.87627,-3.82372 c 0.5886,-0.88068 1.43832,-1.32103 2.54915,-1.32104"
|
||||
d="M 311.31955,276.77926 C 310.62915,276.77927 310.10914,277.12004 309.75952,277.80158 C 309.41432,278.4787 309.24172,279.4988 309.24173,280.86188 C 309.24172,282.22055 309.41432,283.24065 309.75952,283.92219 C 310.10914,284.59931 310.62915,284.93786 311.31955,284.93786 C 312.01436,284.93786 312.53437,284.59931 312.87957,283.92219 C 313.22919,283.24065 313.404,282.22055 313.40401,280.86188 C 313.404,279.4988 313.22919,278.4787 312.87957,277.80158 C 312.53437,277.12004 312.01436,276.77927 311.31955,276.77926 M 311.31955,275.71712 C 312.43037,275.71713 313.27787,276.15748 313.86206,277.03816 C 314.45065,277.91444 314.74496,279.18901 314.74496,280.86188 C 314.74496,282.53034 314.45065,283.80491 313.86206,284.6856 C 313.27787,285.56187 312.43037,286.00001 311.31955,286.00001 C 310.20872,286.00001 309.359,285.56187 308.7704,284.6856 C 308.18622,283.80491 307.89413,282.53034 307.89413,280.86188 C 307.89413,279.18901 308.18622,277.91444 308.7704,277.03816 C 309.359,276.15748 310.20872,275.71713 311.31955,275.71712"
|
||||
style="font-size:13.59545326px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6227"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 319.97603,276.77926 c -0.6904,10e-6 -1.21041,0.34078 -1.56003,1.02232 c -0.3452,0.67712 -0.5178,1.69722 -0.51779,3.0603 c -1e-5,1.35867 0.17259,2.37877 0.51779,3.06031 c 0.34962,0.67712 0.86963,1.01567 1.56003,1.01567 c 0.69481,0 1.21482,-0.33855 1.56002,-1.01567 c 0.34962,-0.68154 0.52443,-1.70164 0.52444,-3.06031 c -1e-5,-1.36308 -0.17482,-2.38318 -0.52444,-3.0603 c -0.3452,-0.68154 -0.86521,-1.02231 -1.56002,-1.02232 m 0,-1.06214 c 1.11082,10e-6 1.95832,0.44036 2.54251,1.32104 c 0.58859,0.87628 0.8829,2.15085 0.8829,3.82372 c 0,1.66846 -0.29431,2.94303 -0.8829,3.82372 c -0.58419,0.87627 -1.43169,1.31441 -2.54251,1.31441 c -1.11083,0 -1.96055,-0.43814 -2.54915,-1.31441 c -0.58418,-0.88069 -0.87627,-2.15526 -0.87627,-3.82372 c 0,-1.67287 0.29209,-2.94744 0.87627,-3.82372 c 0.5886,-0.88068 1.43832,-1.32103 2.54915,-1.32104"
|
||||
d="M 319.97603,276.77926 C 319.28563,276.77927 318.76562,277.12004 318.416,277.80158 C 318.0708,278.4787 317.8982,279.4988 317.89821,280.86188 C 317.8982,282.22055 318.0708,283.24065 318.416,283.92219 C 318.76562,284.59931 319.28563,284.93786 319.97603,284.93786 C 320.67084,284.93786 321.19085,284.59931 321.53605,283.92219 C 321.88567,283.24065 322.06048,282.22055 322.06049,280.86188 C 322.06048,279.4988 321.88567,278.4787 321.53605,277.80158 C 321.19085,277.12004 320.67084,276.77927 319.97603,276.77926 M 319.97603,275.71712 C 321.08685,275.71713 321.93435,276.15748 322.51854,277.03816 C 323.10713,277.91444 323.40144,279.18901 323.40144,280.86188 C 323.40144,282.53034 323.10713,283.80491 322.51854,284.6856 C 321.93435,285.56187 321.08685,286.00001 319.97603,286.00001 C 318.8652,286.00001 318.01548,285.56187 317.42688,284.6856 C 316.8427,283.80491 316.55061,282.53034 316.55061,280.86188 C 316.55061,279.18901 316.8427,277.91444 317.42688,277.03816 C 318.01548,276.15748 318.8652,275.71713 319.97603,275.71712"
|
||||
style="font-size:13.59545326px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6229"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 328.63251,276.77926 c -0.6904,10e-6 -1.21041,0.34078 -1.56003,1.02232 c -0.3452,0.67712 -0.5178,1.69722 -0.51779,3.0603 c -10e-6,1.35867 0.17259,2.37877 0.51779,3.06031 c 0.34962,0.67712 0.86963,1.01567 1.56003,1.01567 c 0.69481,0 1.21482,-0.33855 1.56002,-1.01567 c 0.34962,-0.68154 0.52443,-1.70164 0.52444,-3.06031 c -1e-5,-1.36308 -0.17482,-2.38318 -0.52444,-3.0603 c -0.3452,-0.68154 -0.86521,-1.02231 -1.56002,-1.02232 m 0,-1.06214 c 1.11082,10e-6 1.95832,0.44036 2.54251,1.32104 c 0.58859,0.87628 0.8829,2.15085 0.8829,3.82372 c 0,1.66846 -0.29431,2.94303 -0.8829,3.82372 c -0.58419,0.87627 -1.43169,1.31441 -2.54251,1.31441 c -1.11083,0 -1.96055,-0.43814 -2.54915,-1.31441 c -0.58418,-0.88069 -0.87627,-2.15526 -0.87627,-3.82372 c 0,-1.67287 0.29209,-2.94744 0.87627,-3.82372 c 0.5886,-0.88068 1.43832,-1.32103 2.54915,-1.32104"
|
||||
d="M 328.63251,276.77926 C 327.94211,276.77927 327.4221,277.12004 327.07248,277.80158 C 326.72728,278.4787 326.55468,279.4988 326.55469,280.86188 C 326.55468,282.22055 326.72728,283.24065 327.07248,283.92219 C 327.4221,284.59931 327.94211,284.93786 328.63251,284.93786 C 329.32732,284.93786 329.84733,284.59931 330.19253,283.92219 C 330.54215,283.24065 330.71696,282.22055 330.71697,280.86188 C 330.71696,279.4988 330.54215,278.4787 330.19253,277.80158 C 329.84733,277.12004 329.32732,276.77927 328.63251,276.77926 M 328.63251,275.71712 C 329.74333,275.71713 330.59083,276.15748 331.17502,277.03816 C 331.76361,277.91444 332.05792,279.18901 332.05792,280.86188 C 332.05792,282.53034 331.76361,283.80491 331.17502,284.6856 C 330.59083,285.56187 329.74333,286.00001 328.63251,286.00001 C 327.52168,286.00001 326.67196,285.56187 326.08336,284.6856 C 325.49918,283.80491 325.20709,282.53034 325.20709,280.86188 C 325.20709,279.18901 325.49918,277.91444 326.08336,277.03816 C 326.67196,276.15748 327.52168,275.71713 328.63251,275.71712"
|
||||
style="font-size:13.59545326px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="path6231"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4707,13 +5733,13 @@
|
||||
inkscape:transform-center-y="-72.71875"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4626"
|
||||
d="m 320,372.78125 l -3.78125,4.5 l 3.78125,4.5 l 3.78125,-4.5 l -3.78125,-4.5 z"
|
||||
d="M 320,372.78125 L 316.21875,377.28125 L 320,381.78125 L 323.78125,377.28125 L 320,372.78125 z"
|
||||
style="fill:#00ffff;stroke:none" />
|
||||
<path
|
||||
transform="translate(0,4)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3849"
|
||||
d="m 320,377.78125 l -0.0171,68.20098"
|
||||
d="M 320,377.78125 L 319.9829,445.98223"
|
||||
style="fill:none;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
@ -4725,7 +5751,7 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="compass-plane"
|
||||
d="m 319.99619,439.71926 l -2.20395,1.77909 l 0,4.59378 l -8.44405,3.08022 l 0.0265,2.12429 l 8.55027,0 l -0.0796,4.72654 l -2.49604,2.07118 l 0.0531,2.15085 l 4.59378,-0.0796 l 4.56722,0.0796 l 0.0531,-2.15085 l -2.46949,-2.07118 l -0.10621,-4.72654 l 8.55026,0 l 0.0265,-2.12429 l -8.44406,-3.08022 l 0,-4.59378 l -2.17735,-1.77909 z"
|
||||
d="M 319.99619,439.71926 L 317.79224,441.49835 L 317.79224,446.09213 L 309.34819,449.17235 L 309.37469,451.29664 L 317.92496,451.29664 L 317.84536,456.02318 L 315.34932,458.09436 L 315.40242,460.24521 L 319.9962,460.16561 L 324.56342,460.24521 L 324.61652,458.09436 L 322.14703,456.02318 L 322.04082,451.29664 L 330.59108,451.29664 L 330.61758,449.17235 L 322.17352,446.09213 L 322.17352,441.49835 L 319.99617,439.71926 z"
|
||||
style="fill:#ffffff;stroke:none;display:inline"
|
||||
inkscape:label="#path5448" />
|
||||
</g>
|
||||
@ -4734,7 +5760,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer17"
|
||||
inkscape:label="speed"
|
||||
style="display:none"
|
||||
style="display:inline"
|
||||
transform="translate(0,-4)"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
@ -4748,17 +5774,17 @@
|
||||
id="speed-unit"
|
||||
transform="translate(0,42)">
|
||||
<path
|
||||
d="m 134.60681,290.91187 c 0.22461,-0.40365 0.49316,-0.7015 0.80567,-0.89356 c 0.31249,-0.19205 0.68033,-0.28808 1.10351,-0.28809 c 0.56965,1e-5 1.00911,0.20021 1.31836,0.60059 c 0.30924,0.39714 0.46386,0.96355 0.46387,1.69922 l 0,3.30078 l -0.90332,0 l 0,-3.27148 c -1e-5,-0.52409 -0.0928,-0.91309 -0.27832,-1.167 c -0.18556,-0.2539 -0.46876,-0.38085 -0.84961,-0.38086 c -0.4655,1e-5 -0.83334,0.15463 -1.10352,0.46387 c -0.27019,0.30925 -0.40528,0.7308 -0.40527,1.26465 l 0,3.09082 l -0.90332,0 l 0,-3.27148 c -1e-5,-0.52734 -0.0928,-0.91634 -0.27832,-1.167 c -0.18555,-0.2539 -0.47201,-0.38085 -0.85938,-0.38086 c -0.45898,1e-5 -0.82357,0.15626 -1.09375,0.46875 c -0.27018,0.30925 -0.40527,0.72917 -0.40527,1.25977 l 0,3.09082 l -0.90332,0 l 0,-5.46875 l 0.90332,0 l 0,0.84961 c 0.20508,-0.33528 0.45084,-0.58268 0.7373,-0.74219 c 0.28646,-0.1595 0.62663,-0.23925 1.02051,-0.23926 c 0.39713,1e-5 0.73405,0.10092 1.01074,0.30274 c 0.27995,0.20183 0.48665,0.4948 0.62012,0.87891"
|
||||
d="M 134.60681,290.91187 C 134.83142,290.50822 135.09997,290.21037 135.41248,290.01831 C 135.72497,289.82626 136.09281,289.73023 136.51599,289.73022 C 137.08564,289.73023 137.5251,289.93043 137.83435,290.33081 C 138.14359,290.72795 138.29821,291.29436 138.29822,292.03003 L 138.29822,295.33081 L 137.3949,295.33081 L 137.3949,292.05933 C 137.39489,291.53524 137.3021,291.14624 137.11658,290.89233 C 136.93102,290.63843 136.64782,290.51148 136.26697,290.51147 C 135.80147,290.51148 135.43363,290.6661 135.16345,290.97534 C 134.89326,291.28459 134.75817,291.70614 134.75818,292.23999 L 134.75818,295.33081 L 133.85486,295.33081 L 133.85486,292.05933 C 133.85485,291.53199 133.76206,291.14299 133.57654,290.89233 C 133.39099,290.63843 133.10453,290.51148 132.71716,290.51147 C 132.25818,290.51148 131.89359,290.66773 131.62341,290.98022 C 131.35323,291.28947 131.21814,291.70939 131.21814,292.23999 L 131.21814,295.33081 L 130.31482,295.33081 L 130.31482,289.86206 L 131.21814,289.86206 L 131.21814,290.71167 C 131.42322,290.37639 131.66898,290.12899 131.95544,289.96948 C 132.2419,289.80998 132.58207,289.73023 132.97595,289.73022 C 133.37308,289.73023 133.71,289.83114 133.98669,290.03296 C 134.26664,290.23479 134.47334,290.52776 134.60681,290.91187"
|
||||
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
|
||||
id="path6208"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 141.69177,288.04077 l 0.83008,0 l -2.53906,8.21777 l -0.83008,0 l 2.53906,-8.21777"
|
||||
d="M 141.69177,288.04077 L 142.52185,288.04077 L 139.98279,296.25854 L 139.15271,296.25854 L 141.69177,288.04077"
|
||||
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
|
||||
id="path6210"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 146.96033,290.02319 l 0,0.84961 c -0.25391,-0.1302 -0.51758,-0.22786 -0.79102,-0.29297 c -0.27344,-0.0651 -0.55664,-0.0976 -0.84961,-0.0976 c -0.44596,0 -0.78125,0.0684 -1.00586,0.20508 c -0.22135,0.13672 -0.33203,0.3418 -0.33203,0.61523 c 0,0.20834 0.0797,0.37273 0.23926,0.49316 c 0.1595,0.1172 0.48014,0.2295 0.96191,0.33692 l 0.30762,0.0684 c 0.63802,0.13672 1.09049,0.3304 1.35742,0.58105 c 0.27018,0.2474 0.40527,0.59408 0.40528,1.04004 c -1e-5,0.50781 -0.20183,0.90983 -0.60547,1.20606 c -0.4004,0.29622 -0.95215,0.44433 -1.65528,0.44433 c -0.29297,0 -0.59896,-0.0293 -0.91797,-0.0879 c -0.31575,-0.0553 -0.64941,-0.13997 -1.00097,-0.2539 l 0,-0.92774 c 0.33203,0.17253 0.65918,0.30274 0.98144,0.39063 c 0.32227,0.0846 0.64128,0.12695 0.95703,0.12695 c 0.42318,0 0.7487,-0.0716 0.97657,-0.21484 c 0.22786,-0.14649 0.34179,-0.35157 0.34179,-0.61524 c 0,-0.24414 -0.083,-0.43131 -0.24902,-0.56152 c -0.16276,-0.13021 -0.52246,-0.25553 -1.0791,-0.37598 l -0.3125,-0.0732 c -0.55664,-0.11719 -0.95866,-0.29622 -1.20606,-0.53711 c -0.24739,-0.24414 -0.37109,-0.5778 -0.37109,-1.00098 c 0,-0.51432 0.18229,-0.91145 0.54688,-1.1914 c 0.36458,-0.27995 0.88216,-0.41992 1.55273,-0.41993 c 0.33203,10e-6 0.64453,0.0244 0.9375,0.0733 c 0.29297,0.0488 0.56315,0.12207 0.81055,0.21972"
|
||||
d="M 146.96033,290.02319 L 146.96033,290.8728 C 146.70642,290.7426 146.44275,290.64494 146.16931,290.57983 C 145.89587,290.51473 145.61267,290.48223 145.3197,290.48223 C 144.87374,290.48223 144.53845,290.55063 144.31384,290.68731 C 144.09249,290.82403 143.98181,291.02911 143.98181,291.30254 C 143.98181,291.51088 144.06151,291.67527 144.22107,291.7957 C 144.38057,291.9129 144.70121,292.0252 145.18298,292.13262 L 145.4906,292.20102 C 146.12862,292.33774 146.58109,292.53142 146.84802,292.78207 C 147.1182,293.02947 147.25329,293.37615 147.2533,293.82211 C 147.25329,294.32992 147.05147,294.73194 146.64783,295.02817 C 146.24743,295.32439 145.69568,295.4725 144.99255,295.4725 C 144.69958,295.4725 144.39359,295.4432 144.07458,295.3846 C 143.75883,295.3293 143.42517,295.24463 143.07361,295.1307 L 143.07361,294.20296 C 143.40564,294.37549 143.73279,294.5057 144.05505,294.59359 C 144.37732,294.67819 144.69633,294.72054 145.01208,294.72054 C 145.43526,294.72054 145.76078,294.64894 145.98865,294.5057 C 146.21651,294.35921 146.33044,294.15413 146.33044,293.89046 C 146.33044,293.64632 146.24744,293.45915 146.08142,293.32894 C 145.91866,293.19873 145.55896,293.07341 145.00232,292.95296 L 144.68982,292.87976 C 144.13318,292.76257 143.73116,292.58354 143.48376,292.34265 C 143.23637,292.09851 143.11267,291.76485 143.11267,291.34167 C 143.11267,290.82735 143.29496,290.43022 143.65955,290.15027 C 144.02413,289.87032 144.54171,289.73035 145.21228,289.73034 C 145.54431,289.73035 145.85681,289.75474 146.14978,289.80364 C 146.44275,289.85244 146.71293,289.92571 146.96033,290.02336"
|
||||
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
|
||||
id="path6212"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -4808,17 +5834,17 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path6219"
|
||||
d="m 65.000001,148.96853 l -5.500001,0"
|
||||
d="M 65.000001,148.96853 L 59.5,148.96853"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 65.000001,108.9056 l -5.500001,0"
|
||||
d="M 65.000001,108.9056 L 59.5,108.9056"
|
||||
id="path8329"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8331"
|
||||
d="m 65.000001,68.842666 l -5.500001,0"
|
||||
d="M 65.000001,68.842666 L 59.5,68.842666"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
@ -4834,18 +5860,18 @@
|
||||
inkscape:label="#path8335" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 65.000001,268.84267 l -5.500001,0"
|
||||
d="M 65.000001,268.84267 L 59.5,268.84267"
|
||||
id="path8363"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 65.000001,228.9056 l -5.500001,0"
|
||||
d="M 65.000001,228.9056 L 59.5,228.9056"
|
||||
id="path8369"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8371"
|
||||
d="m 65.000001,188.84267 l -5.500001,0"
|
||||
d="M 65.000001,188.84267 L 59.5,188.84267"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
@ -4862,12 +5888,12 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3518"
|
||||
d="m 65.000001,348.84267 l -5.500001,0"
|
||||
d="M 65.000001,348.84267 L 59.5,348.84267"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3520"
|
||||
d="m 65.000001,308.9056 l -5.500001,0"
|
||||
d="M 65.000001,308.9056 L 59.5,308.9056"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
@ -4884,11 +5910,11 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3526"
|
||||
d="m 65.000001,28.9056 l -5.500001,0"
|
||||
d="M 65.000001,28.9056 L 59.5,28.9056"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 65.000001,-11.157334 l -5.500001,0"
|
||||
d="M 65.000001,-11.157334 L 59.5,-11.157334"
|
||||
id="path3528"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
@ -4937,7 +5963,7 @@
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10059"
|
||||
d="m 91,148.5 l 0,20.5 l 0,20.5 l 44,0 l 0,-9.78125 l 8.5,-9.46875 l 0,-2.5 L 135,158.28125 L 135,148.5 z"
|
||||
d="M 91,148.5 L 91,169 L 91,189.5 L 135,189.5 L 135,179.71875 L 143.5,170.25 L 143.5,167.75 L 135,158.28125 L 135,148.5 z"
|
||||
style="fill:#000000;stroke:#ffffff" />
|
||||
<rect
|
||||
y="167.5"
|
||||
@ -4956,7 +5982,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#bf00bf;fill-opacity:1;stroke:none"
|
||||
d="m 135.5,200 l 0,10.09375 L 144,219.5 l 0,1.5 l 0,1.5 l -8.5,9.40625 L 135.5,242 l 13.5,0 l 0,-21 l 0,-21 l -13.5,0 z"
|
||||
d="M 135.5,200 L 135.5,210.09375 L 144,219.5 L 144,221 L 144,222.5 L 135.5,231.90625 L 135.5,242 L 149,242 L 149,221 L 149,200 L 135.5,200 z"
|
||||
id="speed-waypoint"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path10065" />
|
||||
@ -4972,27 +5998,27 @@
|
||||
id="speed-text"
|
||||
transform="translate(0,42)">
|
||||
<path
|
||||
d="m 97.728516,175.36133 c -0.609379,1e-5 -1.068362,0.30079 -1.376954,0.90234 c -0.304689,0.59766 -0.457033,1.49805 -0.457031,2.70117 c -2e-6,1.19923 0.152342,2.09962 0.457031,2.70118 c 0.308592,0.59765 0.767575,0.89648 1.376954,0.89648 c 0.613276,0 1.07226,-0.29883 1.376953,-0.89648 c 0.308588,-0.60156 0.462885,-1.50195 0.46289,-2.70118 c -5e-6,-1.20312 -0.154302,-2.10351 -0.46289,-2.70117 c -0.304693,-0.60155 -0.763677,-0.90233 -1.376953,-0.90234 m 0,-0.9375 c 0.980464,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.519524,0.77345 0.779294,1.89845 0.779294,3.375 c 0,1.47266 -0.25977,2.59766 -0.779294,3.375 C 99.457026,183.11328 98.70898,183.5 97.728516,183.5 c -0.980472,0 -1.730471,-0.38672 -2.25,-1.16016 c -0.515626,-0.77734 -0.773439,-1.90234 -0.773438,-3.375 c -10e-7,-1.47655 0.257812,-2.60155 0.773438,-3.375 c 0.519529,-0.77733 1.269528,-1.166 2.25,-1.16601"
|
||||
d="M 97.728516,175.36133 C 97.119137,175.36134 96.660154,175.66212 96.351562,176.26367 C 96.046873,176.86133 95.894529,177.76172 95.894531,178.96484 C 95.894529,180.16407 96.046873,181.06446 96.351562,181.66602 C 96.660154,182.26367 97.119137,182.5625 97.728516,182.5625 C 98.341792,182.5625 98.800776,182.26367 99.105469,181.66602 C 99.414057,181.06446 99.568354,180.16407 99.568359,178.96484 C 99.568354,177.76172 99.414057,176.86133 99.105469,176.26367 C 98.800776,175.66212 98.341792,175.36134 97.728516,175.36133 M 97.728516,174.42383 C 98.70898,174.42384 99.457026,174.81251 99.972656,175.58984 C 100.49218,176.36329 100.75195,177.48829 100.75195,178.96484 C 100.75195,180.4375 100.49218,181.5625 99.972656,182.33984 C 99.457026,183.11328 98.70898,183.5 97.728516,183.5 C 96.748044,183.5 95.998045,183.11328 95.478516,182.33984 C 94.96289,181.5625 94.705077,180.4375 94.705078,178.96484 C 94.705077,177.48829 94.96289,176.36329 95.478516,175.58984 C 95.998045,174.81251 96.748044,174.42384 97.728516,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6215"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 105.36914,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 105.36914,175.36133 C 104.75976,175.36134 104.30078,175.66212 103.99219,176.26367 C 103.6875,176.86133 103.53515,177.76172 103.53516,178.96484 C 103.53515,180.16407 103.6875,181.06446 103.99219,181.66602 C 104.30078,182.26367 104.75976,182.5625 105.36914,182.5625 C 105.98242,182.5625 106.4414,182.26367 106.74609,181.66602 C 107.05468,181.06446 107.20898,180.16407 107.20898,178.96484 C 107.20898,177.76172 107.05468,176.86133 106.74609,176.26367 C 106.4414,175.66212 105.98242,175.36134 105.36914,175.36133 M 105.36914,174.42383 C 106.3496,174.42384 107.09765,174.81251 107.61328,175.58984 C 108.13281,176.36329 108.39257,177.48829 108.39258,178.96484 C 108.39257,180.4375 108.13281,181.5625 107.61328,182.33984 C 107.09765,183.11328 106.3496,183.5 105.36914,183.5 C 104.38867,183.5 103.63867,183.11328 103.11914,182.33984 C 102.60351,181.5625 102.3457,180.4375 102.3457,178.96484 C 102.3457,177.48829 102.60351,176.36329 103.11914,175.58984 C 103.63867,174.81251 104.38867,174.42384 105.36914,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6217"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 113.00977,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -1e-5,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73048,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51952,-0.77733 1.26952,-1.166 2.25,-1.16601"
|
||||
d="M 113.00977,175.36133 C 112.40039,175.36134 111.9414,175.66212 111.63281,176.26367 C 111.32812,176.86133 111.17578,177.76172 111.17578,178.96484 C 111.17578,180.16407 111.32812,181.06446 111.63281,181.66602 C 111.9414,182.26367 112.40039,182.5625 113.00977,182.5625 C 113.62304,182.5625 114.08203,182.26367 114.38672,181.66602 C 114.69531,181.06446 114.8496,180.16407 114.84961,178.96484 C 114.8496,177.76172 114.69531,176.86133 114.38672,176.26367 C 114.08203,175.66212 113.62304,175.36134 113.00977,175.36133 M 113.00977,174.42383 C 113.99023,174.42384 114.73828,174.81251 115.25391,175.58984 C 115.77343,176.36329 116.0332,177.48829 116.0332,178.96484 C 116.0332,180.4375 115.77343,181.5625 115.25391,182.33984 C 114.73828,183.11328 113.99023,183.5 113.00977,183.5 C 112.02929,183.5 111.27929,183.11328 110.75977,182.33984 C 110.24414,181.5625 109.98633,180.4375 109.98633,178.96484 C 109.98633,177.48829 110.24414,176.36329 110.75977,175.58984 C 111.27929,174.81251 112.02929,174.42384 113.00977,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6220"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 120.65039,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 120.65039,175.36133 C 120.04101,175.36134 119.58203,175.66212 119.27344,176.26367 C 118.96875,176.86133 118.8164,177.76172 118.81641,178.96484 C 118.8164,180.16407 118.96875,181.06446 119.27344,181.66602 C 119.58203,182.26367 120.04101,182.5625 120.65039,182.5625 C 121.26367,182.5625 121.72265,182.26367 122.02734,181.66602 C 122.33593,181.06446 122.49023,180.16407 122.49023,178.96484 C 122.49023,177.76172 122.33593,176.86133 122.02734,176.26367 C 121.72265,175.66212 121.26367,175.36134 120.65039,175.36133 M 120.65039,174.42383 C 121.63085,174.42384 122.3789,174.81251 122.89453,175.58984 C 123.41406,176.36329 123.67382,177.48829 123.67383,178.96484 C 123.67382,180.4375 123.41406,181.5625 122.89453,182.33984 C 122.3789,183.11328 121.63085,183.5 120.65039,183.5 C 119.66992,183.5 118.91992,183.11328 118.40039,182.33984 C 117.88476,181.5625 117.62695,180.4375 117.62695,178.96484 C 117.62695,177.48829 117.88476,176.36329 118.40039,175.58984 C 118.91992,174.81251 119.66992,174.42384 120.65039,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6222"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 128.29102,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -1e-5,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73048,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51952,-0.77733 1.26952,-1.166 2.25,-1.16601"
|
||||
d="M 128.29102,175.36133 C 127.68164,175.36134 127.22265,175.66212 126.91406,176.26367 C 126.60937,176.86133 126.45703,177.76172 126.45703,178.96484 C 126.45703,180.16407 126.60937,181.06446 126.91406,181.66602 C 127.22265,182.26367 127.68164,182.5625 128.29102,182.5625 C 128.90429,182.5625 129.36328,182.26367 129.66797,181.66602 C 129.97656,181.06446 130.13085,180.16407 130.13086,178.96484 C 130.13085,177.76172 129.97656,176.86133 129.66797,176.26367 C 129.36328,175.66212 128.90429,175.36134 128.29102,175.36133 M 128.29102,174.42383 C 129.27148,174.42384 130.01953,174.81251 130.53516,175.58984 C 131.05468,176.36329 131.31445,177.48829 131.31445,178.96484 C 131.31445,180.4375 131.05468,181.5625 130.53516,182.33984 C 130.01953,183.11328 129.27148,183.5 128.29102,183.5 C 127.31054,183.5 126.56054,183.11328 126.04102,182.33984 C 125.52539,181.5625 125.26758,180.4375 125.26758,178.96484 C 125.26758,177.48829 125.52539,176.36329 126.04102,175.58984 C 126.56054,174.81251 127.31054,174.42384 128.29102,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6224"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -5017,7 +6043,7 @@
|
||||
id="altitude-unit"
|
||||
transform="translate(0,42)">
|
||||
<path
|
||||
d="m 544.20056,290.91187 c 0.22461,-0.40365 0.49316,-0.7015 0.80567,-0.89356 c 0.31249,-0.19205 0.68033,-0.28808 1.10351,-0.28809 c 0.56965,1e-5 1.00911,0.20021 1.31836,0.60059 c 0.30924,0.39714 0.46386,0.96355 0.46387,1.69922 l 0,3.30078 l -0.90332,0 l 0,-3.27148 c -10e-6,-0.52409 -0.0928,-0.91309 -0.27832,-1.167 c -0.18556,-0.2539 -0.46876,-0.38085 -0.84961,-0.38086 c -0.4655,1e-5 -0.83334,0.15463 -1.10352,0.46387 c -0.27019,0.30925 -0.40528,0.7308 -0.40527,1.26465 l 0,3.09082 l -0.90332,0 l 0,-3.27148 c -10e-6,-0.52734 -0.0928,-0.91634 -0.27832,-1.167 c -0.18555,-0.2539 -0.47201,-0.38085 -0.85938,-0.38086 c -0.45898,1e-5 -0.82357,0.15626 -1.09375,0.46875 c -0.27018,0.30925 -0.40527,0.72917 -0.40527,1.25977 l 0,3.09082 l -0.90332,0 l 0,-5.46875 l 0.90332,0 l 0,0.84961 c 0.20508,-0.33528 0.45084,-0.58268 0.7373,-0.74219 c 0.28646,-0.1595 0.62663,-0.23925 1.02051,-0.23926 c 0.39713,1e-5 0.73405,0.10092 1.01074,0.30274 c 0.27995,0.20183 0.48665,0.4948 0.62012,0.87891"
|
||||
d="M 544.20056,290.91187 C 544.42517,290.50822 544.69372,290.21037 545.00623,290.01831 C 545.31872,289.82626 545.68656,289.73023 546.10974,289.73022 C 546.67939,289.73023 547.11885,289.93043 547.4281,290.33081 C 547.73734,290.72795 547.89196,291.29436 547.89197,292.03003 L 547.89197,295.33081 L 546.98865,295.33081 L 546.98865,292.05933 C 546.98864,291.53524 546.89585,291.14624 546.71033,290.89233 C 546.52477,290.63843 546.24157,290.51148 545.86072,290.51147 C 545.39522,290.51148 545.02738,290.6661 544.7572,290.97534 C 544.48701,291.28459 544.35192,291.70614 544.35193,292.23999 L 544.35193,295.33081 L 543.44861,295.33081 L 543.44861,292.05933 C 543.4486,291.53199 543.35581,291.14299 543.17029,290.89233 C 542.98474,290.63843 542.69828,290.51148 542.31091,290.51147 C 541.85193,290.51148 541.48734,290.66773 541.21716,290.98022 C 540.94698,291.28947 540.81189,291.70939 540.81189,292.23999 L 540.81189,295.33081 L 539.90857,295.33081 L 539.90857,289.86206 L 540.81189,289.86206 L 540.81189,290.71167 C 541.01697,290.37639 541.26273,290.12899 541.54919,289.96948 C 541.83565,289.80998 542.17582,289.73023 542.5697,289.73022 C 542.96683,289.73023 543.30375,289.83114 543.58044,290.03296 C 543.86039,290.23479 544.06709,290.52776 544.20056,290.91187"
|
||||
style="font-size:10px;text-align:end;text-anchor:end;fill:#ffffff"
|
||||
id="path6205"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -5065,23 +6091,23 @@
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,148.96853 l -5.500001,0"
|
||||
d="M 64.99999,148.96853 L 59.499989,148.96853"
|
||||
id="path9774"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path9776"
|
||||
d="m 64.99999,108.9056 l -5.500001,0"
|
||||
d="M 64.99999,108.9056 L 59.499989,108.9056"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,68.842666 l -5.500001,0"
|
||||
d="M 64.99999,68.842666 L 59.499989,68.842666"
|
||||
id="path9778"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="altitude1"
|
||||
d="m 64.99999,129 l -13.000001,0"
|
||||
d="M 64.99999,129 L 51.999989,129"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:label="#path9780" />
|
||||
<path
|
||||
@ -5093,61 +6119,61 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path9796"
|
||||
d="m 64.99999,268.84267 l -5.500001,0"
|
||||
d="M 64.99999,268.84267 L 59.499989,268.84267"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path9802"
|
||||
d="m 64.99999,228.9056 l -5.500001,0"
|
||||
d="M 64.99999,228.9056 L 59.499989,228.9056"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,188.84267 l -5.500001,0"
|
||||
d="M 64.99999,188.84267 L 59.499989,188.84267"
|
||||
id="path9804"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="altitude-2"
|
||||
d="m 64.99999,249 l -13.000001,0"
|
||||
d="M 64.99999,249 L 51.999989,249"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:label="#path9806" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,209 l -13.000001,0"
|
||||
d="M 64.99999,209 L 51.999989,209"
|
||||
id="altitude-1"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path9808" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,348.84267 l -5.500001,0"
|
||||
d="M 64.99999,348.84267 L 59.499989,348.84267"
|
||||
id="path3488"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,308.9056 l -5.500001,0"
|
||||
d="M 64.99999,308.9056 L 59.499989,308.9056"
|
||||
id="path3490"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,329 l -13.000001,0"
|
||||
d="M 64.99999,329 L 51.999989,329"
|
||||
id="altitude-4"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:label="#path3492" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="altitude-3"
|
||||
d="m 64.99999,289 l -13.000001,0"
|
||||
d="M 64.99999,289 L 51.999989,289"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:label="#path3494" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,28.9056 l -5.500001,0"
|
||||
d="M 64.99999,28.9056 L 59.499989,28.9056"
|
||||
id="path3496"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3498"
|
||||
d="m 64.99999,-11.157334 l -5.500001,0"
|
||||
d="M 64.99999,-11.157334 L 59.499989,-11.157334"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
@ -5164,20 +6190,20 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="altitude0"
|
||||
d="m 64.99999,169 l -13.000001,0"
|
||||
d="M 64.99999,169 L 51.999989,169"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
inkscape:label="#path3577" />
|
||||
<path
|
||||
inkscape:label="#path3502"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.99999,-31 l -13.000001,0"
|
||||
d="M 64.99999,-31 L 51.999989,-31"
|
||||
id="altitude5"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:label="#path3492"
|
||||
inkscape:connector-curvature="0"
|
||||
id="altitude-5"
|
||||
d="m 64.99999,369 l -13.000001,0"
|
||||
d="M 64.99999,369 L 51.999989,369"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
@ -5197,7 +6223,7 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path10043"
|
||||
transform="translate(0,4)"
|
||||
d="m 506.5,144.4375 l 0,12.75 l -9.525,6.5625 l 0,2.5 l 9.525,6.5625 l 0,12.75 l 43,0 L 549.5,165 l 0,-20.5625 z"
|
||||
d="M 506.5,144.4375 L 506.5,157.1875 L 496.975,163.75 L 496.975,166.25 L 506.5,172.8125 L 506.5,185.5625 L 549.5,185.5625 L 549.5,165 L 549.5,144.4375 z"
|
||||
style="fill:#000000;stroke:#ffffff" />
|
||||
<rect
|
||||
y="167.5"
|
||||
@ -5216,7 +6242,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#bf00bf;fill-opacity:1;stroke:none"
|
||||
d="m 491,200 l 0,21 l 0,21 l 15,0 l 0,-13.0625 L 496.5625,222.5 l 0,-1.5 l 0,-1.5 L 506,213.0625 L 506,200 z"
|
||||
d="M 491,200 L 491,221 L 491,242 L 506,242 L 506,228.9375 L 496.5625,222.5 L 496.5625,221 L 496.5625,219.5 L 506,213.0625 L 506,200 z"
|
||||
id="altitude-waypoint"
|
||||
inkscape:label="#path10053"
|
||||
inkscape:connector-curvature="0"
|
||||
@ -5233,27 +6259,27 @@
|
||||
id="altitude-text"
|
||||
transform="translate(0,42)">
|
||||
<path
|
||||
d="m 512.28516,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -10e-6,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26952,-1.166 2.25,-1.16601"
|
||||
d="M 512.28516,175.36133 C 511.67578,175.36134 511.21679,175.66212 510.9082,176.26367 C 510.60351,176.86133 510.45117,177.76172 510.45117,178.96484 C 510.45117,180.16407 510.60351,181.06446 510.9082,181.66602 C 511.21679,182.26367 511.67578,182.5625 512.28516,182.5625 C 512.89843,182.5625 513.35742,182.26367 513.66211,181.66602 C 513.9707,181.06446 514.12499,180.16407 514.125,178.96484 C 514.12499,177.76172 513.9707,176.86133 513.66211,176.26367 C 513.35742,175.66212 512.89843,175.36134 512.28516,175.36133 M 512.28516,174.42383 C 513.26562,174.42384 514.01367,174.81251 514.5293,175.58984 C 515.04882,176.36329 515.30859,177.48829 515.30859,178.96484 C 515.30859,180.4375 515.04882,181.5625 514.5293,182.33984 C 514.01367,183.11328 513.26562,183.5 512.28516,183.5 C 511.30468,183.5 510.55469,183.11328 510.03516,182.33984 C 509.51953,181.5625 509.26172,180.4375 509.26172,178.96484 C 509.26172,177.48829 509.51953,176.36329 510.03516,175.58984 C 510.55469,174.81251 511.30468,174.42384 512.28516,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6194"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 519.92578,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98047,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26367,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51562,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25782,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 519.92578,175.36133 C 519.3164,175.36134 518.85742,175.66212 518.54883,176.26367 C 518.24414,176.86133 518.09179,177.76172 518.0918,178.96484 C 518.09179,180.16407 518.24414,181.06446 518.54883,181.66602 C 518.85742,182.26367 519.3164,182.5625 519.92578,182.5625 C 520.53906,182.5625 520.99804,182.26367 521.30273,181.66602 C 521.61132,181.06446 521.76562,180.16407 521.76562,178.96484 C 521.76562,177.76172 521.61132,176.86133 521.30273,176.26367 C 520.99804,175.66212 520.53906,175.36134 519.92578,175.36133 M 519.92578,174.42383 C 520.90625,174.42384 521.65429,174.81251 522.16992,175.58984 C 522.68945,176.36329 522.94921,177.48829 522.94922,178.96484 C 522.94921,180.4375 522.68945,181.5625 522.16992,182.33984 C 521.65429,183.11328 520.90625,183.5 519.92578,183.5 C 518.94531,183.5 518.19531,183.11328 517.67578,182.33984 C 517.16016,181.5625 516.90234,180.4375 516.90234,178.96484 C 516.90234,177.48829 517.16016,176.36329 517.67578,175.58984 C 518.19531,174.81251 518.94531,174.42384 519.92578,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6196"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 527.56641,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -10e-6,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26952,-1.166 2.25,-1.16601"
|
||||
d="M 527.56641,175.36133 C 526.95703,175.36134 526.49804,175.66212 526.18945,176.26367 C 525.88476,176.86133 525.73242,177.76172 525.73242,178.96484 C 525.73242,180.16407 525.88476,181.06446 526.18945,181.66602 C 526.49804,182.26367 526.95703,182.5625 527.56641,182.5625 C 528.17968,182.5625 528.63867,182.26367 528.94336,181.66602 C 529.25195,181.06446 529.40624,180.16407 529.40625,178.96484 C 529.40624,177.76172 529.25195,176.86133 528.94336,176.26367 C 528.63867,175.66212 528.17968,175.36134 527.56641,175.36133 M 527.56641,174.42383 C 528.54687,174.42384 529.29492,174.81251 529.81055,175.58984 C 530.33007,176.36329 530.58984,177.48829 530.58984,178.96484 C 530.58984,180.4375 530.33007,181.5625 529.81055,182.33984 C 529.29492,183.11328 528.54687,183.5 527.56641,183.5 C 526.58593,183.5 525.83594,183.11328 525.31641,182.33984 C 524.80078,181.5625 524.54297,180.4375 524.54297,178.96484 C 524.54297,177.48829 524.80078,176.36329 525.31641,175.58984 C 525.83594,174.81251 526.58593,174.42384 527.56641,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6198"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 535.20703,175.36133 c -0.60938,1e-5 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45703,2.70117 c -1e-5,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76757,0.89648 1.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46289,-1.50195 0.46289,-2.70118 c 0,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98047,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51953,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25977,2.59766 -0.7793,3.375 c -0.51563,0.77344 -1.26367,1.16016 -2.24414,1.16016 c -0.98047,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51562,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25782,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
|
||||
d="M 535.20703,175.36133 C 534.59765,175.36134 534.13867,175.66212 533.83008,176.26367 C 533.52539,176.86133 533.37304,177.76172 533.37305,178.96484 C 533.37304,180.16407 533.52539,181.06446 533.83008,181.66602 C 534.13867,182.26367 534.59765,182.5625 535.20703,182.5625 C 535.82031,182.5625 536.27929,182.26367 536.58398,181.66602 C 536.89257,181.06446 537.04687,180.16407 537.04687,178.96484 C 537.04687,177.76172 536.89257,176.86133 536.58398,176.26367 C 536.27929,175.66212 535.82031,175.36134 535.20703,175.36133 M 535.20703,174.42383 C 536.1875,174.42384 536.93554,174.81251 537.45117,175.58984 C 537.9707,176.36329 538.23046,177.48829 538.23047,178.96484 C 538.23046,180.4375 537.9707,181.5625 537.45117,182.33984 C 536.93554,183.11328 536.1875,183.5 535.20703,183.5 C 534.22656,183.5 533.47656,183.11328 532.95703,182.33984 C 532.44141,181.5625 532.18359,180.4375 532.18359,178.96484 C 532.18359,177.48829 532.44141,176.36329 532.95703,175.58984 C 533.47656,174.81251 534.22656,174.42384 535.20703,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6200"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 542.84766,175.36133 c -0.60938,1e-5 -1.06837,0.30079 -1.37696,0.90234 c -0.30469,0.59766 -0.45703,1.49805 -0.45703,2.70117 c 0,1.19923 0.15234,2.09962 0.45703,2.70118 c 0.30859,0.59765 0.76758,0.89648 1.37696,0.89648 c 0.61327,0 1.07226,-0.29883 1.37695,-0.89648 c 0.30859,-0.60156 0.46288,-1.50195 0.46289,-2.70118 c -10e-6,-1.20312 -0.1543,-2.10351 -0.46289,-2.70117 c -0.30469,-0.60155 -0.76368,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98046,1e-5 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.77929,3.375 c 0,1.47266 -0.25977,2.59766 -0.77929,3.375 c -0.51563,0.77344 -1.26368,1.16016 -2.24414,1.16016 c -0.98048,0 -1.73047,-0.38672 -2.25,-1.16016 c -0.51563,-0.77734 -0.77344,-1.90234 -0.77344,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77344,-3.375 c 0.51953,-0.77733 1.26952,-1.166 2.25,-1.16601"
|
||||
d="M 542.84766,175.36133 C 542.23828,175.36134 541.77929,175.66212 541.4707,176.26367 C 541.16601,176.86133 541.01367,177.76172 541.01367,178.96484 C 541.01367,180.16407 541.16601,181.06446 541.4707,181.66602 C 541.77929,182.26367 542.23828,182.5625 542.84766,182.5625 C 543.46093,182.5625 543.91992,182.26367 544.22461,181.66602 C 544.5332,181.06446 544.68749,180.16407 544.6875,178.96484 C 544.68749,177.76172 544.5332,176.86133 544.22461,176.26367 C 543.91992,175.66212 543.46093,175.36134 542.84766,175.36133 M 542.84766,174.42383 C 543.82812,174.42384 544.57617,174.81251 545.0918,175.58984 C 545.61132,176.36329 545.87109,177.48829 545.87109,178.96484 C 545.87109,180.4375 545.61132,181.5625 545.0918,182.33984 C 544.57617,183.11328 543.82812,183.5 542.84766,183.5 C 541.86718,183.5 541.11719,183.11328 540.59766,182.33984 C 540.08203,181.5625 539.82422,180.4375 539.82422,178.96484 C 539.82422,177.48829 540.08203,176.36329 540.59766,175.58984 C 541.11719,174.81251 541.86718,174.42384 542.84766,174.42383"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6202"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -5274,7 +6300,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:0.25098039;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 608.03211,91.918678 C 647.68617,91.918678 918,217 918,217 c 0,0 -269.64496,124.91868 -309.96789,124.91868 c -40.32293,0 -50.00001,-61.5142 -50.00001,-125 c 0,-63.4858 10.34595,-125.000002 50.00001,-125.000002 z"
|
||||
d="M 608.03211,91.918678 C 647.68617,91.918678 918,217 918,217 C 918,217 648.35504,341.91868 608.03211,341.91868 C 567.70918,341.91868 558.0321,280.40448 558.0321,216.91868 C 558.0321,153.43288 568.37805,91.918678 608.03211,91.918678 z"
|
||||
id="vsi-window"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zczzz" />
|
||||
@ -5302,11 +6328,11 @@
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect4893"
|
||||
d="m 593.03211,212.93018 l 85.3661,0 l 0,7.977 l -85.3661,0 l -4,-3.9885 z"
|
||||
d="M 593.03211,212.93018 L 678.39821,212.93018 L 678.39821,220.90718 L 593.03211,220.90718 L 589.03211,216.91868 z"
|
||||
style="fill:#c8c8c8;fill-opacity:1;stroke:#111413;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linejoin:round;stroke-opacity:1"
|
||||
d="m 593.85791,214.81327 l 52.5403,0 l 0,4.21046 l -52.5403,0 l -1.9558,-2.10505 z"
|
||||
d="M 593.85791,214.81327 L 646.39821,214.81327 L 646.39821,219.02373 L 593.85791,219.02373 L 591.90211,216.91868 z"
|
||||
id="path4896"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
@ -5331,7 +6357,7 @@
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 576.54916,211.75 l 6.95084,0.11285 l -0.2329,10.18229 L 576.5,222.25 z"
|
||||
d="M 576.54916,211.75 L 583.5,211.86285 L 583.2671,222.04514 L 576.5,222.25 z"
|
||||
id="vsi-waypoint"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
@ -5347,7 +6373,7 @@
|
||||
transform="translate(-18,0)">
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 607.03209,217 l -13,0"
|
||||
d="M 607.03209,217 L 594.03209,217"
|
||||
id="vsi-centerline"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
@ -5358,31 +6384,31 @@
|
||||
sodipodi:cy="205"
|
||||
sodipodi:rx="46.352551"
|
||||
sodipodi:ry="75"
|
||||
d="m 582.79539,230.65151 c -3.7272,-16.56932 -3.7272,-34.7337 0,-51.30302"
|
||||
d="M 582.79539,230.65151 C 579.06819,214.08219 579.06819,195.91781 582.79539,179.34849"
|
||||
transform="matrix(6.4484046,0,0,3.9853333,-3146.0425,-599.99333)"
|
||||
sodipodi:start="2.7925268"
|
||||
sodipodi:end="3.4906585"
|
||||
sodipodi:open="true" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 611.37496,167.3539 l -12.8025,-2.25741"
|
||||
d="M 611.37496,167.3539 L 598.57246,165.09649"
|
||||
id="path4652"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 599.81128,204.20205 l -5.49476,-0.2399"
|
||||
d="M 599.81128,204.20205 L 594.31652,203.96215"
|
||||
id="path4654"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 602.04172,178.70357 l -5.45294,-0.71787"
|
||||
d="M 602.04172,178.70357 L 596.58878,177.9857"
|
||||
id="path4658"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-x="-3.6818999"
|
||||
inkscape:transform-center-y="1.4016049" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 608.11978,192.08218 l -12.95052,-1.13304"
|
||||
d="M 608.11978,192.08218 L 595.16926,190.94914"
|
||||
id="path4660"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
@ -5390,41 +6416,41 @@
|
||||
inkscape:transform-center-x="-3.5457349"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4662"
|
||||
d="m 606.50354,153.42132 l -5.36963,-1.19039"
|
||||
d="M 606.50354,153.42132 L 601.13391,152.23093"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4666"
|
||||
d="m 616.46289,142.9203 l -12.55702,-3.36463"
|
||||
d="M 616.46289,142.9203 L 603.90587,139.55567"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 613.11138,128.77283 l -5.24545,-1.65386"
|
||||
d="M 613.11138,128.77283 L 607.86593,127.11897"
|
||||
id="path4668"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-x="-3.3825849"
|
||||
inkscape:transform-center-y="2.0196599" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 624.66996,119.36055 l -12.21598,-4.44623"
|
||||
d="M 624.66996,119.36055 L 612.45398,114.91432"
|
||||
id="path4672"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4698"
|
||||
d="m 610.97895,266.79024 l -12.8025,2.25741"
|
||||
d="M 610.97895,266.79024 L 598.17645,269.04765"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4700"
|
||||
d="m 599.41527,229.94209 l -5.49476,0.2399"
|
||||
d="M 599.41527,229.94209 L 593.92051,230.18199"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:transform-center-y="-1.4016049"
|
||||
inkscape:transform-center-x="-3.6818999"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4702"
|
||||
d="m 601.64571,255.44057 l -5.45294,0.71787"
|
||||
d="M 601.64571,255.44057 L 596.19277,256.15844"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
@ -5433,14 +6459,14 @@
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 606.10753,280.72282 l -5.36963,1.19039"
|
||||
d="M 606.10753,280.72282 L 600.7379,281.91321"
|
||||
id="path4706"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:transform-center-x="-3.5457349"
|
||||
inkscape:transform-center-y="-1.7171649" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 616.06688,291.22384 l -12.55702,3.36463"
|
||||
d="M 616.06688,291.22384 L 603.50986,294.58847"
|
||||
id="path4708"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
@ -5448,12 +6474,12 @@
|
||||
inkscape:transform-center-x="-3.3825849"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4710"
|
||||
d="m 612.71537,305.37131 l -5.24545,1.65386"
|
||||
d="M 612.71537,305.37131 L 607.46992,307.02517"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4712"
|
||||
d="m 624.27395,314.78359 l -12.21598,4.44623"
|
||||
d="M 624.27395,314.78359 L 612.05797,319.22982"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<g
|
||||
id="g4832"
|
||||
@ -5462,17 +6488,17 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5115"
|
||||
d="m 603.16431,337.9502 l 2.28271,-8.14258 l 0.77344,0 l -2.27734,8.14258 l -0.77881,0"
|
||||
d="M 603.16431,337.9502 L 605.44702,329.80762 L 606.22046,329.80762 L 603.94312,337.9502 L 603.16431,337.9502"
|
||||
style="fill:#ffffff;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5117"
|
||||
d="m 606.55347,336.11328 l 0.95605,-0.15039 c 0.0537,0.38314 0.20231,0.67676 0.4458,0.88086 c 0.24707,0.2041 0.59082,0.30615 1.03125,0.30615 c 0.44401,0 0.77344,-0.0895 0.98828,-0.26855 c 0.21484,-0.18262 0.32227,-0.39567 0.32227,-0.63916 c 0,-0.21843 -0.0949,-0.3903 -0.28467,-0.51563 c -0.13249,-0.0859 -0.46192,-0.19514 -0.98828,-0.32763 c -0.70899,-0.17904 -1.20134,-0.33301 -1.47705,-0.46192 c -0.27214,-0.13248 -0.47982,-0.31331 -0.62305,-0.54248 c -0.13965,-0.23274 -0.20947,-0.48876 -0.20947,-0.76807 c 0,-0.25422 0.0573,-0.48876 0.17187,-0.70361 c 0.11817,-0.21842 0.27751,-0.39924 0.47803,-0.54248 c 0.15039,-0.111 0.35449,-0.20409 0.61231,-0.2793 c 0.26139,-0.0788 0.54068,-0.11815 0.83789,-0.11816 c 0.44759,10e-6 0.83967,0.0645 1.17627,0.19336 c 0.34016,0.12891 0.59081,0.30437 0.75195,0.52637 c 0.16113,0.21843 0.27213,0.51205 0.33301,0.88086 l -0.94531,0.1289 c -0.043,-0.29361 -0.1683,-0.52278 -0.37598,-0.6875 c -0.20411,-0.16471 -0.49414,-0.24706 -0.87012,-0.24707 c -0.44401,1e-5 -0.76091,0.0734 -0.95068,0.22022 c -0.18978,0.14681 -0.28467,0.31869 -0.28467,0.51562 c 0,0.12533 0.0394,0.23812 0.11816,0.33838 c 0.0788,0.10385 0.20231,0.18978 0.37061,0.25781 c 0.0967,0.0358 0.38134,0.11817 0.854,0.24707 c 0.68392,0.18262 1.16016,0.33301 1.42871,0.45118 c 0.27214,0.11458 0.48519,0.28288 0.63916,0.50488 c 0.15397,0.22201 0.23096,0.49772 0.23096,0.82715 c 0,0.32226 -0.0949,0.62663 -0.28467,0.91308 c -0.1862,0.28288 -0.45654,0.5031 -0.81103,0.66065 c -0.3545,0.15397 -0.75554,0.23095 -1.20313,0.23095 c -0.74121,0 -1.30696,-0.15397 -1.69726,-0.46191 c -0.38672,-0.30794 -0.63379,-0.76448 -0.74121,-1.36963"
|
||||
d="M 606.55347,336.11328 L 607.50952,335.96289 C 607.56322,336.34603 607.71183,336.63965 607.95532,336.84375 C 608.20239,337.04785 608.54614,337.1499 608.98657,337.1499 C 609.43058,337.1499 609.76001,337.0604 609.97485,336.88135 C 610.18969,336.69873 610.29712,336.48568 610.29712,336.24219 C 610.29712,336.02376 610.20222,335.85189 610.01245,335.72656 C 609.87996,335.64066 609.55053,335.53142 609.02417,335.39893 C 608.31518,335.21989 607.82283,335.06592 607.54712,334.93701 C 607.27498,334.80453 607.0673,334.6237 606.92407,334.39453 C 606.78442,334.16179 606.7146,333.90577 606.7146,333.62646 C 606.7146,333.37224 606.7719,333.1377 606.88647,332.92285 C 607.00464,332.70443 607.16398,332.52361 607.3645,332.38037 C 607.51489,332.26937 607.71899,332.17628 607.97681,332.10107 C 608.2382,332.02227 608.51749,331.98292 608.8147,331.98291 C 609.26229,331.98292 609.65437,332.04741 609.99097,332.17627 C 610.33113,332.30518 610.58178,332.48064 610.74292,332.70264 C 610.90405,332.92107 611.01505,333.21469 611.07593,333.5835 L 610.13062,333.7124 C 610.08762,333.41879 609.96232,333.18962 609.75464,333.0249 C 609.55053,332.86019 609.2605,332.77784 608.88452,332.77783 C 608.44051,332.77784 608.12361,332.85123 607.93384,332.99805 C 607.74406,333.14486 607.64917,333.31674 607.64917,333.51367 C 607.64917,333.639 607.68857,333.75179 607.76733,333.85205 C 607.84613,333.9559 607.96964,334.04183 608.13794,334.10986 C 608.23464,334.14566 608.51928,334.22803 608.99194,334.35693 C 609.67586,334.53955 610.1521,334.68994 610.42065,334.80811 C 610.69279,334.92269 610.90584,335.09099 611.05981,335.31299 C 611.21378,335.535 611.29077,335.81071 611.29077,336.14014 C 611.29077,336.4624 611.19587,336.76677 611.0061,337.05322 C 610.8199,337.3361 610.54956,337.55632 610.19507,337.71387 C 609.84057,337.86784 609.43953,337.94482 608.99194,337.94482 C 608.25073,337.94482 607.68498,337.79085 607.29468,337.48291 C 606.90796,337.17497 606.66089,336.71843 606.55347,336.11328"
|
||||
style="fill:#ffffff;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5113"
|
||||
d="m 594.69409,337.81592 l 0,-5.7041 l 0.86475,0 l 0,0.80029 c 0.17903,-0.27929 0.41715,-0.50309 0.71435,-0.67139 c 0.2972,-0.17187 0.63558,-0.2578 1.01514,-0.25781 c 0.42252,10e-6 0.76806,0.0877 1.03662,0.26318 c 0.27213,0.17546 0.4637,0.42074 0.57471,0.73584 c 0.45116,-0.66601 1.0384,-0.99901 1.76172,-0.99902 c 0.56574,10e-6 1.0008,0.15756 1.30517,0.47266 c 0.30436,0.31152 0.45654,0.79313 0.45655,1.44482 l 0,3.91553 l -0.96143,0 l 0,-3.59326 c -10e-6,-0.38672 -0.0322,-0.66422 -0.0967,-0.83252 c -0.0609,-0.17187 -0.17367,-0.30973 -0.33838,-0.41358 c -0.16472,-0.10383 -0.35808,-0.15575 -0.58008,-0.15576 c -0.40104,10e-6 -0.73405,0.13428 -0.99902,0.40283 c -0.26498,0.26498 -0.39747,0.69109 -0.39746,1.27832 l 0,3.31397 l -0.9668,0 l 0,-3.70606 c 0,-0.42968 -0.0788,-0.75195 -0.23633,-0.96679 c -0.15755,-0.21484 -0.41536,-0.32226 -0.77343,-0.32227 c -0.27214,10e-6 -0.52458,0.0716 -0.75733,0.21484 c -0.22917,0.14324 -0.39567,0.35271 -0.49951,0.62842 c -0.10384,0.27572 -0.15576,0.67318 -0.15576,1.19239 l 0,2.95947 l -0.9668,0"
|
||||
d="M 594.69409,337.81592 L 594.69409,332.11182 L 595.55884,332.11182 L 595.55884,332.91211 C 595.73787,332.63282 595.97599,332.40902 596.27319,332.24072 C 596.57039,332.06885 596.90877,331.98292 597.28833,331.98291 C 597.71085,331.98292 598.05639,332.07061 598.32495,332.24609 C 598.59708,332.42155 598.78865,332.66683 598.89966,332.98193 C 599.35082,332.31592 599.93806,331.98292 600.66138,331.98291 C 601.22712,331.98292 601.66218,332.14047 601.96655,332.45557 C 602.27091,332.76709 602.42309,333.2487 602.4231,333.90039 L 602.4231,337.81592 L 601.46167,337.81592 L 601.46167,334.22266 C 601.46166,333.83594 601.42947,333.55844 601.36497,333.39014 C 601.30407,333.21827 601.1913,333.08041 601.02659,332.97656 C 600.86187,332.87273 600.66851,332.82081 600.44651,332.8208 C 600.04547,332.82081 599.71246,332.95508 599.44749,333.22363 C 599.18251,333.48861 599.05002,333.91472 599.05003,334.50195 L 599.05003,337.81592 L 598.08323,337.81592 L 598.08323,334.10986 C 598.08323,333.68018 598.00443,333.35791 597.8469,333.14307 C 597.68935,332.92823 597.43154,332.82081 597.07347,332.8208 C 596.80133,332.82081 596.54889,332.8924 596.31614,333.03564 C 596.08697,333.17888 595.92047,333.38835 595.81663,333.66406 C 595.71279,333.93978 595.66087,334.33724 595.66087,334.85645 L 595.66087,337.81592 L 594.69407,337.81592"
|
||||
style="fill:#ffffff;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
@ -5483,7 +6509,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5083">
|
||||
<path
|
||||
d="m 590.70471,-92.619102 l 0,-2.399415 l -4.34765,0 l 0,-1.127929 l 4.57324,-6.494144 l 1.00488,0 l 0,6.494144 l 1.35352,0 l 0,1.127929 l -1.35352,0 l 0,2.399415 l -1.23047,0 m 0,-3.527344 l 0,-4.518554 l -3.13769,4.518554 l 3.13769,0"
|
||||
d="M 590.70471,-92.619102 L 590.70471,-95.018517 L 586.35706,-95.018517 L 586.35706,-96.146446 L 590.9303,-102.64059 L 591.93518,-102.64059 L 591.93518,-96.146446 L 593.2887,-96.146446 L 593.2887,-95.018517 L 591.93518,-95.018517 L 591.93518,-92.619102 L 590.70471,-92.619102 M 590.70471,-96.146446 L 590.70471,-100.665 L 587.56702,-96.146446 L 590.70471,-96.146446"
|
||||
id="path5162"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5492,7 +6518,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5087">
|
||||
<path
|
||||
d="m 590.11182,-15.845105 l 1.23047,-0.164063 c 0.14127,0.697268 0.38053,1.200848 0.71777,1.510743 c 0.34179,0.305339 0.75651,0.458008 1.24414,0.458007 c 0.57877,1e-6 1.0664,-0.200519 1.46289,-0.601562 c 0.40104,-0.40104 0.60156,-0.897784 0.60156,-1.490235 c 0,-0.5651 -0.18457,-1.029944 -0.55371,-1.394531 c -0.36914,-0.369136 -0.83854,-0.553706 -1.4082,-0.553711 c -0.23243,5e-6 -0.52181,0.04558 -0.86817,0.136719 l 0.13672,-1.080078 c 0.082,0.0091 0.14811,0.01368 0.19825,0.01367 c 0.52408,6e-6 0.99576,-0.136713 1.41503,-0.410156 c 0.41927,-0.273431 0.62891,-0.694981 0.62891,-1.264649 c 0,-0.451164 -0.15267,-0.824861 -0.45801,-1.121094 c -0.30534,-0.296215 -0.69955,-0.444327 -1.18261,-0.444336 c -0.47852,9e-6 -0.87729,0.1504 -1.19629,0.451172 c -0.31902,0.30079 -0.52409,0.751961 -0.61524,1.353516 l -1.23047,-0.21875 c 0.15039,-0.824862 0.49219,-1.462882 1.02539,-1.914063 c 0.5332,-0.455719 1.19629,-0.683583 1.98926,-0.683593 c 0.54687,10e-6 1.05045,0.118499 1.51074,0.355468 c 0.46028,0.232432 0.8112,0.551442 1.05274,0.957032 c 0.24609,0.405607 0.36913,0.836271 0.36914,1.291992 c -10e-6,0.43295 -0.11622,0.827155 -0.34863,1.182617 c -0.23243,0.355475 -0.57651,0.638026 -1.03223,0.847656 c 0.59244,0.136724 1.05273,0.421555 1.38086,0.854492 c 0.32812,0.42839 0.49218,0.96615 0.49219,1.613282 c -10e-6,0.875002 -0.31902,1.61784 -0.95703,2.228515 c -0.63803,0.60612 -1.44467,0.90918 -2.41993,0.90918 c -0.87956,0 -1.611,-0.262044 -2.19433,-0.786133 c -0.57878,-0.524087 -0.90918,-1.203123 -0.99121,-2.037109"
|
||||
d="M 590.11182,-15.845105 L 591.34229,-16.009168 C 591.48356,-15.3119 591.72282,-14.80832 592.06006,-14.498425 C 592.40185,-14.193086 592.81657,-14.040417 593.3042,-14.040418 C 593.88297,-14.040417 594.3706,-14.240937 594.76709,-14.64198 C 595.16813,-15.04302 595.36865,-15.539764 595.36865,-16.132215 C 595.36865,-16.697315 595.18408,-17.162159 594.81494,-17.526746 C 594.4458,-17.895882 593.9764,-18.080452 593.40674,-18.080457 C 593.17431,-18.080452 592.88493,-18.034877 592.53857,-17.943738 L 592.67529,-19.023816 C 592.75729,-19.014716 592.8234,-19.010136 592.87354,-19.010146 C 593.39762,-19.01014 593.8693,-19.146859 594.28857,-19.420302 C 594.70784,-19.693733 594.91748,-20.115283 594.91748,-20.684951 C 594.91748,-21.136115 594.76481,-21.509812 594.45947,-21.806045 C 594.15413,-22.10226 593.75992,-22.250372 593.27686,-22.250381 C 592.79834,-22.250372 592.39957,-22.099981 592.08057,-21.799209 C 591.76155,-21.498419 591.55648,-21.047248 591.46533,-20.445693 L 590.23486,-20.664443 C 590.38525,-21.489305 590.72705,-22.127325 591.26025,-22.578506 C 591.79345,-23.034225 592.45654,-23.262089 593.24951,-23.262099 C 593.79638,-23.262089 594.29996,-23.1436 594.76025,-22.906631 C 595.22053,-22.674199 595.57145,-22.355189 595.81299,-21.949599 C 596.05908,-21.543992 596.18212,-21.113328 596.18213,-20.657607 C 596.18212,-20.224657 596.06591,-19.830452 595.8335,-19.47499 C 595.60107,-19.119515 595.25699,-18.836964 594.80127,-18.627334 C 595.39371,-18.49061 595.854,-18.205779 596.18213,-17.772842 C 596.51025,-17.344452 596.67431,-16.806692 596.67432,-16.15956 C 596.67431,-15.284558 596.3553,-14.54172 595.71729,-13.931045 C 595.07926,-13.324925 594.27262,-13.021865 593.29736,-13.021865 C 592.4178,-13.021865 591.68636,-13.283909 591.10303,-13.807998 C 590.52425,-14.332085 590.19385,-15.011121 590.11182,-15.845107"
|
||||
id="path5165"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5501,7 +6527,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5099">
|
||||
<path
|
||||
d="m 594.85211,64.210739 l 0,1.182617 l -6.62402,0 c -0.009,-0.296223 0.0387,-0.581054 0.14355,-0.854492 c 0.16862,-0.45117 0.4375,-0.895506 0.80664,-1.333008 c 0.3737,-0.437497 0.91146,-0.943356 1.61328,-1.517578 c 1.08919,-0.893224 1.8252,-1.599604 2.20801,-2.11914 c 0.38281,-0.524083 0.57422,-1.018548 0.57422,-1.483399 c 0,-0.487622 -0.17546,-0.897778 -0.52637,-1.230469 c -0.34635,-0.33723 -0.7998,-0.50585 -1.36035,-0.505859 c -0.59245,9e-6 -1.06641,0.177743 -1.42187,0.533203 c -0.35547,0.355477 -0.53549,0.847664 -0.54004,1.476563 l -1.26465,-0.129883 c 0.0866,-0.943351 0.41243,-1.661124 0.97754,-2.15332 c 0.5651,-0.496735 1.32389,-0.745108 2.27637,-0.745118 c 0.96158,1e-5 1.72265,0.266612 2.2832,0.799805 c 0.56054,0.533212 0.84081,1.194018 0.84082,1.982422 c -10e-6,0.401048 -0.082,0.795254 -0.24609,1.182617 c -0.16407,0.387376 -0.43751,0.795253 -0.82032,1.223633 c -0.37826,0.42839 -1.00944,1.01628 -1.89355,1.763672 c -0.73829,0.619794 -1.21224,1.041343 -1.42188,1.264648 c -0.20963,0.218752 -0.38281,0.43978 -0.51953,0.663086 l 4.91504,0"
|
||||
d="M 594.85211,64.210739 L 594.85211,65.393356 L 588.22809,65.393356 C 588.21909,65.097133 588.26679,64.812302 588.37164,64.538864 C 588.54026,64.087694 588.80914,63.643358 589.17828,63.205856 C 589.55198,62.768359 590.08974,62.2625 590.79156,61.688278 C 591.88075,60.795054 592.61676,60.088674 592.99957,59.569138 C 593.38238,59.045055 593.57379,58.55059 593.57379,58.085739 C 593.57379,57.598117 593.39833,57.187961 593.04742,56.85527 C 592.70107,56.51804 592.24762,56.34942 591.68707,56.349411 C 591.09462,56.34942 590.62066,56.527154 590.2652,56.882614 C 589.90973,57.238091 589.72971,57.730278 589.72516,58.359177 L 588.46051,58.229294 C 588.54711,57.285943 588.87294,56.56817 589.43805,56.075974 C 590.00315,55.579239 590.76194,55.330866 591.71442,55.330856 C 592.676,55.330866 593.43707,55.597468 593.99762,56.130661 C 594.55816,56.663873 594.83843,57.324679 594.83844,58.113083 C 594.83843,58.514131 594.75644,58.908337 594.59235,59.2957 C 594.42828,59.683076 594.15484,60.090953 593.77203,60.519333 C 593.39377,60.947723 592.76259,61.535613 591.87848,62.283005 C 591.14019,62.902799 590.66624,63.324348 590.4566,63.547653 C 590.24697,63.766405 590.07379,63.987433 589.93707,64.210739 L 594.85211,64.210739"
|
||||
id="path5168"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5510,7 +6536,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5103">
|
||||
<path
|
||||
d="m 583.46417,143.86147 l -1.23047,0 l 0,-7.84082 c -0.29622,0.28255 -0.68587,0.56511 -1.16894,0.84765 c -0.47852,0.28256 -0.90918,0.49447 -1.29199,0.63574 l 0,-1.18945 c 0.68814,-0.32356 1.28971,-0.71549 1.80468,-1.17578 c 0.51497,-0.46028 0.87956,-0.90689 1.09375,-1.33984 l 0.79297,0 l 0,10.0625"
|
||||
d="M 583.46417,143.86147 L 582.2337,143.86147 L 582.2337,136.02065 C 581.93748,136.3032 581.54783,136.58576 581.06476,136.8683 C 580.58624,137.15086 580.15558,137.36277 579.77277,137.50404 L 579.77277,136.31459 C 580.46091,135.99103 581.06248,135.5991 581.57745,135.13881 C 582.09242,134.67853 582.45701,134.23192 582.6712,133.79897 L 583.46417,133.79897 L 583.46417,143.86147"
|
||||
id="path5171"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5518,7 +6544,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5137">
|
||||
<path
|
||||
d="m 562.91168,216.91772 c 0,-1.18489 0.12077,-2.13736 0.36231,-2.85742 c 0.24609,-0.7246 0.60839,-1.28287 1.08691,-1.6748 c 0.48307,-0.39192 1.08919,-0.58788 1.81836,-0.58789 c 0.53776,1e-5 1.00944,0.10938 1.41504,0.32812 c 0.40559,0.2142 0.74055,0.52638 1.00488,0.93653 c 0.26432,0.4056 0.47168,0.90235 0.62207,1.49023 c 0.15039,0.58334 0.22558,1.37175 0.22559,2.36523 c -10e-6,1.17579 -0.12078,2.12598 -0.36231,2.85059 c -0.24154,0.72005 -0.60384,1.27832 -1.08691,1.67481 c -0.47852,0.39192 -1.08464,0.58789 -1.81836,0.58789 c -0.96615,0 -1.72494,-0.34636 -2.27637,-1.03907 c -0.66081,-0.83398 -0.99121,-2.19205 -0.99121,-4.07422 m 1.26465,0 c 0,1.64519 0.1914,2.74122 0.57422,3.28809 c 0.38737,0.54232 0.8636,0.81348 1.42871,0.81348 c 0.5651,0 1.03906,-0.27344 1.42188,-0.82032 c 0.38736,-0.54687 0.58104,-1.64062 0.58105,-3.28125 c -10e-6,-1.64973 -0.19369,-2.74576 -0.58105,-3.28808 c -0.38282,-0.54231 -0.86134,-0.81347 -1.43555,-0.81348 c -0.56511,1e-5 -1.01628,0.23927 -1.35352,0.71778 c -0.42383,0.61068 -0.63574,1.73861 -0.63574,3.38378"
|
||||
d="M 562.91168,216.91772 C 562.91168,215.73283 563.03245,214.78036 563.27399,214.0603 C 563.52008,213.3357 563.88238,212.77743 564.3609,212.3855 C 564.84397,211.99358 565.45009,211.79762 566.17926,211.79761 C 566.71702,211.79762 567.1887,211.90699 567.5943,212.12573 C 567.99989,212.33993 568.33485,212.65211 568.59918,213.06226 C 568.8635,213.46786 569.07086,213.96461 569.22125,214.55249 C 569.37164,215.13583 569.44683,215.92424 569.44684,216.91772 C 569.44683,218.09351 569.32606,219.0437 569.08453,219.76831 C 568.84299,220.48836 568.48069,221.04663 567.99762,221.44312 C 567.5191,221.83504 566.91298,222.03101 566.17926,222.03101 C 565.21311,222.03101 564.45432,221.68465 563.90289,220.99194 C 563.24208,220.15796 562.91168,218.79989 562.91168,216.91772 M 564.17633,216.91772 C 564.17633,218.56291 564.36773,219.65894 564.75055,220.20581 C 565.13792,220.74813 565.61415,221.01929 566.17926,221.01929 C 566.74436,221.01929 567.21832,220.74585 567.60114,220.19897 C 567.9885,219.6521 568.18218,218.55835 568.18219,216.91772 C 568.18218,215.26799 567.9885,214.17196 567.60114,213.62964 C 567.21832,213.08733 566.7398,212.81617 566.16559,212.81616 C 565.60048,212.81617 565.14931,213.05543 564.81207,213.53394 C 564.38824,214.14462 564.17633,215.27255 564.17633,216.91772"
|
||||
id="path5186"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5527,7 +6553,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5129">
|
||||
<path
|
||||
d="m 519.79114,369.1806 l 0,1.18262 l -6.62403,0 c -0.009,-0.29622 0.0387,-0.58105 0.14356,-0.85449 c 0.16862,-0.45117 0.4375,-0.89551 0.80664,-1.33301 c 0.3737,-0.4375 0.91146,-0.94336 1.61328,-1.51758 c 1.08919,-0.89322 1.82519,-1.5996 2.20801,-2.11914 c 0.38281,-0.52408 0.57421,-1.01855 0.57422,-1.4834 c -1e-5,-0.48762 -0.17546,-0.89778 -0.52637,-1.23047 c -0.34636,-0.33723 -0.79981,-0.50585 -1.36035,-0.50586 c -0.59245,10e-6 -1.06641,0.17775 -1.42188,0.53321 c -0.35547,0.35547 -0.53548,0.84766 -0.54004,1.47656 l -1.26464,-0.12988 c 0.0866,-0.94335 0.41243,-1.66113 0.97754,-2.15332 c 0.5651,-0.49674 1.32389,-0.74511 2.27636,-0.74512 c 0.96159,10e-6 1.72265,0.26661 2.28321,0.7998 c 0.56054,0.53322 0.84081,1.19402 0.84082,1.98243 c -10e-6,0.40105 -0.082,0.79525 -0.2461,1.18261 c -0.16407,0.38738 -0.4375,0.79526 -0.82031,1.22364 c -0.37826,0.42839 -1.00945,1.01628 -1.89356,1.76367 c -0.73828,0.61979 -1.21224,1.04134 -1.42187,1.26465 c -0.20964,0.21875 -0.38281,0.43978 -0.51953,0.66308 l 4.91504,0"
|
||||
d="M 519.79114,369.1806 L 519.79114,370.36322 L 513.16711,370.36322 C 513.15811,370.067 513.20581,369.78217 513.31067,369.50873 C 513.47929,369.05756 513.74817,368.61322 514.11731,368.17572 C 514.49101,367.73822 515.02877,367.23236 515.73059,366.65814 C 516.81978,365.76492 517.55578,365.05854 517.9386,364.539 C 518.32141,364.01492 518.51281,363.52045 518.51282,363.0556 C 518.51281,362.56798 518.33736,362.15782 517.98645,361.82513 C 517.64009,361.4879 517.18664,361.31928 516.6261,361.31927 C 516.03365,361.31928 515.55969,361.49702 515.20422,361.85248 C 514.84875,362.20795 514.66874,362.70014 514.66418,363.32904 L 513.39954,363.19916 C 513.48614,362.25581 513.81197,361.53803 514.37708,361.04584 C 514.94218,360.5491 515.70097,360.30073 516.65344,360.30072 C 517.61503,360.30073 518.37609,360.56733 518.93665,361.10052 C 519.49719,361.63374 519.77746,362.29454 519.77747,363.08295 C 519.77746,363.484 519.69547,363.8782 519.53137,364.26556 C 519.3673,364.65294 519.09387,365.06082 518.71106,365.4892 C 518.3328,365.91759 517.70161,366.50548 516.8175,367.25287 C 516.07922,367.87266 515.60526,368.29421 515.39563,368.51752 C 515.18599,368.73627 515.01282,368.9573 514.8761,369.1806 L 519.79114,369.1806"
|
||||
id="path5180"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5536,7 +6562,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5133">
|
||||
<path
|
||||
d="m 545.78973,296.81775 l -1.23046,0 l 0,-7.84082 c -0.29623,0.28256 -0.68588,0.56511 -1.16895,0.84765 c -0.47852,0.28256 -0.90918,0.49448 -1.29199,0.63575 l 0,-1.18946 c 0.68815,-0.32356 1.28971,-0.71548 1.80469,-1.17578 c 0.51497,-0.46027 0.87955,-0.90689 1.09375,-1.33984 l 0.79296,0 l 0,10.0625"
|
||||
d="M 545.78973,296.81775 L 544.55927,296.81775 L 544.55927,288.97693 C 544.26304,289.25949 543.87339,289.54204 543.39032,289.82458 C 542.9118,290.10714 542.48114,290.31906 542.09833,290.46033 L 542.09833,289.27087 C 542.78648,288.94731 543.38804,288.55539 543.90302,288.09509 C 544.41799,287.63482 544.78257,287.1882 544.99677,286.75525 L 545.78973,286.75525 L 545.78973,296.81775"
|
||||
id="path5183"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5545,7 +6571,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5125">
|
||||
<path
|
||||
d="m 478.23416,437.97165 l 1.23047,-0.16406 c 0.14127,0.69726 0.38053,1.20084 0.71777,1.51074 c 0.3418,0.30534 0.75651,0.45801 1.24414,0.45801 c 0.57878,0 1.06641,-0.20052 1.46289,-0.60157 c 0.40104,-0.40104 0.60156,-0.89778 0.60157,-1.49023 c -10e-6,-0.5651 -0.18458,-1.02994 -0.55371,-1.39453 c -0.36915,-0.36914 -0.83855,-0.55371 -1.40821,-0.55371 c -0.23242,0 -0.52181,0.0456 -0.86816,0.13672 l 0.13672,-1.08008 c 0.082,0.009 0.14811,0.0137 0.19824,0.0137 c 0.52408,10e-6 0.99576,-0.13671 1.41504,-0.41016 c 0.41926,-0.27343 0.6289,-0.69498 0.62891,-1.26464 c -10e-6,-0.45117 -0.15268,-0.82487 -0.45801,-1.1211 c -0.30535,-0.29621 -0.69955,-0.44433 -1.18262,-0.44433 c -0.47852,0 -0.87728,0.1504 -1.19629,0.45117 c -0.31901,0.30079 -0.52409,0.75196 -0.61523,1.35351 l -1.23047,-0.21875 c 0.15039,-0.82486 0.49218,-1.46288 1.02539,-1.91406 c 0.5332,-0.45572 1.19629,-0.68358 1.98926,-0.68359 c 0.54687,1e-5 1.05045,0.1185 1.51074,0.35547 c 0.46028,0.23243 0.81119,0.55144 1.05273,0.95703 c 0.24609,0.4056 0.36914,0.83627 0.36914,1.29199 c 0,0.43295 -0.11621,0.82715 -0.34863,1.18262 c -0.23243,0.35547 -0.5765,0.63802 -1.03223,0.84765 c 0.59245,0.13673 1.05273,0.42156 1.38086,0.85449 c 0.32812,0.42839 0.49218,0.96615 0.49219,1.61329 c -10e-6,0.875 -0.31902,1.61784 -0.95703,2.22851 c -0.63803,0.60612 -1.44467,0.90918 -2.41992,0.90918 c -0.87956,0 -1.61101,-0.26204 -2.19434,-0.78613 c -0.57877,-0.52409 -0.90918,-1.20312 -0.99121,-2.03711"
|
||||
d="M 478.23416,437.97165 L 479.46463,437.80759 C 479.6059,438.50485 479.84516,439.00843 480.1824,439.31833 C 480.5242,439.62367 480.93891,439.77634 481.42654,439.77634 C 482.00532,439.77634 482.49295,439.57582 482.88943,439.17477 C 483.29047,438.77373 483.49099,438.27699 483.491,437.68454 C 483.49099,437.11944 483.30642,436.6546 482.93729,436.29001 C 482.56814,435.92087 482.09874,435.7363 481.52908,435.7363 C 481.29666,435.7363 481.00727,435.7819 480.66092,435.87302 L 480.79764,434.79294 C 480.87964,434.80194 480.94575,434.80664 480.99588,434.80664 C 481.51996,434.80665 481.99164,434.66993 482.41092,434.39648 C 482.83018,434.12305 483.03982,433.7015 483.03983,433.13184 C 483.03982,432.68067 482.88715,432.30697 482.58182,432.01074 C 482.27647,431.71453 481.88227,431.56641 481.3992,431.56641 C 480.92068,431.56641 480.52192,431.71681 480.20291,432.01758 C 479.8839,432.31837 479.67882,432.76954 479.58768,433.37109 L 478.35721,433.15234 C 478.5076,432.32748 478.84939,431.68946 479.3826,431.23828 C 479.9158,430.78256 480.57889,430.5547 481.37186,430.55469 C 481.91873,430.5547 482.42231,430.67319 482.8826,430.91016 C 483.34288,431.14259 483.69379,431.4616 483.93533,431.86719 C 484.18142,432.27279 484.30447,432.70346 484.30447,433.15918 C 484.30447,433.59213 484.18826,433.98633 483.95584,434.3418 C 483.72341,434.69727 483.37934,434.97982 482.92361,435.18945 C 483.51606,435.32618 483.97634,435.61101 484.30447,436.04394 C 484.63259,436.47233 484.79665,437.01009 484.79666,437.65723 C 484.79665,438.53223 484.47764,439.27507 483.83963,439.88574 C 483.2016,440.49186 482.39496,440.79492 481.41971,440.79492 C 480.54015,440.79492 479.8087,440.53288 479.22537,440.00879 C 478.6466,439.4847 478.31619,438.80567 478.23416,437.97168"
|
||||
id="path5177"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5554,7 +6580,7 @@
|
||||
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="text5121">
|
||||
<path
|
||||
d="m 442.86176,508.83423 l 0,-2.39942 l -4.34766,0 l 0,-1.12793 l 4.57324,-6.49414 l 1.00488,0 l 0,6.49414 l 1.35352,0 l 0,1.12793 l -1.35352,0 l 0,2.39942 l -1.23046,0 m 0,-3.52735 l 0,-4.51855 l -3.1377,4.51855 l 3.1377,0"
|
||||
d="M 442.86176,508.83423 L 442.86176,506.43481 L 438.5141,506.43481 L 438.5141,505.30688 L 443.08734,498.81274 L 444.09222,498.81274 L 444.09222,505.30688 L 445.44574,505.30688 L 445.44574,506.43481 L 444.09222,506.43481 L 444.09222,508.83423 L 442.86176,508.83423 M 442.86176,505.30688 L 442.86176,500.78833 L 439.72406,505.30688 L 442.86176,505.30688"
|
||||
id="path5174"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -5580,7 +6606,7 @@
|
||||
sodipodi:nodetypes="csssscc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4655"
|
||||
d="m 640.50296,463.50296 l 0,14.99408 c 0,1.108 -0.892,2 -2,2 l -636.9999976,0 c -1.10800005,0 -2.00000005,-0.892 -2.00000005,-2 l 3e-8,-14.99408 c 0,-1.108 640.99999762,0 640.99999762,0 z"
|
||||
d="M 640.50296,463.50296 L 640.50296,478.49704 C 640.50296,479.60504 639.61096,480.49704 638.50296,480.49704 L 1.5029624,480.49704 C 0.39496235,480.49704 -0.49703765,479.60504 -0.49703765,478.49704 L -0.49703762,463.50296 C -0.49703762,462.39496 640.50296,463.50296 640.50296,463.50296 z"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
@ -5618,33 +6644,33 @@
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
id="path4770"
|
||||
d="m 588.36773,476.43933 l 0,-8.77666 l 3.89142,0 c 0.78227,1e-5 1.37696,0.0798 1.78407,0.23947 c 0.4071,0.15567 0.73238,0.43306 0.97585,0.83217 c 0.24346,0.39913 0.36519,0.84016 0.3652,1.32308 c -10e-6,0.62264 -0.20157,1.14748 -0.60467,1.57453 c -0.40312,0.42707 -1.02575,0.69847 -1.86788,0.81421 c 0.30731,0.14768 0.5408,0.29336 0.70045,0.43704 c 0.33925,0.31131 0.66054,0.70046 0.96388,1.16742 l 1.52663,2.38874 l -1.46078,0 l -1.16144,-1.82598 c -0.33926,-0.52683 -0.61864,-0.92994 -0.83815,-1.20933 c -0.21952,-0.27938 -0.41709,-0.47495 -0.59269,-0.58671 c -0.17163,-0.11175 -0.34724,-0.18958 -0.52684,-0.23348 c -0.13172,-0.0279 -0.34724,-0.0419 -0.64658,-0.0419 l -1.34703,0 l 0,3.89741 l -1.16144,0 m 1.16144,-4.90319 l 2.4965,0 c 0.53082,0 0.94591,-0.0539 1.24525,-0.16165 c 0.29934,-0.11175 0.52684,-0.28736 0.6825,-0.52684 c 0.15565,-0.24345 0.23348,-0.50687 0.23349,-0.79026 c -10e-6,-0.41507 -0.15168,-0.75632 -0.455,-1.02374 c -0.29935,-0.2674 -0.7743,-0.40111 -1.42486,-0.40112 l -2.77788,0 l 0,2.90361"
|
||||
d="M 588.36773,476.43933 L 588.36773,467.66267 L 592.25915,467.66267 C 593.04142,467.66268 593.63611,467.74247 594.04322,467.90214 C 594.45032,468.05781 594.7756,468.3352 595.01907,468.73431 C 595.26253,469.13344 595.38426,469.57447 595.38427,470.05739 C 595.38426,470.68003 595.1827,471.20487 594.7796,471.63192 C 594.37648,472.05899 593.75385,472.33039 592.91172,472.44613 C 593.21903,472.59381 593.45252,472.73949 593.61217,472.88317 C 593.95142,473.19448 594.27271,473.58363 594.57605,474.05059 L 596.10268,476.43933 L 594.6419,476.43933 L 593.48046,474.61335 C 593.1412,474.08652 592.86182,473.68341 592.64231,473.40402 C 592.42279,473.12464 592.22522,472.92907 592.04962,472.81731 C 591.87799,472.70556 591.70238,472.62773 591.52278,472.58383 C 591.39106,472.55593 591.17554,472.54193 590.8762,472.54193 L 589.52917,472.54193 L 589.52917,476.43934 L 588.36773,476.43934 M 589.52917,471.53615 L 592.02567,471.53615 C 592.55649,471.53615 592.97158,471.48225 593.27092,471.3745 C 593.57026,471.26275 593.79776,471.08714 593.95342,470.84766 C 594.10907,470.60421 594.1869,470.34079 594.18691,470.0574 C 594.1869,469.64233 594.03523,469.30108 593.73191,469.03366 C 593.43256,468.76626 592.95761,468.63255 592.30705,468.63254 L 589.52917,468.63254 L 589.52917,471.53615"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
id="path4772"
|
||||
d="m 602.96955,467.66267 l 1.16144,0 l 0,5.07083 c -10e-6,0.88206 -0.0998,1.58251 -0.29934,2.10137 c -0.19957,0.51885 -0.56077,0.94192 -1.08361,1.2692 c -0.51886,0.32329 -1.20136,0.48493 -2.04749,0.48493 c -0.82219,0 -1.49471,-0.14169 -2.01755,-0.42506 c -0.52285,-0.28338 -0.89603,-0.69248 -1.11954,-1.2273 c -0.22351,-0.53881 -0.33526,-1.27319 -0.33526,-2.20314 l 0,-5.07083 l 1.16144,0 l 0,5.06484 c 0,0.76232 0.0698,1.32508 0.20954,1.68828 c 0.14368,0.35921 0.38715,0.6366 0.73039,0.83217 c 0.34723,0.19557 0.7703,0.29335 1.2692,0.29335 c 0.85412,0 1.46278,-0.19357 1.82598,-0.58072 c 0.36319,-0.38715 0.54479,-1.1315 0.5448,-2.23308 l 0,-5.06484"
|
||||
d="M 602.96955,467.66267 L 604.13099,467.66267 L 604.13099,472.7335 C 604.13098,473.61556 604.03119,474.31601 603.83165,474.83487 C 603.63208,475.35372 603.27088,475.77679 602.74804,476.10407 C 602.22918,476.42736 601.54668,476.589 600.70055,476.589 C 599.87836,476.589 599.20584,476.44731 598.683,476.16394 C 598.16015,475.88056 597.78697,475.47146 597.56346,474.93664 C 597.33995,474.39783 597.2282,473.66345 597.2282,472.7335 L 597.2282,467.66267 L 598.38964,467.66267 L 598.38964,472.72751 C 598.38964,473.48983 598.45944,474.05259 598.59918,474.41579 C 598.74286,474.775 598.98633,475.05239 599.32957,475.24796 C 599.6768,475.44353 600.09987,475.54131 600.59877,475.54131 C 601.45289,475.54131 602.06155,475.34774 602.42475,474.96059 C 602.78794,474.57344 602.96954,473.82909 602.96955,472.72751 L 602.96955,467.66267"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
id="path4768"
|
||||
d="m 579.52521,476.43933 l 0,-8.77666 l 1.16144,0 l 0,3.60406 l 4.56195,0 l 0,-3.60406 l 1.16144,0 l 0,8.77666 l -1.16144,0 l 0,-4.13688 l -4.56195,0 l 0,4.13688 l -1.16144,0"
|
||||
d="M 579.52521,476.43933 L 579.52521,467.66267 L 580.68665,467.66267 L 580.68665,471.26673 L 585.2486,471.26673 L 585.2486,467.66267 L 586.41004,467.66267 L 586.41004,476.43933 L 585.2486,476.43933 L 585.2486,472.30245 L 580.68665,472.30245 L 580.68665,476.43933 L 579.52521,476.43933"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
id="path4774"
|
||||
d="m 605.67559,473.61954 l 1.09558,-0.0958 c 0.0519,0.43903 0.17162,0.80023 0.35921,1.08361 c 0.19158,0.27938 0.48693,0.50688 0.88605,0.68249 c 0.39912,0.17163 0.84813,0.25744 1.34703,0.25744 c 0.44302,0 0.83416,-0.0659 1.17342,-0.19757 c 0.33924,-0.13171 0.59069,-0.31131 0.75433,-0.53881 c 0.16763,-0.23149 0.25144,-0.48293 0.25145,-0.75434 c -10e-6,-0.27539 -0.0798,-0.51486 -0.23947,-0.71842 c -0.15966,-0.20753 -0.42308,-0.38115 -0.79026,-0.52085 c -0.23549,-0.0918 -0.75634,-0.23348 -1.56256,-0.42506 c -0.80622,-0.19557 -1.37098,-0.37916 -1.69426,-0.55079 c -0.41908,-0.21951 -0.73239,-0.49091 -0.93993,-0.8142 c -0.20356,-0.32728 -0.30533,-0.69247 -0.30533,-1.09559 c 0,-0.44302 0.12572,-0.8561 0.37717,-1.23927 c 0.25144,-0.38714 0.61863,-0.68049 1.10157,-0.88006 c 0.48293,-0.19955 1.01975,-0.29933 1.61045,-0.29934 c 0.65056,10e-6 1.2233,0.10578 1.71822,0.3173 c 0.49889,0.20755 0.88205,0.51488 1.14946,0.92197 c 0.26741,0.40711 0.41109,0.86809 0.43105,1.38295 l -1.11354,0.0838 c -0.0599,-0.55477 -0.26343,-0.97385 -0.61066,-1.25723 c -0.34325,-0.28337 -0.85212,-0.42506 -1.52663,-0.42506 c -0.70246,0 -1.21533,0.12972 -1.53861,0.38914 c -0.3193,0.25544 -0.47895,0.56476 -0.47895,0.92795 c 0,0.31531 0.11375,0.57474 0.34125,0.77829 c 0.22351,0.20355 0.80622,0.41309 1.74815,0.62861 c 0.94591,0.21154 1.59448,0.39713 1.94571,0.55678 c 0.51087,0.23548 0.88804,0.53482 1.13151,0.89802 c 0.24345,0.35921 0.36518,0.77429 0.36519,1.24525 c -10e-6,0.46698 -0.13371,0.908 -0.40111,1.32309 c -0.26742,0.41109 -0.65257,0.73238 -1.15546,0.96387 c -0.4989,0.2275 -1.06166,0.34125 -1.68828,0.34125 c -0.79425,0 -1.46078,-0.11574 -1.99959,-0.34723 c -0.53482,-0.23149 -0.9559,-0.57873 -1.26322,-1.04171 c -0.30333,-0.46697 -0.46298,-0.99381 -0.47894,-1.58052"
|
||||
d="M 605.67559,473.61954 L 606.77117,473.52374 C 606.82307,473.96277 606.94279,474.32397 607.13038,474.60735 C 607.32196,474.88673 607.61731,475.11423 608.01643,475.28984 C 608.41555,475.46147 608.86456,475.54728 609.36346,475.54728 C 609.80648,475.54728 610.19762,475.48138 610.53688,475.34971 C 610.87612,475.218 611.12757,475.0384 611.29121,474.8109 C 611.45884,474.57941 611.54265,474.32797 611.54266,474.05656 C 611.54265,473.78117 611.46286,473.5417 611.30319,473.33814 C 611.14353,473.13061 610.88011,472.95699 610.51293,472.81729 C 610.27744,472.72549 609.75659,472.58381 608.95037,472.39223 C 608.14415,472.19666 607.57939,472.01307 607.25611,471.84144 C 606.83703,471.62193 606.52372,471.35053 606.31618,471.02724 C 606.11262,470.69996 606.01085,470.33477 606.01085,469.93165 C 606.01085,469.48863 606.13657,469.07555 606.38802,468.69238 C 606.63946,468.30524 607.00665,468.01189 607.48959,467.81232 C 607.97252,467.61277 608.50934,467.51299 609.10004,467.51298 C 609.7506,467.51299 610.32334,467.61876 610.81826,467.83028 C 611.31715,468.03783 611.70031,468.34516 611.96772,468.75225 C 612.23513,469.15936 612.37881,469.62034 612.39877,470.1352 L 611.28523,470.219 C 611.22533,469.66423 611.0218,469.24515 610.67457,468.96177 C 610.33132,468.6784 609.82245,468.53671 609.14794,468.53671 C 608.44548,468.53671 607.93261,468.66643 607.60933,468.92585 C 607.29003,469.18129 607.13038,469.49061 607.13038,469.8538 C 607.13038,470.16911 607.24413,470.42854 607.47163,470.63209 C 607.69514,470.83564 608.27785,471.04518 609.21978,471.2607 C 610.16569,471.47224 610.81426,471.65783 611.16549,471.81748 C 611.67636,472.05296 612.05353,472.3523 612.297,472.7155 C 612.54045,473.07471 612.66218,473.48979 612.66219,473.96075 C 612.66218,474.42773 612.52848,474.86875 612.26108,475.28384 C 611.99366,475.69493 611.60851,476.01622 611.10562,476.24771 C 610.60672,476.47521 610.04396,476.58896 609.41734,476.58896 C 608.62309,476.58896 607.95656,476.47322 607.41775,476.24173 C 606.88293,476.01024 606.46185,475.663 606.15453,475.20002 C 605.8512,474.73305 605.69155,474.20621 605.67559,473.6195"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
id="path4766"
|
||||
d="m 574.17899,476.43933 l 0,-7.74094 l -2.89162,0 l 0,-1.03572 l 6.95667,0 l 0,1.03572 l -2.9036,0 l 0,7.74094 l -1.16145,0"
|
||||
d="M 574.17899,476.43933 L 574.17899,468.69839 L 571.28737,468.69839 L 571.28737,467.66267 L 578.24404,467.66267 L 578.24404,468.69839 L 575.34044,468.69839 L 575.34044,476.43933 L 574.17899,476.43933"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
<path
|
||||
style="font-size:12.26098156px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
|
||||
id="path4776"
|
||||
d="m 616.49354,476.43933 l 0,-7.74094 l -2.89163,0 l 0,-1.03572 l 6.95667,0 l 0,1.03572 l -2.9036,0 l 0,7.74094 l -1.16144,0"
|
||||
d="M 616.49354,476.43933 L 616.49354,468.69839 L 613.60191,468.69839 L 613.60191,467.66267 L 620.55858,467.66267 L 620.55858,468.69839 L 617.65498,468.69839 L 617.65498,476.43933 L 616.49354,476.43933"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
@ -5678,23 +6704,23 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4715"
|
||||
d="m 404.79999,473.51954 l 1.09559,-0.0958 c 0.0519,0.43903 0.17162,0.80024 0.35921,1.08361 c 0.19157,0.27939 0.48692,0.50689 0.88604,0.6825 c 0.39912,0.17162 0.84813,0.25743 1.34704,0.25743 c 0.44302,0 0.83415,-0.0659 1.17341,-0.19756 c 0.33925,-0.13171 0.59069,-0.31132 0.75434,-0.53882 c 0.16762,-0.23148 0.25144,-0.48293 0.25144,-0.75433 c 0,-0.27539 -0.0798,-0.51487 -0.23947,-0.71842 c -0.15965,-0.20754 -0.42307,-0.38116 -0.79026,-0.52085 c -0.23548,-0.0918 -0.75633,-0.23349 -1.56255,-0.42507 c -0.80623,-0.19556 -1.37098,-0.37916 -1.69427,-0.55078 c -0.41908,-0.21951 -0.73239,-0.49092 -0.93993,-0.81421 c -0.20355,-0.32727 -0.30533,-0.69247 -0.30533,-1.09558 c 0,-0.44302 0.12573,-0.85611 0.37717,-1.23927 c 0.25145,-0.38714 0.61864,-0.6805 1.10158,-0.88006 c 0.48293,-0.19956 1.01974,-0.29934 1.61045,-0.29934 c 0.65056,0 1.2233,0.10577 1.71821,0.3173 c 0.49889,0.20755 0.88205,0.51487 1.14947,0.92196 c 0.2674,0.40711 0.41108,0.8681 0.43105,1.38296 l -1.11355,0.0838 c -0.0599,-0.55477 -0.26342,-0.97384 -0.61065,-1.25723 c -0.34325,-0.28337 -0.85213,-0.42505 -1.52664,-0.42506 c -0.70245,1e-5 -1.21532,0.12972 -1.53861,0.38914 c -0.3193,0.25545 -0.47894,0.56476 -0.47894,0.92796 c 0,0.31531 0.11374,0.57474 0.34125,0.77828 c 0.2235,0.20356 0.80622,0.4131 1.74814,0.62862 c 0.94591,0.21154 1.59448,0.39713 1.94572,0.55677 c 0.51086,0.23549 0.88803,0.53483 1.1315,0.89802 c 0.24346,0.35921 0.36519,0.7743 0.3652,1.24526 c -1e-5,0.46697 -0.13372,0.908 -0.40112,1.32308 c -0.26742,0.4111 -0.65257,0.73239 -1.15545,0.96388 c -0.49891,0.2275 -1.06167,0.34124 -1.68828,0.34125 c -0.79426,-1e-5 -1.46079,-0.11575 -1.9996,-0.34724 c -0.53482,-0.23149 -0.95589,-0.57872 -1.26321,-1.0417 c -0.30333,-0.46697 -0.46298,-0.99381 -0.47895,-1.58052" />
|
||||
d="M 404.79999,473.51954 L 405.89558,473.42374 C 405.94748,473.86277 406.0672,474.22398 406.25479,474.50735 C 406.44636,474.78674 406.74171,475.01424 407.14083,475.18985 C 407.53995,475.36147 407.98896,475.44728 408.48787,475.44728 C 408.93089,475.44728 409.32202,475.38138 409.66128,475.24972 C 410.00053,475.11801 410.25197,474.9384 410.41562,474.7109 C 410.58324,474.47942 410.66706,474.22797 410.66706,473.95657 C 410.66706,473.68118 410.58726,473.4417 410.42759,473.23815 C 410.26794,473.03061 410.00452,472.85699 409.63733,472.7173 C 409.40185,472.6255 408.881,472.48381 408.07478,472.29223 C 407.26855,472.09667 406.7038,471.91307 406.38051,471.74145 C 405.96143,471.52194 405.64812,471.25053 405.44058,470.92724 C 405.23703,470.59997 405.13525,470.23477 405.13525,469.83166 C 405.13525,469.38864 405.26098,468.97555 405.51242,468.59239 C 405.76387,468.20525 406.13106,467.91189 406.614,467.71233 C 407.09693,467.51277 407.63374,467.41299 408.22445,467.41299 C 408.87501,467.41299 409.44775,467.51876 409.94266,467.73029 C 410.44155,467.93784 410.82471,468.24516 411.09213,468.65225 C 411.35953,469.05936 411.50321,469.52035 411.52318,470.03521 L 410.40963,470.11901 C 410.34973,469.56424 410.14621,469.14517 409.79898,468.86178 C 409.45573,468.57841 408.94685,468.43673 408.27234,468.43672 C 407.56989,468.43673 407.05702,468.56644 406.73373,468.82586 C 406.41443,469.08131 406.25479,469.39062 406.25479,469.75382 C 406.25479,470.06913 406.36853,470.32856 406.59604,470.5321 C 406.81954,470.73566 407.40226,470.9452 408.34418,471.16072 C 409.29009,471.37226 409.93866,471.55785 410.2899,471.71749 C 410.80076,471.95298 411.17793,472.25232 411.4214,472.61551 C 411.66486,472.97472 411.78659,473.38981 411.7866,473.86077 C 411.78659,474.32774 411.65288,474.76877 411.38548,475.18385 C 411.11806,475.59495 410.73291,475.91624 410.23003,476.14773 C 409.73112,476.37523 409.16836,476.48897 408.54175,476.48898 C 407.74749,476.48897 407.08096,476.37323 406.54215,476.14174 C 406.00733,475.91025 405.58626,475.56302 405.27894,475.10004 C 404.97561,474.63307 404.81596,474.10623 404.79999,473.51952" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4717"
|
||||
d="m 415.61815,476.33932 l 0,-7.74094 l -2.89162,0 l 0,-1.03571 l 6.95667,0 l 0,1.03571 l -2.90361,0 l 0,7.74094 l -1.16144,0" />
|
||||
d="M 415.61815,476.33932 L 415.61815,468.59838 L 412.72653,468.59838 L 412.72653,467.56267 L 419.6832,467.56267 L 419.6832,468.59838 L 416.77959,468.59838 L 416.77959,476.33932 L 415.61815,476.33932" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4719"
|
||||
d="m 419.05458,476.33932 l 3.37057,-8.77665 l 1.25125,0 l 3.59208,8.77665 l -1.32308,0 l -1.02375,-2.65814 l -3.66991,0 l -0.96388,2.65814 l -1.23328,0 m 2.53242,-3.60405 l 2.97544,0 l -0.91598,-2.43065 c -0.27939,-0.73836 -0.48693,-1.34503 -0.62262,-1.81999 c -0.11176,0.56277 -0.26941,1.12154 -0.47296,1.67631 l -0.96388,2.57433" />
|
||||
d="M 419.05458,476.33932 L 422.42515,467.56267 L 423.6764,467.56267 L 427.26848,476.33932 L 425.9454,476.33932 L 424.92165,473.68118 L 421.25174,473.68118 L 420.28786,476.33932 L 419.05458,476.33932 M 421.587,472.73527 L 424.56244,472.73527 L 423.64646,470.30462 C 423.36707,469.56626 423.15953,468.95959 423.02384,468.48463 C 422.91208,469.0474 422.75443,469.60617 422.55088,470.16094 L 421.587,472.73527" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4721"
|
||||
d="m 428.16052,476.33932 l 0,-8.77665 l 3.29274,0 c 0.67052,0 1.20733,0.0898 1.61045,0.2694 c 0.4071,0.17562 0.7244,0.44902 0.9519,0.82019 c 0.23149,0.3672 0.34723,0.75235 0.34724,1.15546 c -10e-6,0.37518 -0.10178,0.7284 -0.30533,1.05966 c -0.20356,0.33128 -0.51088,0.59869 -0.92197,0.80224 c 0.53083,0.15566 0.93793,0.42107 1.22131,0.79624 c 0.28736,0.37518 0.43104,0.8182 0.43105,1.32907 c -1e-5,0.4111 -0.0878,0.79425 -0.26342,1.14947 c -0.17163,0.35123 -0.38516,0.62263 -0.64059,0.8142 c -0.25544,0.19158 -0.57673,0.33726 -0.96387,0.43704 c -0.38316,0.0958 -0.85412,0.14368 -1.41289,0.14368 l -3.34662,0 m 1.16144,-5.08878 l 1.89781,0 c 0.51487,0 0.88405,-0.0339 1.10756,-0.10178 c 0.29535,-0.0878 0.51686,-0.23348 0.66454,-0.43703 c 0.15166,-0.20355 0.22749,-0.45899 0.2275,-0.76632 c -1e-5,-0.29135 -0.0699,-0.54678 -0.20954,-0.76631 c -0.1397,-0.2235 -0.33926,-0.37516 -0.59868,-0.45499 c -0.25943,-0.0838 -0.70445,-0.12572 -1.33506,-0.12573 l -1.75413,0 l 0,2.65216 m 0,4.05307 l 2.18518,0 c 0.37517,0 0.63859,-0.014 0.79026,-0.0419 c 0.26741,-0.0479 0.49091,-0.12772 0.67052,-0.23947 c 0.1796,-0.11175 0.32728,-0.2734 0.44303,-0.48493 c 0.11573,-0.21553 0.17361,-0.46298 0.17361,-0.74237 c 0,-0.32727 -0.0838,-0.61065 -0.25144,-0.85012 c -0.16764,-0.24346 -0.40112,-0.41309 -0.70046,-0.50888 c -0.29535,-0.0998 -0.72241,-0.14967 -1.28118,-0.14967 l -2.02952,0 l 0,3.01735" />
|
||||
d="M 428.16052,476.33932 L 428.16052,467.56267 L 431.45326,467.56267 C 432.12378,467.56267 432.66059,467.65247 433.06371,467.83207 C 433.47081,468.00769 433.78811,468.28109 434.01561,468.65226 C 434.2471,469.01946 434.36284,469.40461 434.36285,469.80772 C 434.36284,470.1829 434.26107,470.53612 434.05752,470.86738 C 433.85396,471.19866 433.54664,471.46607 433.13555,471.66962 C 433.66638,471.82528 434.07348,472.09069 434.35686,472.46586 C 434.64422,472.84104 434.7879,473.28406 434.78791,473.79493 C 434.7879,474.20603 434.70011,474.58918 434.52449,474.9444 C 434.35286,475.29563 434.13933,475.56703 433.8839,475.7586 C 433.62846,475.95018 433.30717,476.09586 432.92003,476.19564 C 432.53687,476.29144 432.06591,476.33932 431.50714,476.33932 L 428.16052,476.33932 M 429.32196,471.25054 L 431.21977,471.25054 C 431.73464,471.25054 432.10382,471.21664 432.32733,471.14876 C 432.62268,471.06096 432.84419,470.91528 432.99187,470.71173 C 433.14353,470.50818 433.21936,470.25274 433.21937,469.94541 C 433.21936,469.65406 433.14947,469.39863 433.00983,469.1791 C 432.87013,468.9556 432.67057,468.80394 432.41115,468.72411 C 432.15172,468.64031 431.7067,468.59839 431.07609,468.59838 L 429.32196,468.59838 L 429.32196,471.25054 M 429.32196,475.30361 L 431.50714,475.30361 C 431.88231,475.30361 432.14573,475.28961 432.2974,475.26171 C 432.56481,475.21381 432.78831,475.13399 432.96792,475.02224 C 433.14752,474.91049 433.2952,474.74884 433.41095,474.53731 C 433.52668,474.32178 433.58456,474.07433 433.58456,473.79494 C 433.58456,473.46767 433.50076,473.18429 433.33312,472.94482 C 433.16548,472.70136 432.932,472.53173 432.63266,472.43594 C 432.33731,472.33614 431.91025,472.28627 431.35148,472.28627 L 429.32196,472.28627 L 429.32196,475.30362" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4723"
|
||||
d="m 443.42089,476.33932 l -1.07763,0 l 0,-6.86686 c -0.25943,0.24746 -0.60068,0.49491 -1.02374,0.74236 c -0.41908,0.24746 -0.79625,0.43305 -1.13151,0.55677 l 0,-1.0417 c 0.60267,-0.28337 1.12951,-0.62661 1.58052,-1.02973 c 0.451,-0.4031 0.7703,-0.79424 0.95789,-1.17342 l 0.69447,0 l 0,8.81258" />
|
||||
d="M 443.42089,476.33932 L 442.34326,476.33932 L 442.34326,469.47246 C 442.08383,469.71992 441.74258,469.96737 441.31952,470.21482 C 440.90044,470.46228 440.52327,470.64787 440.18801,470.77159 L 440.18801,469.72989 C 440.79068,469.44652 441.31752,469.10328 441.76853,468.70016 C 442.21953,468.29706 442.53883,467.90592 442.72642,467.52674 L 443.42089,467.52674 L 443.42089,476.33932" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -5722,47 +6748,47 @@
|
||||
id="warning-autopilot-label"
|
||||
transform="matrix(1.1017863,0,0,1.1017863,-42.744908,-48.294497)">
|
||||
<path
|
||||
d="m 393.41498,468.10666 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33398,8.74805 l -1.23047,0 l -0.79687,-2.24414 l -3.94336,0 l -0.79688,2.24414 l -1.24804,0 l 3.33984,-8.74805"
|
||||
d="M 393.41498,468.10666 L 391.80951,472.46017 L 395.02631,472.46017 L 393.41498,468.10666 M 392.74701,466.94064 L 394.08881,466.94064 L 397.42279,475.68869 L 396.19232,475.68869 L 395.39545,473.44455 L 391.45209,473.44455 L 390.65521,475.68869 L 389.40717,475.68869 L 392.74701,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6165"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 398.55951,466.94064 l 1.18945,0 l 0,5.31446 c 0,0.9375 0.16992,1.61328 0.50977,2.02734 c 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 c 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 c 0.33983,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 l 1.18945,0 l 0,5.46094 c 0,1.14063 -0.28321,2.00196 -0.8496,2.58399 c -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 c -1.10547,0 -1.94141,-0.29101 -2.50781,-0.87304 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
|
||||
d="M 398.55951,466.94064 L 399.74896,466.94064 L 399.74896,472.2551 C 399.74896,473.1926 399.91888,473.86838 400.25873,474.28244 C 400.59857,474.6926 401.14935,474.89768 401.91107,474.89767 C 402.66888,474.89768 403.21771,474.6926 403.55756,474.28244 C 403.89739,473.86838 404.06732,473.1926 404.06732,472.2551 L 404.06732,466.94064 L 405.25677,466.94064 L 405.25677,472.40158 C 405.25677,473.54221 404.97356,474.40354 404.40717,474.98557 C 403.84466,475.5676 403.01263,475.85861 401.91107,475.85861 C 400.8056,475.85861 399.96966,475.5676 399.40326,474.98557 C 398.84076,474.40354 398.55951,473.54221 398.55951,472.40158 L 398.55951,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6167"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 406.27045,466.94064 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
|
||||
d="M 406.27045,466.94064 L 413.67084,466.94064 L 413.67084,467.93674 L 410.56537,467.93674 L 410.56537,475.68869 L 409.37592,475.68869 L 409.37592,467.93674 L 406.27045,467.93674 L 406.27045,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6169"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 418.37006,467.74338 c -0.85938,10e-6 -1.54298,0.32032 -2.05079,0.96094 c -0.5039,0.64063 -0.75586,1.51367 -0.75585,2.61914 c -1e-5,1.10156 0.25195,1.97265 0.75585,2.61328 c 0.50781,0.64062 1.19141,0.96094 2.05079,0.96093 c 0.85937,10e-6 1.53905,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75585,-1.51172 0.75586,-2.61328 c -1e-5,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.50001,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22655,10e-6 2.20702,0.41212 2.9414,1.23633 c 0.73437,0.82032 1.10156,1.92188 1.10156,3.30469 c 0,1.37891 -0.36719,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.9414,1.23047 c -1.23048,0 -2.21485,-0.41015 -2.95313,-1.23047 c -0.73437,-0.82031 -1.10156,-1.92187 -1.10156,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10156,-3.30469 c 0.73828,-0.82421 1.72265,-1.23632 2.95313,-1.23633"
|
||||
d="M 418.37006,467.74338 C 417.51068,467.74339 416.82708,468.0637 416.31927,468.70432 C 415.81537,469.34495 415.56341,470.21799 415.56342,471.32346 C 415.56341,472.42502 415.81537,473.29611 416.31927,473.93674 C 416.82708,474.57736 417.51068,474.89768 418.37006,474.89767 C 419.22943,474.89768 419.90911,474.57736 420.40912,473.93674 C 420.91302,473.29611 421.16497,472.42502 421.16498,471.32346 C 421.16497,470.21799 420.91302,469.34495 420.40912,468.70432 C 419.90911,468.0637 419.22943,467.74339 418.37006,467.74338 M 418.37006,466.78244 C 419.59661,466.78245 420.57708,467.19456 421.31146,468.01877 C 422.04583,468.83909 422.41302,469.94065 422.41302,471.32346 C 422.41302,472.70237 422.04583,473.80393 421.31146,474.62814 C 420.57708,475.44846 419.59661,475.85861 418.37006,475.85861 C 417.13958,475.85861 416.15521,475.44846 415.41693,474.62814 C 414.68256,473.80783 414.31537,472.70627 414.31537,471.32346 C 414.31537,469.94065 414.68256,468.83909 415.41693,468.01877 C 416.15521,467.19456 417.13958,466.78245 418.37006,466.78244"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6171"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 425.44818,467.9133 l 0,3.28711 l 1.48828,0 c 0.55078,0 0.97656,-0.14257 1.27735,-0.42774 c 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 c -1e-5,-0.52343 -0.1504,-0.92772 -0.45117,-1.21289 c -0.30079,-0.28514 -0.72657,-0.42772 -1.27735,-0.42773 l -1.48828,0 m -1.18359,-0.97266 l 2.67187,0 c 0.98047,1e-5 1.7207,0.22267 2.22071,0.66797 c 0.5039,0.44142 0.75585,1.08985 0.75585,1.94531 c 0,0.86329 -0.25195,1.51563 -0.75585,1.95704 c -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 l 0,3.51562 l -1.18359,0 l 0,-8.74805"
|
||||
d="M 425.44818,467.9133 L 425.44818,471.20041 L 426.93646,471.20041 C 427.48724,471.20041 427.91302,471.05784 428.21381,470.77267 C 428.51458,470.48752 428.66497,470.08127 428.66498,469.55392 C 428.66497,469.03049 428.51458,468.6262 428.21381,468.34103 C 427.91302,468.05589 427.48724,467.91331 426.93646,467.9133 L 425.44818,467.9133 M 424.26459,466.94064 L 426.93646,466.94064 C 427.91693,466.94065 428.65716,467.16331 429.15717,467.60861 C 429.66107,468.05003 429.91302,468.69846 429.91302,469.55392 C 429.91302,470.41721 429.66107,471.06955 429.15717,471.51096 C 428.65716,471.95237 427.91693,472.17307 426.93646,472.17307 L 425.44818,472.17307 L 425.44818,475.68869 L 424.26459,475.68869 L 424.26459,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6173"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 431.50677,466.94064 l 1.1836,0 l 0,8.74805 l -1.1836,0 l 0,-8.74805"
|
||||
d="M 431.50677,466.94064 L 432.69037,466.94064 L 432.69037,475.68869 L 431.50677,475.68869 L 431.50677,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6175"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 435.04584,466.94064 l 1.18359,0 l 0,7.75196 l 4.25977,0 l 0,0.99609 l -5.44336,0 l 0,-8.74805"
|
||||
d="M 435.04584,466.94064 L 436.22943,466.94064 L 436.22943,474.6926 L 440.4892,474.6926 L 440.4892,475.68869 L 435.04584,475.68869 L 435.04584,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6177"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 444.85443,467.74338 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 c -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 c 0,1.10156 0.25195,1.97265 0.75586,2.61328 c 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 c 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 c 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,10e-6 2.20703,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 c -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21485,-0.41015 -2.95312,-1.23047 c -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 c 0.73827,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
|
||||
d="M 444.85443,467.74338 C 443.99505,467.74339 443.31146,468.0637 442.80365,468.70432 C 442.29974,469.34495 442.04779,470.21799 442.04779,471.32346 C 442.04779,472.42502 442.29974,473.29611 442.80365,473.93674 C 443.31146,474.57736 443.99505,474.89768 444.85443,474.89767 C 445.7138,474.89768 446.39349,474.57736 446.89349,473.93674 C 447.39739,473.29611 447.64935,472.42502 447.64935,471.32346 C 447.64935,470.21799 447.39739,469.34495 446.89349,468.70432 C 446.39349,468.0637 445.7138,467.74339 444.85443,467.74338 M 444.85443,466.78244 C 446.08099,466.78245 447.06146,467.19456 447.79584,468.01877 C 448.5302,468.83909 448.89739,469.94065 448.8974,471.32346 C 448.89739,472.70237 448.5302,473.80393 447.79584,474.62814 C 447.06146,475.44846 446.08099,475.85861 444.85443,475.85861 C 443.62396,475.85861 442.63958,475.44846 441.90131,474.62814 C 441.16693,473.80783 440.79974,472.70627 440.79974,471.32346 C 440.79974,469.94065 441.16693,468.83909 441.90131,468.01877 C 442.63958,467.19456 443.62396,466.78245 444.85443,466.78244"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6179"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 449.53607,466.94064 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
|
||||
d="M 449.53607,466.94064 L 456.93646,466.94064 L 456.93646,467.93674 L 453.83099,467.93674 L 453.83099,475.68869 L 452.64154,475.68869 L 452.64154,467.93674 L 449.53607,467.93674 L 449.53607,466.94064"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6181"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -5791,67 +6817,67 @@
|
||||
inkscape:label="#warning-master-caution-label"
|
||||
transform="matrix(1.1017863,0,0,1.1017863,-33.088618,-48.971446)">
|
||||
<path
|
||||
d="m 267.67041,467.55505 l 1.76367,0 l 2.23242,5.95313 l 2.24414,-5.95313 l 1.76368,0 l 0,8.74805 l -1.1543,0 l 0,-7.68164 l -2.25586,6 l -1.18945,0 l -2.25586,-6 l 0,7.68164 l -1.14844,0 l 0,-8.74805"
|
||||
d="M 267.67041,467.55505 L 269.43408,467.55505 L 271.6665,473.50818 L 273.91064,467.55505 L 275.67432,467.55505 L 275.67432,476.3031 L 274.52002,476.3031 L 274.52002,468.62146 L 272.26416,474.62146 L 271.07471,474.62146 L 268.81885,468.62146 L 268.81885,476.3031 L 267.67041,476.3031 L 267.67041,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6138"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 280.95361,468.72107 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33399,8.74805 l -1.23047,0 l -0.79688,-2.24414 l -3.94336,0 l -0.79687,2.24414 l -1.24805,0 l 3.33984,-8.74805"
|
||||
d="M 280.95361,468.72107 L 279.34814,473.07458 L 282.56494,473.07458 L 280.95361,468.72107 M 280.28564,467.55505 L 281.62744,467.55505 L 284.96143,476.3031 L 283.73096,476.3031 L 282.93408,474.05896 L 278.99072,474.05896 L 278.19385,476.3031 L 276.9458,476.3031 L 280.28564,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6140"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 291.47705,467.84216 l 0,1.1543 c -0.44922,-0.21484 -0.87305,-0.37499 -1.27148,-0.48047 c -0.39845,-0.10546 -0.78321,-0.15819 -1.1543,-0.1582 c -0.64454,10e-6 -1.14258,0.12501 -1.49414,0.375 c -0.34766,0.25001 -0.52149,0.60547 -0.52149,1.0664 c 0,0.38673 0.11524,0.6797 0.34571,0.87891 c 0.23437,0.19532 0.67578,0.35352 1.32422,0.47461 l 0.71484,0.14648 c 0.88281,0.16798 1.5332,0.46485 1.95117,0.89063 c 0.42187,0.42188 0.63281,0.98828 0.63281,1.69922 c 0,0.84766 -0.28516,1.49023 -0.85546,1.92773 c -0.56642,0.4375 -1.39845,0.65625 -2.4961,0.65625 c -0.41406,0 -0.85547,-0.0469 -1.32422,-0.14062 c -0.46484,-0.0937 -0.94726,-0.23242 -1.44726,-0.41602 l 0,-1.21875 c 0.48047,0.26953 0.95117,0.47266 1.41211,0.60938 c 0.46093,0.13672 0.91406,0.20508 1.35937,0.20507 c 0.67578,10e-6 1.19726,-0.13281 1.56446,-0.39843 c 0.36718,-0.26563 0.55077,-0.64453 0.55078,-1.13672 c -1e-5,-0.42969 -0.13282,-0.76562 -0.39844,-1.00781 c -0.26172,-0.24219 -0.69337,-0.42383 -1.29492,-0.54493 l -0.72071,-0.14062 c -0.88281,-0.17578 -1.52148,-0.45117 -1.91601,-0.82617 c -0.39453,-0.375 -0.5918,-0.89648 -0.5918,-1.56446 c 0,-0.77343 0.27148,-1.3828 0.81445,-1.82812 c 0.54688,-0.4453 1.29883,-0.66796 2.25586,-0.66797 c 0.41016,1e-5 0.82812,0.0371 1.25391,0.11133 c 0.42578,0.0742 0.86132,0.18555 1.30664,0.33398"
|
||||
d="M 291.47705,467.84216 L 291.47705,468.99646 C 291.02783,468.78162 290.604,468.62147 290.20557,468.51599 C 289.80712,468.41053 289.42236,468.3578 289.05127,468.35779 C 288.40673,468.3578 287.90869,468.4828 287.55713,468.73279 C 287.20947,468.9828 287.03564,469.33826 287.03564,469.79919 C 287.03564,470.18592 287.15088,470.47889 287.38135,470.6781 C 287.61572,470.87342 288.05713,471.03162 288.70557,471.15271 L 289.42041,471.29919 C 290.30322,471.46717 290.95361,471.76404 291.37158,472.18982 C 291.79345,472.6117 292.00439,473.1781 292.00439,473.88904 C 292.00439,474.7367 291.71923,475.37927 291.14893,475.81677 C 290.58251,476.25427 289.75048,476.47302 288.65283,476.47302 C 288.23877,476.47302 287.79736,476.42612 287.32861,476.3324 C 286.86377,476.2387 286.38135,476.09998 285.88135,475.91638 L 285.88135,474.69763 C 286.36182,474.96716 286.83252,475.17029 287.29346,475.30701 C 287.75439,475.44373 288.20752,475.51209 288.65283,475.51208 C 289.32861,475.51209 289.85009,475.37927 290.21729,475.11365 C 290.58447,474.84802 290.76806,474.46912 290.76807,473.97693 C 290.76806,473.54724 290.63525,473.21131 290.36963,472.96912 C 290.10791,472.72693 289.67626,472.54529 289.07471,472.42419 L 288.354,472.28357 C 287.47119,472.10779 286.83252,471.8324 286.43799,471.4574 C 286.04346,471.0824 285.84619,470.56092 285.84619,469.89294 C 285.84619,469.11951 286.11767,468.51014 286.66064,468.06482 C 287.20752,467.61952 287.95947,467.39686 288.9165,467.39685 C 289.32666,467.39686 289.74462,467.43395 290.17041,467.50818 C 290.59619,467.58238 291.03173,467.69373 291.47705,467.84216"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6142"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 292.63721,467.55505 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
|
||||
d="M 292.63721,467.55505 L 300.0376,467.55505 L 300.0376,468.55115 L 296.93213,468.55115 L 296.93213,476.3031 L 295.74268,476.3031 L 295.74268,468.55115 L 292.63721,468.55115 L 292.63721,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6144"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 301.18604,467.55505 l 5.53125,0 l 0,0.9961 l -4.34766,0 l 0,2.58984 l 4.16601,0 l 0,0.99609 l -4.16601,0 l 0,3.16993 l 4.45312,0 l 0,0.99609 l -5.63671,0 l 0,-8.74805"
|
||||
d="M 301.18604,467.55505 L 306.71729,467.55505 L 306.71729,468.55115 L 302.36963,468.55115 L 302.36963,471.14099 L 306.53564,471.14099 L 306.53564,472.13708 L 302.36963,472.13708 L 302.36963,475.30701 L 306.82275,475.30701 L 306.82275,476.3031 L 301.18604,476.3031 L 301.18604,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6146"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 312.92822,472.20154 c 0.2539,0.0859 0.5,0.26953 0.73828,0.55078 c 0.24219,0.28125 0.48437,0.66797 0.72657,1.16016 l 1.20117,2.39062 l -1.27149,0 l -1.11914,-2.24414 c -0.28906,-0.58593 -0.57031,-0.97461 -0.84375,-1.16602 c -0.26953,-0.1914 -0.63867,-0.2871 -1.10742,-0.28711 l -1.28906,0 l 0,3.69727 l -1.18359,0 l 0,-8.74805 l 2.67187,0 c 1,1e-5 1.74609,0.209 2.23828,0.62696 c 0.49218,0.41797 0.73828,1.04883 0.73828,1.89257 c 0,0.55079 -0.12891,1.00782 -0.38672,1.3711 c -0.25391,0.36328 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 l 0,3.10547 l 1.48828,0 c 0.57031,0 1,-0.13086 1.28906,-0.39258 c 0.29297,-0.26562 0.43945,-0.65429 0.43946,-1.16602 c -1e-5,-0.51171 -0.14649,-0.89647 -0.43946,-1.15429 c -0.28906,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
|
||||
d="M 312.92822,472.20154 C 313.18212,472.28744 313.42822,472.47107 313.6665,472.75232 C 313.90869,473.03357 314.15087,473.42029 314.39307,473.91248 L 315.59424,476.3031 L 314.32275,476.3031 L 313.20361,474.05896 C 312.91455,473.47303 312.6333,473.08435 312.35986,472.89294 C 312.09033,472.70154 311.72119,472.60584 311.25244,472.60583 L 309.96338,472.60583 L 309.96338,476.3031 L 308.77979,476.3031 L 308.77979,467.55505 L 311.45166,467.55505 C 312.45166,467.55506 313.19775,467.76405 313.68994,468.18201 C 314.18212,468.59998 314.42822,469.23084 314.42822,470.07458 C 314.42822,470.62537 314.29931,471.0824 314.0415,471.44568 C 313.78759,471.80896 313.4165,472.06092 312.92822,472.20154 M 309.96338,468.52771 L 309.96338,471.63318 L 311.45166,471.63318 C 312.02197,471.63318 312.45166,471.50232 312.74072,471.2406 C 313.03369,470.97498 313.18017,470.58631 313.18018,470.07458 C 313.18017,469.56287 313.03369,469.17811 312.74072,468.92029 C 312.45166,468.65858 312.02197,468.52772 311.45166,468.52771 L 309.96338,468.52771"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6148"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 327.49463,468.22888 l 0,1.24805 c -0.39845,-0.37109 -0.82423,-0.64843 -1.27734,-0.83203 c -0.44923,-0.18359 -0.92774,-0.27539 -1.43555,-0.27539 c -1.00001,0 -1.76563,0.30665 -2.29688,0.91992 c -0.53125,0.60938 -0.79687,1.49219 -0.79687,2.64844 c 0,1.15234 0.26562,2.03515 0.79687,2.64843 c 0.53125,0.60938 1.29687,0.91407 2.29688,0.91407 c 0.50781,0 0.98632,-0.0918 1.43555,-0.27539 c 0.45311,-0.1836 0.87889,-0.46094 1.27734,-0.83204 l 0,1.23633 c -0.41407,0.28125 -0.85352,0.49219 -1.31836,0.63281 c -0.46094,0.14063 -0.94922,0.21094 -1.46484,0.21094 c -1.32423,0 -2.36719,-0.40429 -3.12891,-1.21289 c -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32226 c 0,-1.40625 0.38086,-2.51367 1.14258,-3.32227 c 0.76172,-0.81249 1.80468,-1.21874 3.12891,-1.21875 c 0.52343,1e-5 1.01561,0.0703 1.47656,0.21094 c 0.46484,0.13673 0.90038,0.34376 1.30664,0.62109"
|
||||
d="M 327.49463,468.22888 L 327.49463,469.47693 C 327.09618,469.10584 326.6704,468.8285 326.21729,468.6449 C 325.76806,468.46131 325.28955,468.36951 324.78174,468.36951 C 323.78173,468.36951 323.01611,468.67616 322.48486,469.28943 C 321.95361,469.89881 321.68799,470.78162 321.68799,471.93787 C 321.68799,473.09021 321.95361,473.97302 322.48486,474.5863 C 323.01611,475.19568 323.78173,475.50037 324.78174,475.50037 C 325.28955,475.50037 325.76806,475.40857 326.21729,475.22498 C 326.6704,475.04138 327.09618,474.76404 327.49463,474.39294 L 327.49463,475.62927 C 327.08056,475.91052 326.64111,476.12146 326.17627,476.26208 C 325.71533,476.40271 325.22705,476.47302 324.71143,476.47302 C 323.3872,476.47302 322.34424,476.06873 321.58252,475.26013 C 320.8208,474.44763 320.43994,473.34021 320.43994,471.93787 C 320.43994,470.53162 320.8208,469.4242 321.58252,468.6156 C 322.34424,467.80311 323.3872,467.39686 324.71143,467.39685 C 325.23486,467.39686 325.72704,467.46715 326.18799,467.60779 C 326.65283,467.74452 327.08837,467.95155 327.49463,468.22888"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6150"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 332.2583,468.72107 l -1.60547,4.35351 l 3.2168,0 l -1.61133,-4.35351 m -0.66797,-1.16602 l 1.3418,0 l 3.33398,8.74805 l -1.23047,0 l -0.79687,-2.24414 l -3.94336,0 l -0.79687,2.24414 l -1.24805,0 l 3.33984,-8.74805"
|
||||
d="M 332.2583,468.72107 L 330.65283,473.07458 L 333.86963,473.07458 L 332.2583,468.72107 M 331.59033,467.55505 L 332.93213,467.55505 L 336.26611,476.3031 L 335.03564,476.3031 L 334.23877,474.05896 L 330.29541,474.05896 L 329.49854,476.3031 L 328.25049,476.3031 L 331.59033,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6152"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 337.40283,467.55505 l 1.18946,0 l 0,5.31446 c -10e-6,0.9375 0.16991,1.61328 0.50976,2.02734 c 0.33984,0.41016 0.89062,0.61524 1.65234,0.61523 c 0.75781,10e-6 1.30664,-0.20507 1.64649,-0.61523 c 0.33984,-0.41406 0.50976,-1.08984 0.50976,-2.02734 l 0,-5.31446 l 1.18946,0 l 0,5.46094 c -10e-6,1.14063 -0.28321,2.00196 -0.84961,2.58399 c -0.56251,0.58203 -1.39454,0.87304 -2.4961,0.87304 c -1.10547,0 -1.9414,-0.29101 -2.50781,-0.87304 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58399 l 0,-5.46094"
|
||||
d="M 337.40283,467.55505 L 338.59229,467.55505 L 338.59229,472.86951 C 338.59228,473.80701 338.7622,474.48279 339.10205,474.89685 C 339.44189,475.30701 339.99267,475.51209 340.75439,475.51208 C 341.5122,475.51209 342.06103,475.30701 342.40088,474.89685 C 342.74072,474.48279 342.91064,473.80701 342.91064,472.86951 L 342.91064,467.55505 L 344.1001,467.55505 L 344.1001,473.01599 C 344.10009,474.15662 343.81689,475.01795 343.25049,475.59998 C 342.68798,476.18201 341.85595,476.47302 340.75439,476.47302 C 339.64892,476.47302 338.81299,476.18201 338.24658,475.59998 C 337.68408,475.01795 337.40283,474.15662 337.40283,473.01599 L 337.40283,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6154"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 345.11377,467.55505 l 7.40039,0 l 0,0.9961 l -3.10547,0 l 0,7.75195 l -1.18945,0 l 0,-7.75195 l -3.10547,0 l 0,-0.9961"
|
||||
d="M 345.11377,467.55505 L 352.51416,467.55505 L 352.51416,468.55115 L 349.40869,468.55115 L 349.40869,476.3031 L 348.21924,476.3031 L 348.21924,468.55115 L 345.11377,468.55115 L 345.11377,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6156"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 353.6626,467.55505 l 1.18359,0 l 0,8.74805 l -1.18359,0 l 0,-8.74805"
|
||||
d="M 353.6626,467.55505 L 354.84619,467.55505 L 354.84619,476.3031 L 353.6626,476.3031 L 353.6626,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6158"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 360.75244,468.35779 c -0.85938,10e-6 -1.54297,0.32032 -2.05078,0.96094 c -0.50391,0.64063 -0.75586,1.51367 -0.75586,2.61914 c 0,1.10156 0.25195,1.97265 0.75586,2.61328 c 0.50781,0.64062 1.1914,0.96094 2.05078,0.96093 c 0.85937,10e-6 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75586,-1.51172 0.75586,-2.61328 c 0,-1.10547 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64062 -1.17969,-0.96093 -2.03906,-0.96094 m 0,-0.96094 c 1.22656,1e-5 2.20703,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30469 c -1e-5,1.37891 -0.3672,2.48047 -1.10156,3.30468 c -0.73438,0.82032 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21484,-0.41015 -2.95312,-1.23047 c -0.73438,-0.82031 -1.10157,-1.92187 -1.10157,-3.30468 c 0,-1.38281 0.36719,-2.48437 1.10157,-3.30469 c 0.73828,-0.82421 1.72265,-1.23632 2.95312,-1.23633"
|
||||
d="M 360.75244,468.35779 C 359.89306,468.3578 359.20947,468.67811 358.70166,469.31873 C 358.19775,469.95936 357.9458,470.8324 357.9458,471.93787 C 357.9458,473.03943 358.19775,473.91052 358.70166,474.55115 C 359.20947,475.19177 359.89306,475.51209 360.75244,475.51208 C 361.61181,475.51209 362.2915,475.19177 362.7915,474.55115 C 363.2954,473.91052 363.54736,473.03943 363.54736,471.93787 C 363.54736,470.8324 363.2954,469.95936 362.7915,469.31873 C 362.2915,468.67811 361.61181,468.3578 360.75244,468.35779 M 360.75244,467.39685 C 361.979,467.39686 362.95947,467.80897 363.69385,468.63318 C 364.42821,469.4535 364.7954,470.55506 364.79541,471.93787 C 364.7954,473.31678 364.42821,474.41834 363.69385,475.24255 C 362.95947,476.06287 361.979,476.47302 360.75244,476.47302 C 359.52197,476.47302 358.5376,476.06287 357.79932,475.24255 C 357.06494,474.42224 356.69775,473.32068 356.69775,471.93787 C 356.69775,470.55506 357.06494,469.4535 357.79932,468.63318 C 358.5376,467.80897 359.52197,467.39686 360.75244,467.39685"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6160"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 366.64697,467.55505 l 1.59375,0 l 3.87891,7.31836 l 0,-7.31836 l 1.14844,0 l 0,8.74805 l -1.59375,0 l -3.87891,-7.31836 l 0,7.31836 l -1.14844,0 l 0,-8.74805"
|
||||
d="M 366.64697,467.55505 L 368.24072,467.55505 L 372.11963,474.87341 L 372.11963,467.55505 L 373.26807,467.55505 L 373.26807,476.3031 L 371.67432,476.3031 L 367.79541,468.98474 L 367.79541,476.3031 L 366.64697,476.3031 L 366.64697,467.55505"
|
||||
style="font-size:12px;fill:#ffffff;-inkscape-font-specification:Sans"
|
||||
id="path6162"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -5881,37 +6907,37 @@
|
||||
id="warning-rc-input-label"
|
||||
transform="matrix(1.1017863,0,0,1.1017863,-23.124025,-49.099088)">
|
||||
<path
|
||||
d="m 193.82991,472.31738 c 0.2539,0.0859 0.49999,0.26954 0.73828,0.55078 c 0.24218,0.28126 0.48437,0.66798 0.72656,1.16016 l 1.20118,2.39063 l -1.27149,0 l -1.11914,-2.24415 c -0.28907,-0.58593 -0.57032,-0.9746 -0.84375,-1.16601 c -0.26953,-0.1914 -0.63868,-0.28711 -1.10742,-0.28711 l -1.28906,0 l 0,3.69727 l -1.1836,0 l 0,-8.74805 l 2.67188,0 c 0.99999,10e-6 1.74609,0.20899 2.23828,0.62695 c 0.49218,0.41798 0.73827,1.04884 0.73828,1.89258 c -1e-5,0.55079 -0.12891,1.00782 -0.38672,1.37109 c -0.25391,0.36329 -0.625,0.61524 -1.11328,0.75586 m -2.96484,-3.67383 l 0,3.10547 l 1.48828,0 c 0.57031,1e-5 0.99999,-0.13085 1.28906,-0.39257 c 0.29296,-0.26562 0.43945,-0.6543 0.43945,-1.16602 c 0,-0.51171 -0.14649,-0.89648 -0.43945,-1.1543 c -0.28907,-0.26171 -0.71875,-0.39257 -1.28906,-0.39258 l -1.48828,0"
|
||||
d="M 193.82991,472.31738 C 194.08381,472.40328 194.3299,472.58692 194.56819,472.86816 C 194.81037,473.14942 195.05256,473.53614 195.29475,474.02832 L 196.49593,476.41895 L 195.22444,476.41895 L 194.1053,474.1748 C 193.81623,473.58887 193.53498,473.2002 193.26155,473.00879 C 192.99202,472.81739 192.62287,472.72168 192.15413,472.72168 L 190.86507,472.72168 L 190.86507,476.41895 L 189.68147,476.41895 L 189.68147,467.6709 L 192.35335,467.6709 C 193.35334,467.67091 194.09944,467.87989 194.59163,468.29785 C 195.08381,468.71583 195.3299,469.34669 195.32991,470.19043 C 195.3299,470.74122 195.201,471.19825 194.94319,471.56152 C 194.68928,471.92481 194.31819,472.17676 193.82991,472.31738 M 190.86507,468.64355 L 190.86507,471.74902 L 192.35335,471.74902 C 192.92366,471.74903 193.35334,471.61817 193.64241,471.35645 C 193.93537,471.09083 194.08186,470.70215 194.08186,470.19043 C 194.08186,469.67872 193.93537,469.29395 193.64241,469.03613 C 193.35334,468.77442 192.92366,468.64356 192.35335,468.64355 L 190.86507,468.64355"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6123"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 203.99007,468.34473 l 0,1.24804 c -0.39845,-0.37108 -0.82423,-0.64843 -1.27735,-0.83203 c -0.44922,-0.18358 -0.92774,-0.27538 -1.43554,-0.27539 c -1.00001,1e-5 -1.76563,0.30665 -2.29688,0.91992 c -0.53125,0.60938 -0.79688,1.4922 -0.79687,2.64844 c -10e-6,1.15235 0.26562,2.03516 0.79687,2.64844 c 0.53125,0.60937 1.29687,0.91406 2.29688,0.91406 c 0.5078,0 0.98632,-0.0918 1.43554,-0.27539 c 0.45312,-0.18359 0.8789,-0.46094 1.27735,-0.83203 l 0,1.23633 c -0.41407,0.28125 -0.85353,0.49218 -1.31836,0.63281 c -0.46095,0.14062 -0.94923,0.21094 -1.46485,0.21094 c -1.32422,0 -2.36719,-0.4043 -3.1289,-1.21289 c -0.76172,-0.8125 -1.14258,-1.91992 -1.14258,-3.32227 c 0,-1.40624 0.38086,-2.51366 1.14258,-3.32226 c 0.76171,-0.8125 1.80468,-1.21875 3.1289,-1.21875 c 0.52344,0 1.01562,0.0703 1.47657,0.21093 c 0.46483,0.13673 0.90038,0.34376 1.30664,0.6211"
|
||||
d="M 203.99007,468.34473 L 203.99007,469.59277 C 203.59162,469.22169 203.16584,468.94434 202.71272,468.76074 C 202.2635,468.57716 201.78498,468.48536 201.27718,468.48535 C 200.27717,468.48536 199.51155,468.792 198.9803,469.40527 C 198.44905,470.01465 198.18342,470.89747 198.18343,472.05371 C 198.18342,473.20606 198.44905,474.08887 198.9803,474.70215 C 199.51155,475.31152 200.27717,475.61621 201.27718,475.61621 C 201.78498,475.61621 202.2635,475.52441 202.71272,475.34082 C 203.16584,475.15723 203.59162,474.87988 203.99007,474.50879 L 203.99007,475.74512 C 203.576,476.02637 203.13654,476.2373 202.67171,476.37793 C 202.21076,476.51855 201.72248,476.58887 201.20686,476.58887 C 199.88264,476.58887 198.83967,476.18457 198.07796,475.37598 C 197.31624,474.56348 196.93538,473.45606 196.93538,472.05371 C 196.93538,470.64747 197.31624,469.54005 198.07796,468.73145 C 198.83967,467.91895 199.88264,467.5127 201.20686,467.5127 C 201.7303,467.5127 202.22248,467.583 202.68343,467.72363 C 203.14826,467.86036 203.58381,468.06739 203.99007,468.34473"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6125"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 209.65022,467.6709 l 1.1836,0 l 0,8.74805 l -1.1836,0 l 0,-8.74805"
|
||||
d="M 209.65022,467.6709 L 210.83382,467.6709 L 210.83382,476.41895 L 209.65022,476.41895 L 209.65022,467.6709"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6127"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 213.18929,467.6709 l 1.59375,0 l 3.8789,7.31836 l 0,-7.31836 l 1.14844,0 l 0,8.74805 l -1.59375,0 l -3.87891,-7.31836 l 0,7.31836 l -1.14843,0 l 0,-8.74805"
|
||||
d="M 213.18929,467.6709 L 214.78304,467.6709 L 218.66194,474.98926 L 218.66194,467.6709 L 219.81038,467.6709 L 219.81038,476.41895 L 218.21663,476.41895 L 214.33772,469.10059 L 214.33772,476.41895 L 213.18929,476.41895 L 213.18929,467.6709"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6129"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 223.34944,468.64355 l 0,3.28711 l 1.48828,0 c 0.55078,1e-5 0.97656,-0.14257 1.27735,-0.42773 c 0.30077,-0.28515 0.45116,-0.6914 0.45117,-1.21875 c -1e-5,-0.52343 -0.1504,-0.92773 -0.45117,-1.21289 c -0.30079,-0.28515 -0.72657,-0.42773 -1.27735,-0.42774 l -1.48828,0 m -1.18359,-0.97265 l 2.67187,0 c 0.98047,10e-6 1.7207,0.22266 2.22071,0.66797 c 0.5039,0.44141 0.75585,1.08985 0.75586,1.94531 c -1e-5,0.86329 -0.25196,1.51563 -0.75586,1.95703 c -0.50001,0.44141 -1.24024,0.66211 -2.22071,0.66211 l -1.48828,0 l 0,3.51563 l -1.18359,0 l 0,-8.74805"
|
||||
d="M 223.34944,468.64355 L 223.34944,471.93066 L 224.83772,471.93066 C 225.3885,471.93067 225.81428,471.78809 226.11507,471.50293 C 226.41584,471.21778 226.56623,470.81153 226.56624,470.28418 C 226.56623,469.76075 226.41584,469.35645 226.11507,469.07129 C 225.81428,468.78614 225.3885,468.64356 224.83772,468.64355 L 223.34944,468.64355 M 222.16585,467.6709 L 224.83772,467.6709 C 225.81819,467.67091 226.55842,467.89356 227.05843,468.33887 C 227.56233,468.78028 227.81428,469.42872 227.81429,470.28418 C 227.81428,471.14747 227.56233,471.79981 227.05843,472.24121 C 226.55842,472.68262 225.81819,472.90332 224.83772,472.90332 L 223.34944,472.90332 L 223.34944,476.41895 L 222.16585,476.41895 L 222.16585,467.6709"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6131"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 229.27327,467.6709 l 1.18945,0 l 0,5.31445 c 0,0.9375 0.16992,1.61328 0.50977,2.02735 c 0.33984,0.41015 0.89062,0.61523 1.65234,0.61523 c 0.75781,0 1.30664,-0.20508 1.64649,-0.61523 c 0.33983,-0.41407 0.50976,-1.08985 0.50976,-2.02735 l 0,-5.31445 l 1.18946,0 l 0,5.46094 c -1e-5,1.14062 -0.28322,2.00195 -0.84961,2.58398 c -0.56251,0.58203 -1.39454,0.87305 -2.4961,0.87305 c -1.10547,0 -1.94141,-0.29102 -2.50781,-0.87305 c -0.5625,-0.58203 -0.84375,-1.44336 -0.84375,-2.58398 l 0,-5.46094"
|
||||
d="M 229.27327,467.6709 L 230.46272,467.6709 L 230.46272,472.98535 C 230.46272,473.92285 230.63264,474.59863 230.97249,475.0127 C 231.31233,475.42285 231.86311,475.62793 232.62483,475.62793 C 233.38264,475.62793 233.93147,475.42285 234.27132,475.0127 C 234.61115,474.59863 234.78108,473.92285 234.78108,472.98535 L 234.78108,467.6709 L 235.97054,467.6709 L 235.97054,473.13184 C 235.97053,474.27246 235.68732,475.13379 235.12093,475.71582 C 234.55842,476.29785 233.72639,476.58887 232.62483,476.58887 C 231.51936,476.58887 230.68342,476.29785 230.11702,475.71582 C 229.55452,475.13379 229.27327,474.27246 229.27327,473.13184 L 229.27327,467.6709"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6133"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 236.98421,467.6709 l 7.40039,0 l 0,0.99609 l -3.10547,0 l 0,7.75196 l -1.18945,0 l 0,-7.75196 l -3.10547,0 l 0,-0.99609"
|
||||
d="M 236.98421,467.6709 L 244.3846,467.6709 L 244.3846,468.66699 L 241.27913,468.66699 L 241.27913,476.41895 L 240.08968,476.41895 L 240.08968,468.66699 L 236.98421,468.66699 L 236.98421,467.6709"
|
||||
style="font-size:12px;fill:#ffffff"
|
||||
id="path6135"
|
||||
inkscape:connector-curvature="0" />
|
||||
@ -5942,15 +6968,15 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4800"
|
||||
d="m 121,476.58899 l 3.48553,-9.076 l 1.29392,0 l 3.71459,9.076 l -1.36821,0 l -1.05866,-2.7488 l -3.79508,0 l -0.99675,2.7488 l -1.27534,0 m 2.61879,-3.72698 l 3.07692,0 l -0.94722,-2.51354 c -0.28892,-0.76355 -0.50354,-1.39091 -0.64386,-1.88207 c -0.11557,0.58196 -0.2786,1.15979 -0.48909,1.73348 l -0.99675,2.66213" />
|
||||
d="M 121,476.58899 L 124.48553,467.51299 L 125.77945,467.51299 L 129.49404,476.58899 L 128.12583,476.58899 L 127.06717,473.84019 L 123.27209,473.84019 L 122.27534,476.58899 L 121,476.58899 M 123.61879,472.86201 L 126.69571,472.86201 L 125.74849,470.34847 C 125.45957,469.58492 125.24495,468.95756 125.10463,468.4664 C 124.98906,469.04836 124.82603,469.62619 124.61554,470.19988 L 123.61879,472.86201" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4802"
|
||||
d="m 130.4846,476.58899 l 0,-9.076 l 4.02415,0 c 0.80895,10e-6 1.42392,0.0826 1.84492,0.24764 c 0.42098,0.16097 0.75735,0.44782 1.00913,0.86055 c 0.25176,0.41274 0.37764,0.86881 0.37765,1.36821 c -1e-5,0.64387 -0.20844,1.18661 -0.62529,1.62823 c -0.41687,0.44163 -1.06073,0.72229 -1.93159,0.84198 c 0.3178,0.15271 0.55925,0.30336 0.72434,0.45194 c 0.35082,0.32193 0.68307,0.72435 0.99675,1.20724 l 1.57871,2.47021 l -1.5106,0 l -1.20106,-1.88825 c -0.35083,-0.54481 -0.63974,-0.96167 -0.86674,-1.25059 c -0.22701,-0.28891 -0.43131,-0.49114 -0.61291,-0.60671 c -0.17748,-0.11556 -0.35908,-0.19605 -0.5448,-0.24145 c -0.13621,-0.0289 -0.35908,-0.0433 -0.66863,-0.0433 l -1.39297,0 l 0,4.03034 l -1.20106,0 m 1.20106,-5.07043 l 2.58164,0 c 0.54893,1e-5 0.97817,-0.0557 1.28773,-0.16715 c 0.30954,-0.11556 0.5448,-0.29717 0.70577,-0.54481 c 0.16096,-0.25176 0.24144,-0.52417 0.24145,-0.81721 c -1e-5,-0.42924 -0.15685,-0.78212 -0.47052,-1.05866 c -0.30955,-0.27653 -0.8007,-0.41479 -1.47345,-0.4148 l -2.87262,0 l 0,3.00263" />
|
||||
d="M 130.4846,476.58899 L 130.4846,467.51299 L 134.50875,467.51299 C 135.3177,467.513 135.93267,467.59559 136.35367,467.76063 C 136.77465,467.9216 137.11102,468.20845 137.3628,468.62118 C 137.61456,469.03392 137.74044,469.48999 137.74045,469.98939 C 137.74044,470.63326 137.53201,471.176 137.11516,471.61762 C 136.69829,472.05925 136.05443,472.33991 135.18357,472.4596 C 135.50137,472.61231 135.74282,472.76296 135.90791,472.91154 C 136.25873,473.23347 136.59098,473.63589 136.90466,474.11878 L 138.48337,476.58899 L 136.97277,476.58899 L 135.77171,474.70074 C 135.42088,474.15593 135.13197,473.73907 134.90497,473.45015 C 134.67796,473.16124 134.47366,472.95901 134.29206,472.84344 C 134.11458,472.72788 133.93298,472.64739 133.74726,472.60199 C 133.61105,472.57309 133.38818,472.55869 133.07863,472.55869 L 131.68566,472.55869 L 131.68566,476.58903 L 130.4846,476.58903 M 131.68566,471.5186 L 134.2673,471.5186 C 134.81623,471.51861 135.24547,471.4629 135.55503,471.35145 C 135.86457,471.23589 136.09983,471.05428 136.2608,470.80664 C 136.42176,470.55488 136.50224,470.28247 136.50225,469.98943 C 136.50224,469.56019 136.3454,469.20731 136.03173,468.93077 C 135.72218,468.65424 135.23103,468.51598 134.55828,468.51597 L 131.68566,468.51597 L 131.68566,471.5186" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4804"
|
||||
d="m 139.59156,476.58899 l 0,-9.076 l 1.80777,0 l 2.14827,6.42625 c 0.19811,0.59847 0.34257,1.04628 0.43337,1.34345 c 0.10318,-0.33019 0.26415,-0.81515 0.4829,-1.45488 l 2.17304,-6.31482 l 1.61585,0 l 0,9.076 l -1.15772,0 l 0,-7.59635 l -2.63736,7.59635 l -1.08342,0 l -2.62499,-7.72636 l 0,7.72636 l -1.15771,0" />
|
||||
d="M 139.59156,476.58899 L 139.59156,467.51299 L 141.39933,467.51299 L 143.5476,473.93924 C 143.74571,474.53771 143.89017,474.98552 143.98097,475.28269 C 144.08415,474.9525 144.24512,474.46754 144.46387,473.82781 L 146.63691,467.51299 L 148.25276,467.51299 L 148.25276,476.58899 L 147.09504,476.58899 L 147.09504,468.99264 L 144.45768,476.58899 L 143.37426,476.58899 L 140.74927,468.86263 L 140.74927,476.58899 L 139.59156,476.58899" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
@ -6065,7 +7091,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer13"
|
||||
inkscape:label="pfd-window"
|
||||
style="display:none"
|
||||
style="display:inline"
|
||||
transform="translate(0,-4)"
|
||||
sodipodi:insensitive="true">
|
||||
<rect
|
||||
|
Before Width: | Height: | Size: 496 KiB After Width: | Height: | Size: 722 KiB |
@ -74,7 +74,10 @@ PfdQmlGadgetWidget::PfdQmlGadgetWidget(QWindow *parent) :
|
||||
"VtolPathFollowerSettings" <<
|
||||
"HwSettings" <<
|
||||
"ManualControlCommand" <<
|
||||
"SystemSettings";
|
||||
"SystemSettings" <<
|
||||
"RevoSettings" <<
|
||||
"MagState" <<
|
||||
"FlightBatterySettings";
|
||||
|
||||
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
||||
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
|
||||
|
Loading…
Reference in New Issue
Block a user