1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-19 04:52:12 +01:00

OP-1887 New panel behavior, open/close animation

This commit is contained in:
Laurent Lalanne 2015-05-13 23:38:58 +02:00
parent cb70fa8846
commit f5160f64b0
2 changed files with 743 additions and 600 deletions

View File

@ -6,7 +6,7 @@ Item {
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_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) {
@ -23,25 +23,30 @@ Item {
//
property bool show_panels: false
property bool hide_display_rc: false
property bool hide_display_bat: false
property bool hide_display_oplm: false
property bool display_rc: false
property bool display_bat: false
property bool display_oplm: false
property bool display_sys: false
function close_panels(){
if (show_panels == true)
show_panels = false;
else
show_panels = true;
}
function hide_display_rcinput(){
show_panels = true;
display_oplm = false
rc_input_bg.z = 10
battery_bg.z = -1
oplm_bg.z = -1
system_bg.z = -1
system_bg.z = -1
}
function hide_display_battery(){
show_panels = true;
display_oplm = false
rc_input_bg.z = 10
battery_bg.z = 20
oplm_bg.z = -1
@ -50,6 +55,7 @@ Item {
function hide_display_oplink(){
show_panels = true;
display_oplm = true
rc_input_bg.z = 10
battery_bg.z = 20
oplm_bg.z = 30
@ -58,13 +64,14 @@ Item {
function hide_display_system(){
show_panels = true;
display_oplm = false
rc_input_bg.z = 10
battery_bg.z = 20
oplm_bg.z = 30
system_bg.z = 40
}
// Uninitialised, Ok, Warning, Critical, Error
// Uninitialised, Ok, Warning, Critical, Error
property variant batColors : ["#2c2929", "green", "orange", "red", "red"]
property real smeter_angle
@ -86,16 +93,16 @@ Item {
// Hack : check if telemetry is active. Works with real link and log replay
function telemetry_check(){
function telemetry_check() {
telemetry_sum = OPLinkStatus.RXRate + OPLinkStatus.RXRate
if (telemetry_sum != telemetry_sum_old || OPLinkStatus.LinkState == 4){
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
@ -163,11 +170,22 @@ Item {
}
// End Functions
//
//
// Start Drawing
//
// Close panel
// Animation properties
//
property double offset_value: close_bg.width * 0.85
property int anim_type: Easing.InOutExpo //Easing.InOutSine Easing.InOutElastic
property real anim_amplitude: 1.2
property real anim_period: 2
property int duration_value: 1600
//
// Close - Open panel
//
SvgElementImage {
@ -176,18 +194,42 @@ Item {
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: close_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (close_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: close_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
transitions: Transition {
SequentialAnimation {
id: close_anim
PropertyAnimation { property: "x"; duration: 800 }
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
SvgElementImage {
id: panel_open_icon
elementName: "panel-open-icon"
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
z: close_bg.z+1
opacity: show_panels == true ? 0 : 1
states: State {
name: "fading"
when: show_panels == true
PropertyChanges { target: panel_open_icon; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
PropertyChanges { target: panel_open_icon; opacity: 0; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
PropertyAnimation { property: "opacity"; duration: 500; }
}
}
}
SvgElementImage {
@ -195,25 +237,26 @@ Item {
elementName: "close-panel-mousearea"
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
z: close_bg.z+100
MouseArea {
id: hidedisp_close;
anchors.fill: parent;
cursorShape: show_panels == true ? Qt.WhatsThisCursor : Qt.ArrowCursor
MouseArea {
id: hidedisp_close;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
onClicked: close_panels()
}
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: close_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (close_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: close_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
//
@ -227,18 +270,18 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: 10
states: State {
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); }
when: show_panels == true
PropertyChanges { target: rc_input_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
id: rc_input_anim
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
id: rc_input_anim
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementImage {
@ -248,17 +291,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: rc_input_bg.z+1
states: State {
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); }
when: show_panels == true
PropertyChanges { target: rc_input_labels; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
SvgElementImage {
@ -268,24 +311,24 @@ Item {
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
MouseArea {
id: hidedisp_rcinput;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
onClicked: hide_display_rcinput()
}
states: State {
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); }
when: show_panels == true
PropertyChanges { target: rc_input_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
SvgElementImage {
@ -293,7 +336,7 @@ Item {
elementName: "rc-throttle"
sceneSize: panels.sceneSize
z: rc_input_bg.z+2
width: scaledBounds.width * sceneItem.width
height: (scaledBounds.height * sceneItem.height) * (ManualControlCommand.Throttle)
@ -301,18 +344,18 @@ Item {
y: (scaledBounds.y * sceneItem.height) - rc_throttle.height + (scaledBounds.height * sceneItem.height)
smooth: true
states: State {
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); }
when: show_panels == true
PropertyChanges { target: rc_throttle; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
SvgElementImage {
@ -320,7 +363,7 @@ Item {
elementName: "rc-stick"
sceneSize: panels.sceneSize
z: rc_input_bg.z+3
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
@ -328,7 +371,7 @@ Item {
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
@ -336,17 +379,17 @@ Item {
origin.x : rc_stick.width / 2
}
states: State {
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); }
when: show_panels == true
PropertyChanges { target: rc_stick; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
//
@ -360,17 +403,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: 20
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: battery_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: battery_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
SvgElementPositionItem {
@ -378,22 +421,22 @@ Item {
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 {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: battery_volt; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: battery_volt; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Rectangle {
anchors.fill: parent
@ -424,17 +467,17 @@ Item {
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: battery_amp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: battery_amp; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Rectangle {
anchors.fill: parent
@ -465,17 +508,17 @@ Item {
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: battery_milliamp; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: battery_milliamp; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Rectangle {
anchors.fill: parent
@ -517,17 +560,17 @@ Item {
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
states: State {
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); }
when: show_panels == true
PropertyChanges { target: battery_estimated_flight_time; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Rectangle {
anchors.fill: parent
@ -567,17 +610,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: battery_bg.z+5
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: battery_labels; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: battery_labels; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementImage {
@ -587,24 +630,24 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: battery_bg.z+6
MouseArea {
id: hidedisp_battery;
anchors.fill: parent;
cursorShape: Qt.WhatsThisCursor
MouseArea {
id: hidedisp_battery;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
onClicked: hide_display_battery()
}
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: battery_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (battery_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: battery_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
//
@ -618,17 +661,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: 30
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: oplm_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: oplm_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
SvgElementImage {
@ -638,17 +681,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z+1
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: smeter_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: smeter_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementImage {
@ -658,17 +701,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z+2
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: smeter_scale; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: smeter_scale; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementImage {
@ -678,41 +721,44 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z+3
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: smeter_needle; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: smeter_needle; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transform: Rotation {
angle: smeter_angle.toFixed(1)
origin.y : smeter_needle.height
}
origin.y : smeter_needle.height
}
}
SvgElementImage {
id: smeter_mask
elementName: "smeter-mask"
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
//y: Math.floor(scaledBounds.y * sceneItem.height)
width: smeter_scale.width * 1.09
//anchors.horizontalCenter: smeter_scale
z: oplm_bg.z+4
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: smeter_mask; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: smeter_mask; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
@ -721,18 +767,20 @@ Item {
elementName: "oplm-button-bg"
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
width: smeter_mask.width
z: oplm_bg.z+5
states: State {
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); }
when: show_panels == true
PropertyChanges { target: oplm_button_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
@ -746,7 +794,7 @@ Item {
property variant button_color: "button"+index+"_color"
id: idButton_oplm
elementName: "oplm-button-" + index
sceneSize: panels.sceneSize
@ -759,23 +807,24 @@ Item {
opacity: smeter_filter == index ? 0.5 : 0
}
MouseArea {
id: idButton_oplm_mousearea;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
MouseArea {
id: idButton_oplm_mousearea;
anchors.fill: parent;
visible: display_oplm == true ? 1 : 0
cursorShape: display_oplm == true ? Qt.PointingHandCursor : Qt.ArrowCursor
onClicked: select_oplm(index)
}
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: idButton_oplm; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: idButton_oplm; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
}
}
@ -786,17 +835,18 @@ Item {
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z+6
states: State {
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); }
when: show_panels == true
PropertyChanges { target: oplm_id_label; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementPositionItem {
@ -809,17 +859,17 @@ Item {
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
states: State {
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); }
when: show_panels == true
PropertyChanges { target: oplm_id_text; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: oplm_pair_id > 0 ? oplm_pair_id.toString(16) : "-- -- -- --"
@ -841,24 +891,24 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z
MouseArea {
id: hidedisp_oplm;
anchors.fill: parent;
cursorShape: Qt.WhatsThisCursor
MouseArea {
id: hidedisp_oplm;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
onClicked: hide_display_oplink()
}
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: oplm_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (oplm_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: oplm_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
//
@ -872,18 +922,18 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: 40
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: system_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: system_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
id: system_anim
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
id: system_anim
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementPositionItem {
@ -893,21 +943,21 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: system_frametype; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: system_frametype; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
Text {
text: ["FixedWing", "FixedWingElevon", "FixedWingVtail", "VTOL", "HeliCP", "QuadX", "QuadP",
"Hexa+", "Octo+", "Custom", "HexaX", "HexaH", "OctoV", "OctoCoaxP", "OctoCoaxX", "OctoX", "HexaCoax",
"QuadH", "Hexa+", "Octo+", "Custom", "HexaX", "HexaH", "OctoV", "OctoCoaxP", "OctoCoaxX", "OctoX", "HexaCoax",
"Tricopter", "GroundVehicleCar", "GroundVehicleDiff", "GroundVehicleMoto"][SystemSettings.AirframeType]
anchors.right: parent.right
color: "white"
@ -916,7 +966,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -926,17 +976,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: system_cpuloadtemp; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: system_cpuloadtemp; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
// Coptercontrol detect with mem free : Only display Cpu load, no temperature available.
@ -949,7 +999,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -959,17 +1009,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: system_memfree; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: system_memfree; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: SystemStats.HeapRemaining > 1024 ? memory_free.toFixed(2) +"Kb" : memory_free +"bytes"
@ -980,7 +1030,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -990,17 +1040,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
states: State {
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); }
when: show_panels == true
PropertyChanges { target: system_fusion_algo; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: ["None", "Basic (No Nav)", "CompMag", "Comp+Mag+GPS", "EKFIndoor", "GPS Nav (INS13)"][RevoSettings.FusionAlgorithm]
@ -1011,7 +1061,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.35)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -1021,17 +1071,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
states: State {
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); }
when: show_panels == true
PropertyChanges { target: system_mag_used; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: ["Invalid", "OnBoard", "External"][MagState.Source]
@ -1042,7 +1092,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -1052,17 +1102,17 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: system_gpstype; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: system_gpstype; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: ["Unknown", "NMEA", "UBX", "UBX7", "UBX8"][GPSPositionSensor.SensorType]
@ -1073,7 +1123,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementImage {
@ -1083,23 +1133,23 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
MouseArea {
id: hidedisp_system;
anchors.fill: parent;
cursorShape: Qt.WhatsThisCursor
MouseArea {
id: hidedisp_system;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
onClicked: hide_display_system()
}
states: State {
states: State {
name: "fading"
when: show_panels !== true
PropertyChanges { target: system_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) - (system_bg.width * 0.85); }
when: show_panels == true
PropertyChanges { target: system_mousearea; x: Math.floor(scaledBounds.x * sceneItem.width) + offset_value; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; easing.type: anim_type; easing.amplitude: anim_amplitude; easing.period: anim_period; duration: duration_value }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
}

View File

@ -15,7 +15,7 @@
height="480"
id="svg2"
version="1.1"
inkscape:version="0.48.5 r10040"
inkscape:version="0.91 r13725"
sodipodi:docname="pfd.svg"
inkscape:export-filename="/Users/muralha/Desktop/new PFD ideas/pfd/test2.png"
inkscape:export-xdpi="72"
@ -320,6 +320,35 @@
x2="187.44969"
y2="378.5622"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5144-5"
id="linearGradient5150-7"
x1="185.89207"
y1="292.12827"
x2="197.19637"
y2="303.79398"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient5144-5">
<stop
style="stop-color:#a90000;stop-opacity:1;"
offset="0"
id="stop5146-0" />
<stop
style="stop-color:#fff9ff;stop-opacity:1;"
offset="1"
id="stop5148-1" />
</linearGradient>
<linearGradient
y2="303.79398"
x2="197.19637"
y1="292.12827"
x1="185.89207"
gradientUnits="userSpaceOnUse"
id="linearGradient6836"
xlink:href="#linearGradient5144-5"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
id="base"
@ -328,11 +357,11 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="4.4435303"
inkscape:cx="83.21774"
inkscape:cy="132.7629"
inkscape:zoom="1.51875"
inkscape:cx="153.48542"
inkscape:cy="256.59212"
inkscape:document-units="px"
inkscape:current-layer="smeter-scale"
inkscape:current-layer="layer48"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
@ -345,20 +374,21 @@
inkscape:window-maximized="1"
showguides="true"
inkscape:guide-bbox="true"
inkscape:object-nodes="true"
inkscape:object-nodes="false"
inkscape:object-paths="true"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox-midpoints="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-midpoints="false"
inkscape:snap-grids="false"
inkscape:snap-to-guides="false"
inkscape:snap-nodes="true"
inkscape:snap-nodes="false"
inkscape:bbox-paths="false"
inkscape:snap-global="true"
inkscape:snap-intersection-paths="false"
inkscape:snap-object-midpoints="false"
inkscape:snap-center="false"
inkscape:snap-bbox-edge-midpoints="false">
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-smooth-nodes="false">
<sodipodi:guide
orientation="1,0"
position="320.03652,382.998"
@ -395,7 +425,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
@ -449,14 +479,12 @@
id="layer14"
inkscape:label="pitch"
style="display:inline"
transform="translate(0,-4)"
sodipodi:insensitive="true">
transform="translate(0,-4)">
<g
inkscape:groupmode="layer"
id="layer16"
inkscape:label="pitch-window"
style="display:none"
sodipodi:insensitive="true">
style="display:inline">
<rect
style="fill:none;stroke:#ff0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
id="pitch-window"
@ -465,6 +493,14 @@
x="260.5"
y="131.5"
inkscape:label="#rect6180" />
<rect
inkscape:label="#rect6180"
y="130.58534"
x="146.60396"
height="180.82932"
width="344.2532"
id="pitch-window-terrain"
style="fill:none;stroke:#ff0000;stroke-width:1.70951712;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
</g>
<g
inkscape:groupmode="layer"
@ -1177,21 +1213,19 @@
inkscape:groupmode="layer"
id="layer24"
inkscape:label="home"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer25"
inkscape:label="home-bg"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="home-bg"
inkscape:label="#g4876"
transform="translate(0.42403,0)">
transform="translate(89.22403,-4)">
<path
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0"
d="m 553.5,404.5 l 87,0 l 0,59 l -89,0 l 0,-57 c 0,-1.108 0.892,-2 2,-2 z"
d="M 553.5,404.5 L 640.5,404.5 L 640.5,463.5 L 551.5,463.5 L 551.5,406.5 C 551.5,405.392 552.392,404.5 553.5,404.5 z"
id="rect4746"
inkscape:connector-curvature="0"
sodipodi:nodetypes="scccss" />
@ -1200,17 +1234,17 @@
id="home-eta-label"
transform="matrix(1,0,0,1.0973877,0,-46.442937)">
<path
d="m 555.23804,452.56836 l 4.60937,0 l 0,0.83008 l -3.62304,0 l 0,2.1582 l 3.47167,0 l 0,0.83008 l -3.47167,0 l 0,2.6416 l 3.71093,0 l 0,0.83008 l -4.69726,0 l 0,-7.29004"
d="M 555.23804,452.56836 L 559.84741,452.56836 L 559.84741,453.39844 L 556.22437,453.39844 L 556.22437,455.55664 L 559.69604,455.55664 L 559.69604,456.38672 L 556.22437,456.38672 L 556.22437,459.02832 L 559.9353,459.02832 L 559.9353,459.8584 L 555.23804,459.8584 L 555.23804,452.56836"
style="font-size:10px;fill:#ffffff"
id="path6523"
inkscape:connector-curvature="0" />
<path
d="m 560.55542,452.56836 l 6.16699,0 l 0,0.83008 l -2.58789,0 l 0,6.45996 l -0.99121,0 l 0,-6.45996 l -2.58789,0 l 0,-0.83008"
d="M 560.55542,452.56836 L 566.72241,452.56836 L 566.72241,453.39844 L 564.13452,453.39844 L 564.13452,459.8584 L 563.14331,459.8584 L 563.14331,453.39844 L 560.55542,453.39844 L 560.55542,452.56836"
style="font-size:10px;fill:#ffffff"
id="path6525"
inkscape:connector-curvature="0" />
<path
d="m 569.33472,453.54004 l -1.33789,3.62793 l 2.68066,0 l -1.34277,-3.62793 m -0.55664,-0.97168 l 1.11816,0 l 2.77832,7.29004 l -1.02539,0 l -0.66406,-1.87012 l -3.28614,0 l -0.66406,1.87012 l -1.04004,0 l 2.78321,-7.29004"
d="M 569.33472,453.54004 L 567.99683,457.16797 L 570.67749,457.16797 L 569.33472,453.54004 M 568.77808,452.56836 L 569.89624,452.56836 L 572.67456,459.8584 L 571.64917,459.8584 L 570.98511,457.98828 L 567.69897,457.98828 L 567.03491,459.8584 L 565.99487,459.8584 L 568.77808,452.56836"
style="font-size:10px;fill:#ffffff"
id="path6527"
inkscape:connector-curvature="0" />
@ -1220,22 +1254,22 @@
id="home-distance-label"
transform="matrix(1,0,0,1.0577142,0,-27.456636)">
<path
d="m 556.22437,440.37891 l 0,5.66894 l 1.1914,0 c 1.00586,0 1.74153,-0.22786 2.20703,-0.68359 c 0.46875,-0.45573 0.70312,-1.17513 0.70313,-2.15821 c -10e-6,-0.97655 -0.23438,-1.69107 -0.70313,-2.14355 c -0.4655,-0.45572 -1.20117,-0.68359 -2.20703,-0.68359 l -1.1914,0 m -0.98633,-0.81055 l 2.02636,0 c 1.41276,1e-5 2.44954,0.2946 3.11036,0.88379 c 0.6608,0.58594 0.9912,1.50391 0.99121,2.7539 c -10e-6,1.25652 -0.33204,2.17937 -0.9961,2.76856 c -0.66406,0.58919 -1.69922,0.88379 -3.10547,0.88379 l -2.02636,0 l 0,-7.29004"
d="M 556.22437,440.37891 L 556.22437,446.04785 L 557.41577,446.04785 C 558.42163,446.04785 559.1573,445.81999 559.6228,445.36426 C 560.09155,444.90853 560.32592,444.18913 560.32593,443.20605 C 560.32592,442.2295 560.09155,441.51498 559.6228,441.0625 C 559.1573,440.60678 558.42163,440.37891 557.41577,440.37891 L 556.22437,440.37891 M 555.23804,439.56836 L 557.2644,439.56836 C 558.67716,439.56837 559.71394,439.86296 560.37476,440.45215 C 561.03556,441.03809 561.36596,441.95606 561.36597,443.20605 C 561.36596,444.46257 561.03393,445.38542 560.36987,445.97461 C 559.70581,446.5638 558.67065,446.8584 557.2644,446.8584 L 555.23804,446.8584 L 555.23804,439.56836"
style="font-size:10px;fill:#ffffff"
id="path6514"
inkscape:connector-curvature="0" />
<path
d="m 562.93335,439.56836 l 0.98633,0 l 0,7.29004 l -0.98633,0 l 0,-7.29004"
d="M 562.93335,439.56836 L 563.91968,439.56836 L 563.91968,446.8584 L 562.93335,446.8584 L 562.93335,439.56836"
style="font-size:10px;fill:#ffffff"
id="path6516"
inkscape:connector-curvature="0" />
<path
d="m 570.25269,439.80762 l 0,0.96191 c -0.37436,-0.17903 -0.72755,-0.31249 -1.05957,-0.40039 c -0.33204,-0.0879 -0.65268,-0.13183 -0.96192,-0.13184 c -0.53711,10e-6 -0.95215,0.10418 -1.24512,0.3125 c -0.28971,0.20834 -0.43457,0.50457 -0.43457,0.88868 c 0,0.32227 0.096,0.56641 0.28809,0.73242 c 0.19531,0.16276 0.56315,0.2946 1.10352,0.39551 l 0.5957,0.12207 c 0.73567,0.13997 1.27766,0.38737 1.62597,0.74218 c 0.35156,0.35157 0.52734,0.82357 0.52735,1.41602 c -10e-6,0.70638 -0.23764,1.24186 -0.71289,1.60644 C 569.50724,446.81771 568.81388,447 567.89917,447 c -0.34505,0 -0.71289,-0.0391 -1.10352,-0.11719 c -0.38737,-0.0781 -0.78938,-0.19368 -1.20605,-0.34668 l 0,-1.01562 c 0.40039,0.22461 0.79264,0.39388 1.17676,0.50781 c 0.38411,0.11393 0.76171,0.1709 1.13281,0.1709 c 0.56315,0 0.99772,-0.11068 1.30371,-0.33203 c 0.30599,-0.22136 0.45898,-0.53711 0.45899,-0.94727 c -10e-6,-0.35807 -0.11069,-0.63802 -0.33204,-0.83984 c -0.2181,-0.20182 -0.5778,-0.35319 -1.0791,-0.4541 l -0.60058,-0.11719 c -0.73568,-0.14648 -1.26791,-0.37597 -1.59668,-0.68848 c -0.32878,-0.31249 -0.49317,-0.74706 -0.49317,-1.30371 c 0,-0.64452 0.22624,-1.15234 0.67871,-1.52344 c 0.45573,-0.37108 1.08236,-0.55663 1.87989,-0.55664 c 0.34179,1e-5 0.6901,0.0309 1.04492,0.0928 c 0.35481,0.0619 0.71777,0.15463 1.08887,0.27832"
d="M 570.25269,439.80762 L 570.25269,440.76953 C 569.87833,440.5905 569.52514,440.45704 569.19312,440.36914 C 568.86108,440.28124 568.54044,440.23731 568.2312,440.2373 C 567.69409,440.23731 567.27905,440.34148 566.98608,440.5498 C 566.69637,440.75814 566.55151,441.05437 566.55151,441.43848 C 566.55151,441.76075 566.64751,442.00489 566.8396,442.1709 C 567.03491,442.33366 567.40275,442.4655 567.94312,442.56641 L 568.53882,442.68848 C 569.27449,442.82845 569.81648,443.07585 570.16479,443.43066 C 570.51635,443.78223 570.69213,444.25423 570.69214,444.84668 C 570.69213,445.55306 570.4545,446.08854 569.97925,446.45312 C 569.50724,446.81771 568.81388,447 567.89917,447 C 567.55412,447 567.18628,446.9609 566.79565,446.88281 C 566.40828,446.80471 566.00627,446.68913 565.5896,446.53613 L 565.5896,445.52051 C 565.98999,445.74512 566.38224,445.91439 566.76636,446.02832 C 567.15047,446.14225 567.52807,446.19922 567.89917,446.19922 C 568.46232,446.19922 568.89689,446.08854 569.20288,445.86719 C 569.50887,445.64583 569.66186,445.33008 569.66187,444.91992 C 569.66186,444.56185 569.55118,444.2819 569.32983,444.08008 C 569.11173,443.87826 568.75203,443.72689 568.25073,443.62598 L 567.65015,443.50879 C 566.91447,443.36231 566.38224,443.13282 566.05347,442.82031 C 565.72469,442.50782 565.5603,442.07325 565.5603,441.5166 C 565.5603,440.87208 565.78654,440.36426 566.23901,439.99316 C 566.69474,439.62208 567.32137,439.43653 568.1189,439.43652 C 568.46069,439.43653 568.809,439.46742 569.16382,439.52932 C 569.51863,439.59122 569.88159,439.68395 570.25269,439.80764"
style="font-size:10px;fill:#ffffff"
id="path6518"
inkscape:connector-curvature="0" />
<path
d="m 571.21948,439.56836 l 6.16699,0 l 0,0.83008 l -2.58789,0 l 0,6.45996 l -0.99121,0 l 0,-6.45996 l -2.58789,0 l 0,-0.83008"
d="M 571.21948,439.56836 L 577.38647,439.56836 L 577.38647,440.39844 L 574.79858,440.39844 L 574.79858,446.8584 L 573.80737,446.8584 L 573.80737,440.39844 L 571.21948,440.39844 L 571.21948,439.56836"
style="font-size:10px;fill:#ffffff"
id="path6520"
inkscape:connector-curvature="0" />
@ -1244,29 +1278,29 @@
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="home-label">
<path
d="m 578.45581,408.11035 l 1.18359,0 l 0,3.58594 l 4.30079,0 l 0,-3.58594 l 1.18359,0 l 0,8.74805 l -1.18359,0 l 0,-4.16602 l -4.30079,0 l 0,4.16602 l -1.18359,0 l 0,-8.74805"
d="M 578.45581,408.11035 L 579.6394,408.11035 L 579.6394,411.69629 L 583.94019,411.69629 L 583.94019,408.11035 L 585.12378,408.11035 L 585.12378,416.8584 L 583.94019,416.8584 L 583.94019,412.69238 L 579.6394,412.69238 L 579.6394,416.8584 L 578.45581,416.8584 L 578.45581,408.11035"
style="font-size:12px;text-align:center;text-anchor:middle;fill:#00ffff"
id="path6817"
inkscape:connector-curvature="0" />
<path
d="m 591.03003,408.91309 c -0.85938,0 -1.54297,0.32032 -2.05078,0.96093 c -0.50391,0.64063 -0.75586,1.51368 -0.75586,2.61914 c 0,1.10157 0.25195,1.97266 0.75586,2.61329 c 0.50781,0.64062 1.1914,0.96093 2.05078,0.96093 c 0.85937,0 1.53906,-0.32031 2.03906,-0.96093 c 0.5039,-0.64063 0.75585,-1.51172 0.75586,-2.61329 c -10e-6,-1.10546 -0.25196,-1.97851 -0.75586,-2.61914 c -0.5,-0.64061 -1.17969,-0.96093 -2.03906,-0.96093 m 0,-0.96094 c 1.22656,10e-6 2.20702,0.41212 2.94141,1.23633 c 0.73436,0.82032 1.10155,1.92188 1.10156,3.30468 c -10e-6,1.37891 -0.3672,2.48047 -1.10156,3.30469 c -0.73439,0.82031 -1.71485,1.23047 -2.94141,1.23047 c -1.23047,0 -2.21485,-0.41016 -2.95313,-1.23047 c -0.73437,-0.82031 -1.10156,-1.92187 -1.10156,-3.30469 c 0,-1.3828 0.36719,-2.48436 1.10156,-3.30468 c 0.73828,-0.82421 1.72266,-1.23632 2.95313,-1.23633"
d="M 591.03003,408.91309 C 590.17065,408.91309 589.48706,409.23341 588.97925,409.87402 C 588.47534,410.51465 588.22339,411.3877 588.22339,412.49316 C 588.22339,413.59473 588.47534,414.46582 588.97925,415.10645 C 589.48706,415.74707 590.17065,416.06738 591.03003,416.06738 C 591.8894,416.06738 592.56909,415.74707 593.06909,415.10645 C 593.57299,414.46582 593.82494,413.59473 593.82495,412.49316 C 593.82494,411.3877 593.57299,410.51465 593.06909,409.87402 C 592.56909,409.23341 591.8894,408.91309 591.03003,408.91309 M 591.03003,407.95215 C 592.25659,407.95216 593.23705,408.36427 593.97144,409.18848 C 594.7058,410.0088 595.07299,411.11036 595.073,412.49316 C 595.07299,413.87207 594.7058,414.97363 593.97144,415.79785 C 593.23705,416.61816 592.25659,417.02832 591.03003,417.02832 C 589.79956,417.02832 588.81518,416.61816 588.0769,415.79785 C 587.34253,414.97754 586.97534,413.87598 586.97534,412.49316 C 586.97534,411.11036 587.34253,410.0088 588.0769,409.18848 C 588.81518,408.36427 589.79956,407.95216 591.03003,407.95215"
style="font-size:12px;text-align:center;text-anchor:middle;fill:#00ffff"
id="path6819"
inkscape:connector-curvature="0" />
<path
d="m 596.92456,408.11035 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 596.92456,408.11035 L 598.68823,408.11035 L 600.92065,414.06348 L 603.16479,408.11035 L 604.92847,408.11035 L 604.92847,416.8584 L 603.77417,416.8584 L 603.77417,409.17676 L 601.51831,415.17676 L 600.32886,415.17676 L 598.073,409.17676 L 598.073,416.8584 L 596.92456,416.8584 L 596.92456,408.11035"
style="font-size:12px;text-align:center;text-anchor:middle;fill:#00ffff"
id="path6821"
inkscape:connector-curvature="0" />
<path
d="m 607.28394,408.11035 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.16992 l 4.45312,0 l 0,0.9961 l -5.63671,0 l 0,-8.74805"
d="M 607.28394,408.11035 L 612.81519,408.11035 L 612.81519,409.10645 L 608.46753,409.10645 L 608.46753,411.69629 L 612.63354,411.69629 L 612.63354,412.69238 L 608.46753,412.69238 L 608.46753,415.8623 L 612.92065,415.8623 L 612.92065,416.8584 L 607.28394,416.8584 L 607.28394,408.11035"
style="font-size:12px;text-align:center;text-anchor:middle;fill:#00ffff"
id="path6823"
inkscape:connector-curvature="0" />
</g>
<path
style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 551.27597,420.47029 l 89.30237,0"
d="M 551.27597,420.47029 L 640.57834,420.47029"
id="path3610"
inkscape:connector-curvature="0" />
<g
@ -1274,17 +1308,17 @@
id="home-heading-label"
transform="matrix(1,0,0,1.0577142,0,-26.706351)">
<path
d="m 555.23804,426.56836 l 0.98633,0 l 0,2.98828 l 3.58398,0 l 0,-2.98828 l 0.98633,0 l 0,7.29004 l -0.98633,0 l 0,-3.47168 l -3.58398,0 l 0,3.47168 l -0.98633,0 l 0,-7.29004"
d="M 555.23804,426.56836 L 556.22437,426.56836 L 556.22437,429.55664 L 559.80835,429.55664 L 559.80835,426.56836 L 560.79468,426.56836 L 560.79468,433.8584 L 559.80835,433.8584 L 559.80835,430.38672 L 556.22437,430.38672 L 556.22437,433.8584 L 555.23804,433.8584 L 555.23804,426.56836"
style="font-size:10px;fill:#ffffff"
id="path6507"
inkscape:connector-curvature="0" />
<path
d="m 563.7439,427.37891 l 0,5.66894 l 1.1914,0 c 1.00586,0 1.74153,-0.22786 2.20703,-0.68359 c 0.46875,-0.45573 0.70312,-1.17513 0.70313,-2.15821 c -10e-6,-0.97655 -0.23438,-1.69107 -0.70313,-2.14355 c -0.4655,-0.45572 -1.20117,-0.68359 -2.20703,-0.68359 l -1.1914,0 m -0.98633,-0.81055 l 2.02637,0 c 1.41275,1e-5 2.44953,0.2946 3.11035,0.88379 c 0.6608,0.58594 0.9912,1.50391 0.99121,2.7539 c -10e-6,1.25652 -0.33204,2.17937 -0.9961,2.76856 c -0.66406,0.58919 -1.69922,0.88379 -3.10546,0.88379 l -2.02637,0 l 0,-7.29004"
d="M 563.7439,427.37891 L 563.7439,433.04785 L 564.9353,433.04785 C 565.94116,433.04785 566.67683,432.81999 567.14233,432.36426 C 567.61108,431.90853 567.84545,431.18913 567.84546,430.20605 C 567.84545,429.2295 567.61108,428.51498 567.14233,428.0625 C 566.67683,427.60678 565.94116,427.37891 564.9353,427.37891 L 563.7439,427.37891 M 562.75757,426.56836 L 564.78394,426.56836 C 566.19669,426.56837 567.23347,426.86296 567.89429,427.45215 C 568.55509,428.03809 568.88549,428.95606 568.8855,430.20605 C 568.88549,431.46257 568.55346,432.38542 567.8894,432.97461 C 567.22534,433.5638 566.19018,433.8584 564.78394,433.8584 L 562.75757,433.8584 L 562.75757,426.56836"
style="font-size:10px;fill:#ffffff"
id="path6509"
inkscape:connector-curvature="0" />
<path
d="m 575.42358,432.81836 l 0,-1.95801 l -1.61132,0 l 0,-0.81055 l 2.58789,0 l 0,3.12989 c -0.38087,0.27018 -0.80079,0.47526 -1.25977,0.61523 C 574.68139,433.93164 574.19148,434 573.67065,434 c -1.13932,0 -2.03125,-0.33203 -2.67578,-0.99609 c -0.64127,-0.66732 -0.96191,-1.59505 -0.96191,-2.78321 c 0,-1.1914 0.32064,-2.11913 0.96191,-2.7832 c 0.64453,-0.66731 1.53646,-1.00097 2.67578,-1.00098 c 0.47526,1e-5 0.92611,0.0586 1.35254,0.17578 c 0.42968,0.1172 0.82519,0.28973 1.18653,0.51758 l 0,1.04981 c -0.36459,-0.30924 -0.75196,-0.54199 -1.16211,-0.69824 c -0.41016,-0.15625 -0.84148,-0.23437 -1.29395,-0.23438 c -0.89193,10e-6 -1.5625,0.24903 -2.01172,0.74707 c -0.44596,0.49805 -0.66894,1.24024 -0.66894,2.22656 c 0,0.98308 0.22298,1.72364 0.66894,2.22168 c 0.44922,0.49805 1.11979,0.74707 2.01172,0.74707 c 0.3483,0 0.65918,-0.0293 0.93262,-0.0879 c 0.27343,-0.0618 0.5192,-0.15625 0.7373,-0.2832"
d="M 575.42358,432.81836 L 575.42358,430.86035 L 573.81226,430.86035 L 573.81226,430.0498 L 576.40015,430.0498 L 576.40015,433.17969 C 576.01928,433.44987 575.59936,433.65495 575.14038,433.79492 C 574.68139,433.93164 574.19148,434 573.67065,434 C 572.53133,434 571.6394,433.66797 570.99487,433.00391 C 570.3536,432.33659 570.03296,431.40886 570.03296,430.2207 C 570.03296,429.0293 570.3536,428.10157 570.99487,427.4375 C 571.6394,426.77019 572.53133,426.43653 573.67065,426.43652 C 574.14591,426.43653 574.59676,426.49512 575.02319,426.6123 C 575.45287,426.7295 575.84838,426.90203 576.20972,427.12988 L 576.20972,428.17969 C 575.84513,427.87045 575.45776,427.6377 575.04761,427.48145 C 574.63745,427.3252 574.20613,427.24708 573.75366,427.24707 C 572.86173,427.24708 572.19116,427.4961 571.74194,427.99414 C 571.29598,428.49219 571.073,429.23438 571.073,430.2207 C 571.073,431.20378 571.29598,431.94434 571.74194,432.44238 C 572.19116,432.94043 572.86173,433.18945 573.75366,433.18945 C 574.10196,433.18945 574.41284,433.16015 574.68628,433.10155 C 574.95971,433.03975 575.20548,432.9453 575.42358,432.81835"
style="font-size:10px;fill:#ffffff"
id="path6511"
inkscape:connector-curvature="0" />
@ -1295,49 +1329,48 @@
inkscape:groupmode="layer"
id="layer26"
inkscape:label="home-eta-text"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#00ffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="home-eta-text"
transform="matrix(1,0,0,0.99160769,0,2.0646588)">
transform="matrix(1,0,0,0.99160769,88.8,-1.9353412)">
<path
d="m 585.61493,452.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 585.61493,452.36133 C 585.00555,452.36134 584.54657,452.66212 584.23798,453.26367 C 583.93329,453.86133 583.78094,454.76172 583.78094,455.96484 C 583.78094,457.16407 583.93329,458.06446 584.23798,458.66602 C 584.54657,459.26367 585.00555,459.5625 585.61493,459.5625 C 586.22821,459.5625 586.68719,459.26367 586.99188,458.66602 C 587.30047,458.06446 587.45477,457.16407 587.45477,455.96484 C 587.45477,454.76172 587.30047,453.86133 586.99188,453.26367 C 586.68719,452.66212 586.22821,452.36134 585.61493,452.36133 M 585.61493,451.42383 C 586.59539,451.42384 587.34344,451.81251 587.85907,452.58984 C 588.37859,453.36329 588.63836,454.48829 588.63837,455.96484 C 588.63836,457.4375 588.37859,458.5625 587.85907,459.33984 C 587.34344,460.11328 586.59539,460.5 585.61493,460.5 C 584.63446,460.5 583.88446,460.11328 583.36493,459.33984 C 582.8493,458.5625 582.59149,457.4375 582.59149,455.96484 C 582.59149,454.48829 582.8493,453.36329 583.36493,452.58984 C 583.88446,451.81251 584.63446,451.42384 585.61493,451.42383"
style="font-size:12px;fill:#00ffff"
id="path6552"
inkscape:connector-curvature="0" />
<path
d="m 593.25555,452.36133 c -0.60937,10e-6 -1.06836,0.30079 -1.37695,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.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37696,-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.3047,-0.60155 -0.76368,-0.90233 -1.37696,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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.77343,-1.90234 -0.77343,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77343,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 593.25555,452.36133 C 592.64618,452.36134 592.18719,452.66212 591.8786,453.26367 C 591.57391,453.86133 591.42157,454.76172 591.42157,455.96484 C 591.42157,457.16407 591.57391,458.06446 591.8786,458.66602 C 592.18719,459.26367 592.64618,459.5625 593.25555,459.5625 C 593.86883,459.5625 594.32781,459.26367 594.63251,458.66602 C 594.9411,458.06446 595.09539,457.16407 595.0954,455.96484 C 595.09539,454.76172 594.9411,453.86133 594.63251,453.26367 C 594.32781,452.66212 593.86883,452.36134 593.25555,452.36133 M 593.25555,451.42383 C 594.23602,451.42384 594.98406,451.81251 595.49969,452.58984 C 596.01922,453.36329 596.27898,454.48829 596.27899,455.96484 C 596.27898,457.4375 596.01922,458.5625 595.49969,459.33984 C 594.98406,460.11328 594.23602,460.5 593.25555,460.5 C 592.27508,460.5 591.52508,460.11328 591.00555,459.33984 C 590.48993,458.5625 590.23212,457.4375 590.23212,455.96484 C 590.23212,454.48829 590.48993,453.36329 591.00555,452.58984 C 591.52508,451.81251 592.27508,451.42384 593.25555,451.42383"
style="font-size:12px;fill:#00ffff"
id="path6554"
inkscape:connector-curvature="0" />
<path
d="m 598.48798,458.8418 l 1.23632,0 l 0,1.48828 l -1.23632,0 l 0,-1.48828 m 0,-4.7168 l 1.23632,0 l 0,1.48828 l -1.23632,0 l 0,-1.48828"
d="M 598.48798,458.8418 L 599.7243,458.8418 L 599.7243,460.33008 L 598.48798,460.33008 L 598.48798,458.8418 M 598.48798,454.125 L 599.7243,454.125 L 599.7243,455.61328 L 598.48798,455.61328 L 598.48798,454.125"
style="font-size:12px;fill:#00ffff"
id="path6556"
inkscape:connector-curvature="0" />
<path
d="m 604.95087,452.36133 c -0.60938,10e-6 -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,10e-6 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.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 604.95087,452.36133 C 604.34149,452.36134 603.8825,452.66212 603.57391,453.26367 C 603.26922,453.86133 603.11688,454.76172 603.11688,455.96484 C 603.11688,457.16407 603.26922,458.06446 603.57391,458.66602 C 603.8825,459.26367 604.34149,459.5625 604.95087,459.5625 C 605.56414,459.5625 606.02313,459.26367 606.32782,458.66602 C 606.63641,458.06446 606.7907,457.16407 606.79071,455.96484 C 606.7907,454.76172 606.63641,453.86133 606.32782,453.26367 C 606.02313,452.66212 605.56414,452.36134 604.95087,452.36133 M 604.95087,451.42383 C 605.93133,451.42384 606.67938,451.81251 607.19501,452.58984 C 607.71453,453.36329 607.9743,454.48829 607.9743,455.96484 C 607.9743,457.4375 607.71453,458.5625 607.19501,459.33984 C 606.67938,460.11328 605.93133,460.5 604.95087,460.5 C 603.9704,460.5 603.2204,460.11328 602.70087,459.33984 C 602.18524,458.5625 601.92743,457.4375 601.92743,455.96484 C 601.92743,454.48829 602.18524,453.36329 602.70087,452.58984 C 603.2204,451.81251 603.9704,451.42384 604.95087,451.42383"
style="font-size:12px;fill:#00ffff"
id="path6558"
inkscape:connector-curvature="0" />
<path
d="m 612.59149,452.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,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.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.4629,-2.70118 c -10e-6,-1.20312 -0.15431,-2.10351 -0.4629,-2.70117 c -0.30469,-0.60155 -0.76367,-0.90233 -1.37695,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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 614.32,460.11328 613.57196,460.5 612.59149,460.5 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 612.59149,452.36133 C 611.98211,452.36134 611.52313,452.66212 611.21454,453.26367 C 610.90985,453.86133 610.75751,454.76172 610.75751,455.96484 C 610.75751,457.16407 610.90985,458.06446 611.21454,458.66602 C 611.52313,459.26367 611.98211,459.5625 612.59149,459.5625 C 613.20477,459.5625 613.66375,459.26367 613.96844,458.66602 C 614.27703,458.06446 614.43133,457.16407 614.43134,455.96484 C 614.43133,454.76172 614.27703,453.86133 613.96844,453.26367 C 613.66375,452.66212 613.20477,452.36134 612.59149,452.36133 M 612.59149,451.42383 C 613.57196,451.42384 614.32,451.81251 614.83563,452.58984 C 615.35516,453.36329 615.61492,454.48829 615.61493,455.96484 C 615.61492,457.4375 615.35516,458.5625 614.83563,459.33984 C 614.32,460.11328 613.57196,460.5 612.59149,460.5 C 611.61102,460.5 610.86102,460.11328 610.34149,459.33984 C 609.82587,458.5625 609.56805,457.4375 609.56805,455.96484 C 609.56805,454.48829 609.82587,453.36329 610.34149,452.58984 C 610.86102,451.81251 611.61102,451.42384 612.59149,451.42383"
style="font-size:12px;fill:#00ffff"
id="path6560"
inkscape:connector-curvature="0" />
<path
d="m 617.82391,458.8418 l 1.23633,0 l 0,1.48828 l -1.23633,0 l 0,-1.48828 m 0,-4.7168 l 1.23633,0 l 0,1.48828 l -1.23633,0 l 0,-1.48828"
d="M 617.82391,458.8418 L 619.06024,458.8418 L 619.06024,460.33008 L 617.82391,460.33008 L 617.82391,458.8418 M 617.82391,454.125 L 619.06024,454.125 L 619.06024,455.61328 L 617.82391,455.61328 L 617.82391,454.125"
style="font-size:12px;fill:#00ffff"
id="path6562"
inkscape:connector-curvature="0" />
<path
d="m 624.2868,452.36133 c -0.60937,10e-6 -1.06836,0.30079 -1.37695,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.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37696,-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.3047,-0.60155 -0.76368,-0.90233 -1.37696,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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.77343,-1.90234 -0.77343,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77343,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 624.2868,452.36133 C 623.67743,452.36134 623.21844,452.66212 622.90985,453.26367 C 622.60516,453.86133 622.45282,454.76172 622.45282,455.96484 C 622.45282,457.16407 622.60516,458.06446 622.90985,458.66602 C 623.21844,459.26367 623.67743,459.5625 624.2868,459.5625 C 624.90008,459.5625 625.35906,459.26367 625.66376,458.66602 C 625.97235,458.06446 626.12664,457.16407 626.12665,455.96484 C 626.12664,454.76172 625.97235,453.86133 625.66376,453.26367 C 625.35906,452.66212 624.90008,452.36134 624.2868,452.36133 M 624.2868,451.42383 C 625.26727,451.42384 626.01531,451.81251 626.53094,452.58984 C 627.05047,453.36329 627.31023,454.48829 627.31024,455.96484 C 627.31023,457.4375 627.05047,458.5625 626.53094,459.33984 C 626.01531,460.11328 625.26727,460.5 624.2868,460.5 C 623.30633,460.5 622.55633,460.11328 622.0368,459.33984 C 621.52118,458.5625 621.26337,457.4375 621.26337,455.96484 C 621.26337,454.48829 621.52118,453.36329 622.0368,452.58984 C 622.55633,451.81251 623.30633,451.42384 624.2868,451.42383"
style="font-size:12px;fill:#00ffff"
id="path6564"
inkscape:connector-curvature="0" />
<path
d="m 631.92743,452.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 631.92743,452.36133 C 631.31805,452.36134 630.85907,452.66212 630.55048,453.26367 C 630.24579,453.86133 630.09344,454.76172 630.09344,455.96484 C 630.09344,457.16407 630.24579,458.06446 630.55048,458.66602 C 630.85907,459.26367 631.31805,459.5625 631.92743,459.5625 C 632.54071,459.5625 632.99969,459.26367 633.30438,458.66602 C 633.61297,458.06446 633.76727,457.16407 633.76727,455.96484 C 633.76727,454.76172 633.61297,453.86133 633.30438,453.26367 C 632.99969,452.66212 632.54071,452.36134 631.92743,452.36133 M 631.92743,451.42383 C 632.90789,451.42384 633.65594,451.81251 634.17157,452.58984 C 634.69109,453.36329 634.95086,454.48829 634.95087,455.96484 C 634.95086,457.4375 634.69109,458.5625 634.17157,459.33984 C 633.65594,460.11328 632.90789,460.5 631.92743,460.5 C 630.94696,460.5 630.19696,460.11328 629.67743,459.33984 C 629.1618,458.5625 628.90399,457.4375 628.90399,455.96484 C 628.90399,454.48829 629.1618,453.36329 629.67743,452.58984 C 630.19696,451.81251 630.94696,451.42384 631.92743,451.42383"
style="font-size:12px;fill:#00ffff"
id="path6566"
inkscape:connector-curvature="0" />
@ -1347,44 +1380,43 @@
inkscape:groupmode="layer"
id="layer27"
inkscape:label="home-distance-text"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#00ffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="home-distance-text"
transform="matrix(1,0,0,0.99160769,0,2.0975587)">
transform="matrix(1,0,0,0.99160769,88.8,-1.9024413)">
<path
d="m 585.61493,439.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 585.61493,439.36133 C 585.00555,439.36134 584.54657,439.66212 584.23798,440.26367 C 583.93329,440.86133 583.78094,441.76172 583.78094,442.96484 C 583.78094,444.16407 583.93329,445.06446 584.23798,445.66602 C 584.54657,446.26367 585.00555,446.5625 585.61493,446.5625 C 586.22821,446.5625 586.68719,446.26367 586.99188,445.66602 C 587.30047,445.06446 587.45477,444.16407 587.45477,442.96484 C 587.45477,441.76172 587.30047,440.86133 586.99188,440.26367 C 586.68719,439.66212 586.22821,439.36134 585.61493,439.36133 M 585.61493,438.42383 C 586.59539,438.42384 587.34344,438.81251 587.85907,439.58984 C 588.37859,440.36329 588.63836,441.48829 588.63837,442.96484 C 588.63836,444.4375 588.37859,445.5625 587.85907,446.33984 C 587.34344,447.11328 586.59539,447.5 585.61493,447.5 C 584.63446,447.5 583.88446,447.11328 583.36493,446.33984 C 582.8493,445.5625 582.59149,444.4375 582.59149,442.96484 C 582.59149,441.48829 582.8493,440.36329 583.36493,439.58984 C 583.88446,438.81251 584.63446,438.42384 585.61493,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6537"
inkscape:connector-curvature="0" />
<path
d="m 593.25555,439.36133 c -0.60937,10e-6 -1.06836,0.30079 -1.37695,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.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37696,-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.3047,-0.60155 -0.76368,-0.90233 -1.37696,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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.77343,-1.90234 -0.77343,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77343,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 593.25555,439.36133 C 592.64618,439.36134 592.18719,439.66212 591.8786,440.26367 C 591.57391,440.86133 591.42157,441.76172 591.42157,442.96484 C 591.42157,444.16407 591.57391,445.06446 591.8786,445.66602 C 592.18719,446.26367 592.64618,446.5625 593.25555,446.5625 C 593.86883,446.5625 594.32781,446.26367 594.63251,445.66602 C 594.9411,445.06446 595.09539,444.16407 595.0954,442.96484 C 595.09539,441.76172 594.9411,440.86133 594.63251,440.26367 C 594.32781,439.66212 593.86883,439.36134 593.25555,439.36133 M 593.25555,438.42383 C 594.23602,438.42384 594.98406,438.81251 595.49969,439.58984 C 596.01922,440.36329 596.27898,441.48829 596.27899,442.96484 C 596.27898,444.4375 596.01922,445.5625 595.49969,446.33984 C 594.98406,447.11328 594.23602,447.5 593.25555,447.5 C 592.27508,447.5 591.52508,447.11328 591.00555,446.33984 C 590.48993,445.5625 590.23212,444.4375 590.23212,442.96484 C 590.23212,441.48829 590.48993,440.36329 591.00555,439.58984 C 591.52508,438.81251 592.27508,438.42384 593.25555,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6539"
inkscape:connector-curvature="0" />
<path
d="m 600.89618,439.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 600.89618,439.36133 C 600.2868,439.36134 599.82782,439.66212 599.51923,440.26367 C 599.21454,440.86133 599.06219,441.76172 599.06219,442.96484 C 599.06219,444.16407 599.21454,445.06446 599.51923,445.66602 C 599.82782,446.26367 600.2868,446.5625 600.89618,446.5625 C 601.50946,446.5625 601.96844,446.26367 602.27313,445.66602 C 602.58172,445.06446 602.73602,444.16407 602.73602,442.96484 C 602.73602,441.76172 602.58172,440.86133 602.27313,440.26367 C 601.96844,439.66212 601.50946,439.36134 600.89618,439.36133 M 600.89618,438.42383 C 601.87664,438.42384 602.62469,438.81251 603.14032,439.58984 C 603.65984,440.36329 603.91961,441.48829 603.91962,442.96484 C 603.91961,444.4375 603.65984,445.5625 603.14032,446.33984 C 602.62469,447.11328 601.87664,447.5 600.89618,447.5 C 599.91571,447.5 599.16571,447.11328 598.64618,446.33984 C 598.13055,445.5625 597.87274,444.4375 597.87274,442.96484 C 597.87274,441.48829 598.13055,440.36329 598.64618,439.58984 C 599.16571,438.81251 599.91571,438.42384 600.89618,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6541"
inkscape:connector-curvature="0" />
<path
d="m 608.5368,439.36133 c -0.60937,10e-6 -1.06836,0.30079 -1.37695,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.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37696,-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.3047,-0.60155 -0.76368,-0.90233 -1.37696,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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.77343,-1.90234 -0.77343,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77343,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 608.5368,439.36133 C 607.92743,439.36134 607.46844,439.66212 607.15985,440.26367 C 606.85516,440.86133 606.70282,441.76172 606.70282,442.96484 C 606.70282,444.16407 606.85516,445.06446 607.15985,445.66602 C 607.46844,446.26367 607.92743,446.5625 608.5368,446.5625 C 609.15008,446.5625 609.60906,446.26367 609.91376,445.66602 C 610.22235,445.06446 610.37664,444.16407 610.37665,442.96484 C 610.37664,441.76172 610.22235,440.86133 609.91376,440.26367 C 609.60906,439.66212 609.15008,439.36134 608.5368,439.36133 M 608.5368,438.42383 C 609.51727,438.42384 610.26531,438.81251 610.78094,439.58984 C 611.30047,440.36329 611.56023,441.48829 611.56024,442.96484 C 611.56023,444.4375 611.30047,445.5625 610.78094,446.33984 C 610.26531,447.11328 609.51727,447.5 608.5368,447.5 C 607.55633,447.5 606.80633,447.11328 606.2868,446.33984 C 605.77118,445.5625 605.51337,444.4375 605.51337,442.96484 C 605.51337,441.48829 605.77118,440.36329 606.2868,439.58984 C 606.80633,438.81251 607.55633,438.42384 608.5368,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6543"
inkscape:connector-curvature="0" />
<path
d="m 616.17743,439.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 616.17743,439.36133 C 615.56805,439.36134 615.10907,439.66212 614.80048,440.26367 C 614.49579,440.86133 614.34344,441.76172 614.34344,442.96484 C 614.34344,444.16407 614.49579,445.06446 614.80048,445.66602 C 615.10907,446.26367 615.56805,446.5625 616.17743,446.5625 C 616.79071,446.5625 617.24969,446.26367 617.55438,445.66602 C 617.86297,445.06446 618.01727,444.16407 618.01727,442.96484 C 618.01727,441.76172 617.86297,440.86133 617.55438,440.26367 C 617.24969,439.66212 616.79071,439.36134 616.17743,439.36133 M 616.17743,438.42383 C 617.15789,438.42384 617.90594,438.81251 618.42157,439.58984 C 618.94109,440.36329 619.20086,441.48829 619.20087,442.96484 C 619.20086,444.4375 618.94109,445.5625 618.42157,446.33984 C 617.90594,447.11328 617.15789,447.5 616.17743,447.5 C 615.19696,447.5 614.44696,447.11328 613.92743,446.33984 C 613.4118,445.5625 613.15399,444.4375 613.15399,442.96484 C 613.15399,441.48829 613.4118,440.36329 613.92743,439.58984 C 614.44696,438.81251 615.19696,438.42384 616.17743,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6545"
inkscape:connector-curvature="0" />
<path
d="m 623.81805,439.36133 c -0.60937,10e-6 -1.06836,0.30079 -1.37695,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.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37696,-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.3047,-0.60155 -0.76368,-0.90233 -1.37696,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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.77343,-1.90234 -0.77343,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77343,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 623.81805,439.36133 C 623.20868,439.36134 622.74969,439.66212 622.4411,440.26367 C 622.13641,440.86133 621.98407,441.76172 621.98407,442.96484 C 621.98407,444.16407 622.13641,445.06446 622.4411,445.66602 C 622.74969,446.26367 623.20868,446.5625 623.81805,446.5625 C 624.43133,446.5625 624.89031,446.26367 625.19501,445.66602 C 625.5036,445.06446 625.65789,444.16407 625.6579,442.96484 C 625.65789,441.76172 625.5036,440.86133 625.19501,440.26367 C 624.89031,439.66212 624.43133,439.36134 623.81805,439.36133 M 623.81805,438.42383 C 624.79852,438.42384 625.54656,438.81251 626.06219,439.58984 C 626.58172,440.36329 626.84148,441.48829 626.84149,442.96484 C 626.84148,444.4375 626.58172,445.5625 626.06219,446.33984 C 625.54656,447.11328 624.79852,447.5 623.81805,447.5 C 622.83758,447.5 622.08758,447.11328 621.56805,446.33984 C 621.05243,445.5625 620.79462,444.4375 620.79462,442.96484 C 620.79462,441.48829 621.05243,440.36329 621.56805,439.58984 C 622.08758,438.81251 622.83758,438.42384 623.81805,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6547"
inkscape:connector-curvature="0" />
<path
d="m 631.45868,439.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 631.45868,439.36133 C 630.8493,439.36134 630.39032,439.66212 630.08173,440.26367 C 629.77704,440.86133 629.62469,441.76172 629.62469,442.96484 C 629.62469,444.16407 629.77704,445.06446 630.08173,445.66602 C 630.39032,446.26367 630.8493,446.5625 631.45868,446.5625 C 632.07196,446.5625 632.53094,446.26367 632.83563,445.66602 C 633.14422,445.06446 633.29852,444.16407 633.29852,442.96484 C 633.29852,441.76172 633.14422,440.86133 632.83563,440.26367 C 632.53094,439.66212 632.07196,439.36134 631.45868,439.36133 M 631.45868,438.42383 C 632.43914,438.42384 633.18719,438.81251 633.70282,439.58984 C 634.22234,440.36329 634.48211,441.48829 634.48212,442.96484 C 634.48211,444.4375 634.22234,445.5625 633.70282,446.33984 C 633.18719,447.11328 632.43914,447.5 631.45868,447.5 C 630.47821,447.5 629.72821,447.11328 629.20868,446.33984 C 628.69305,445.5625 628.43524,444.4375 628.43524,442.96484 C 628.43524,441.48829 628.69305,440.36329 629.20868,439.58984 C 629.72821,438.81251 630.47821,438.42384 631.45868,438.42383"
style="font-size:12px;fill:#00ffff"
id="path6549"
inkscape:connector-curvature="0" />
@ -1394,24 +1426,23 @@
inkscape:groupmode="layer"
id="layer28"
inkscape:label="home-heading-text"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#00ffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
id="home-heading-text"
transform="matrix(1,0,0,0.99160769,15.28151,1.9884587)">
transform="matrix(1,0,0,0.99160769,104.08151,-2.0115413)">
<path
d="m 585.61493,426.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 585.61493,426.36133 C 585.00555,426.36134 584.54657,426.66212 584.23798,427.26367 C 583.93329,427.86133 583.78094,428.76172 583.78094,429.96484 C 583.78094,431.16407 583.93329,432.06446 584.23798,432.66602 C 584.54657,433.26367 585.00555,433.5625 585.61493,433.5625 C 586.22821,433.5625 586.68719,433.26367 586.99188,432.66602 C 587.30047,432.06446 587.45477,431.16407 587.45477,429.96484 C 587.45477,428.76172 587.30047,427.86133 586.99188,427.26367 C 586.68719,426.66212 586.22821,426.36134 585.61493,426.36133 M 585.61493,425.42383 C 586.59539,425.42384 587.34344,425.81251 587.85907,426.58984 C 588.37859,427.36329 588.63836,428.48829 588.63837,429.96484 C 588.63836,431.4375 588.37859,432.5625 587.85907,433.33984 C 587.34344,434.11328 586.59539,434.5 585.61493,434.5 C 584.63446,434.5 583.88446,434.11328 583.36493,433.33984 C 582.8493,432.5625 582.59149,431.4375 582.59149,429.96484 C 582.59149,428.48829 582.8493,427.36329 583.36493,426.58984 C 583.88446,425.81251 584.63446,425.42384 585.61493,425.42383"
style="font-size:12px;fill:#00ffff"
id="path6530"
inkscape:connector-curvature="0" />
<path
d="m 593.25555,426.36133 c -0.60937,10e-6 -1.06836,0.30079 -1.37695,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.37695,0.89648 c 0.61328,0 1.07226,-0.29883 1.37696,-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.3047,-0.60155 -0.76368,-0.90233 -1.37696,-0.90234 m 0,-0.9375 c 0.98047,10e-6 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.77343,-1.90234 -0.77343,-3.375 c 0,-1.47655 0.25781,-2.60155 0.77343,-3.375 c 0.51953,-0.77733 1.26953,-1.166 2.25,-1.16601"
d="M 593.25555,426.36133 C 592.64618,426.36134 592.18719,426.66212 591.8786,427.26367 C 591.57391,427.86133 591.42157,428.76172 591.42157,429.96484 C 591.42157,431.16407 591.57391,432.06446 591.8786,432.66602 C 592.18719,433.26367 592.64618,433.5625 593.25555,433.5625 C 593.86883,433.5625 594.32781,433.26367 594.63251,432.66602 C 594.9411,432.06446 595.09539,431.16407 595.0954,429.96484 C 595.09539,428.76172 594.9411,427.86133 594.63251,427.26367 C 594.32781,426.66212 593.86883,426.36134 593.25555,426.36133 M 593.25555,425.42383 C 594.23602,425.42384 594.98406,425.81251 595.49969,426.58984 C 596.01922,427.36329 596.27898,428.48829 596.27899,429.96484 C 596.27898,431.4375 596.01922,432.5625 595.49969,433.33984 C 594.98406,434.11328 594.23602,434.5 593.25555,434.5 C 592.27508,434.5 591.52508,434.11328 591.00555,433.33984 C 590.48993,432.5625 590.23212,431.4375 590.23212,429.96484 C 590.23212,428.48829 590.48993,427.36329 591.00555,426.58984 C 591.52508,425.81251 592.27508,425.42384 593.25555,425.42383"
style="font-size:12px;fill:#00ffff"
id="path6532"
inkscape:connector-curvature="0" />
<path
d="m 600.89618,426.36133 c -0.60938,10e-6 -1.06836,0.30079 -1.37695,0.90234 c -0.30469,0.59766 -0.45704,1.49805 -0.45704,2.70117 c 0,1.19923 0.15235,2.09962 0.45704,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,10e-6 1.72851,0.38868 2.24414,1.16601 c 0.51952,0.77345 0.77929,1.89845 0.7793,3.375 c -10e-6,1.47266 -0.25978,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 600.89618,426.36133 C 600.2868,426.36134 599.82782,426.66212 599.51923,427.26367 C 599.21454,427.86133 599.06219,428.76172 599.06219,429.96484 C 599.06219,431.16407 599.21454,432.06446 599.51923,432.66602 C 599.82782,433.26367 600.2868,433.5625 600.89618,433.5625 C 601.50946,433.5625 601.96844,433.26367 602.27313,432.66602 C 602.58172,432.06446 602.73602,431.16407 602.73602,429.96484 C 602.73602,428.76172 602.58172,427.86133 602.27313,427.26367 C 601.96844,426.66212 601.50946,426.36134 600.89618,426.36133 M 600.89618,425.42383 C 601.87664,425.42384 602.62469,425.81251 603.14032,426.58984 C 603.65984,427.36329 603.91961,428.48829 603.91962,429.96484 C 603.91961,431.4375 603.65984,432.5625 603.14032,433.33984 C 602.62469,434.11328 601.87664,434.5 600.89618,434.5 C 599.91571,434.5 599.16571,434.11328 598.64618,433.33984 C 598.13055,432.5625 597.87274,431.4375 597.87274,429.96484 C 597.87274,428.48829 598.13055,427.36329 598.64618,426.58984 C 599.16571,425.81251 599.91571,425.42384 600.89618,425.42383"
style="font-size:12px;fill:#00ffff"
id="path6534"
inkscape:connector-curvature="0" />
@ -1422,8 +1453,7 @@
inkscape:groupmode="layer"
id="layer95"
inkscape:label="close-panel"
style="display:none"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer96"
@ -1431,7 +1461,7 @@
style="display:inline">
<g
style="fill:none;display:inline"
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337425)"
id="close-bg">
<path
sodipodi:nodetypes="csssccssscc"
@ -1444,7 +1474,7 @@
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"
d="m 191.74365,291.50333 a 5.9813085,5.9813085 0 0 1 -5.98131,5.9813 a 5.9813085,5.9813085 0 0 1 -5.9813,-5.9813 a 5.9813085,5.9813085 0 0 1 5.9813,-5.98131 a 5.9813085,5.9813085 0 0 1 5.98131,5.98131 z"
sodipodi:ry="5.9813085"
sodipodi:rx="5.9813085"
sodipodi:cy="291.50333"
@ -1452,28 +1482,72 @@
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" />
<g
id="g6805"
transform="translate(28.957921,-2.190164)">
<path
sodipodi:nodetypes="cc"
style="fill:none;stroke:#ffffff;stroke-width:1.97643268;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 154.84665,291.64278 L 157.39504,294.19117"
id="path4869"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4871"
d="M 157.39504,289.09439 L 154.84665,291.64278"
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer101"
inkscape:label="open-bg"
style="display:inline">
<g
id="panel-open-icon"
transform="translate(0,0.43217191)">
<path
transform="matrix(0.99766101,0,0,0.99785341,-174.53132,-1.5409998)"
d="m 191.74365,291.50333 a 5.9813085,5.9813085 0 0 1 -5.98131,5.9813 a 5.9813085,5.9813085 0 0 1 -5.9813,-5.9813 a 5.9813085,5.9813085 0 0 1 5.9813,-5.98131 a 5.9813085,5.9813085 0 0 1 5.98131,5.98131 z"
sodipodi:ry="5.9813085"
sodipodi:rx="5.9813085"
sodipodi:cy="291.50333"
sodipodi:cx="185.76234"
id="path6810"
style="fill:url(#linearGradient6836);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;display:inline"
sodipodi:type="arc" />
<g
id="g6812"
transform="matrix(-0.99766101,0,0,0.99785341,166.55221,-1.6801298)"
style="fill:none;display:inline">
<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"
sodipodi:nodetypes="cc"
style="fill:none;stroke:#ffffff;stroke-width:1.97643268;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 154.84665,291.64278 L 157.39504,294.19117"
id="path6814"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path6816"
d="M 157.39504,289.09439 L 154.84665,291.64278"
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer97"
inkscape:label="close-panel-mousearea">
inkscape:label="close-panel-mousearea"
style="display:inline">
<rect
ry="0"
rx="0.096870422"
y="280.06769"
x="174.09482"
x="0.094818115"
height="18.931952"
width="21.372044"
id="close-panel-mousearea"
@ -1484,8 +1558,7 @@
inkscape:groupmode="layer"
id="layer83"
inkscape:label="rc-input-panel"
style="display:none"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer86"
@ -1493,7 +1566,7 @@
style="display:inline">
<g
id="g8289"
transform="translate(0,-2.0678301)">
transform="translate(-174,-1.6356582)">
<g
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)"
id="rc-input-bg">
@ -1517,7 +1590,7 @@
ry="0.80000001" />
<path
transform="matrix(0.25,0,0,0.25,114.18623,329.53888)"
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"
d="m 157,441 a 2,2 0 0 1 -2,2 a 2,2 0 0 1 -2,-2 a 2,2 0 0 1 2,-2 a 2,2 0 0 1 2,2 z"
sodipodi:ry="2"
sodipodi:rx="2"
sodipodi:cy="441"
@ -1533,7 +1606,7 @@
sodipodi:cy="441"
sodipodi:rx="2"
sodipodi:ry="2"
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"
d="m 157,441 a 2,2 0 0 1 -2,2 a 2,2 0 0 1 -2,-2 a 2,2 0 0 1 2,-2 a 2,2 0 0 1 2,2 z"
transform="matrix(0.625,0,0,0.625,55.875,163.98272)" />
<path
sodipodi:type="arc"
@ -1543,11 +1616,11 @@
sodipodi:cy="441"
sodipodi:rx="2"
sodipodi:ry="2"
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"
d="m 157,441 a 2,2 0 0 1 -2,2 a 2,2 0 0 1 -2,-2 a 2,2 0 0 1 2,-2 a 2,2 0 0 1 2,2 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 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"
d="m 157,441 a 2,2 0 0 1 -2,2 a 2,2 0 0 1 -2,-2 a 2,2 0 0 1 2,-2 a 2,2 0 0 1 2,2 z"
sodipodi:ry="2"
sodipodi:rx="2"
sodipodi:cy="441"
@ -1575,9 +1648,9 @@
</g>
<g
id="rc-input-labels"
transform="translate(0,-2)">
transform="translate(-174,-1.5678281)">
<path
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"
d="M 140,385 A 65,65 0 0 1 75,450 A 65,65 0 0 1 10,385 a 65,65 0 0 1 65,-65 a 65,65 0 0 1 65,65 z"
sodipodi:ry="65"
sodipodi:rx="65"
sodipodi:cy="385"
@ -1594,7 +1667,7 @@
sodipodi:cy="385"
sodipodi:rx="65"
sodipodi:ry="65"
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"
d="M 140,385 A 65,65 0 0 1 75,450 A 65,65 0 0 1 10,385 a 65,65 0 0 1 65,-65 a 65,65 0 0 1 65,65 z"
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)" />
<rect
y="367.09421"
@ -1656,7 +1729,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 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"
d="M 85,385 A 10,10 0 0 1 75,395 A 10,10 0 0 1 65,385 a 10,10 0 0 1 10,-10 a 10,10 0 0 1 10,10 z"
sodipodi:ry="10"
sodipodi:rx="10"
sodipodi:cy="385"
@ -1690,11 +1763,10 @@
inkscape:groupmode="layer"
id="layer93"
inkscape:label="rc-throttle"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<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 88.983279,445.91359 85.026593,445.87975 81.128389,445.54335 L 81.128389,385.22907 L 92.727829,385.22907 z"
d="M -81.272171,445.97552 C -85.016721,446.34576 -88.973407,446.31192 -92.871611,445.97552 L -92.871611,385.66124 L -81.272171,385.66124 z"
id="rc-throttle"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
@ -1703,15 +1775,14 @@
inkscape:groupmode="layer"
id="layer87"
inkscape:label="rc-stick"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="rc-stick"
style="fill:#e58956;fill-opacity:1"
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-75.769595)">
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337423)">
<path
transform="translate(5,0)"
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"
d="M 80,385 A 10,10 0 0 1 70,395 A 10,10 0 0 1 60,385 a 10,10 0 0 1 10,-10 a 10,10 0 0 1 10,10 z"
sodipodi:ry="10"
sodipodi:rx="10"
sodipodi:cy="385"
@ -1734,15 +1805,14 @@
inkscape:groupmode="layer"
id="layer90"
inkscape:label="rc-input-panel-mousearea"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<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.542856"
height="39.22123"
x="173.924"
y="419.00034"
x="-0.075996399"
y="419.4325"
rx="0.09687043"
ry="0.096870422" />
</g>
@ -1751,17 +1821,15 @@
inkscape:groupmode="layer"
id="layer84"
inkscape:label="battery-panel"
style="display:none"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer85"
inkscape:label="battery-bg"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="battery-bg"
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337425)"
style="display:inline">
<path
inkscape:connector-curvature="0"
@ -1803,11 +1871,10 @@
inkscape:groupmode="layer"
id="layer88"
inkscape:label="battery-labels"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="battery-labels"
transform="translate(0,-2)">
transform="translate(-174,-1.5678281)">
<g
transform="matrix(2.4789293,0,0,2.5720165,-1419.3751,268.75514)"
id="battery-milliamp-label"
@ -1887,14 +1954,14 @@
inkscape:groupmode="layer"
id="layer89"
inkscape:label="battery-panel-mousearea"
sodipodi:insensitive="true">
style="display:inline">
<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.542936"
height="40.000702"
x="173.92392"
y="378.99966"
x="-0.076080322"
y="379.43182"
rx="0.096870422"
ry="0" />
</g>
@ -1902,11 +1969,10 @@
inkscape:groupmode="layer"
id="layer91"
inkscape:label="battery-text"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="battery-milliamp-text"
transform="matrix(0.95,0,0,0.95,-1.4,17.75)">
transform="matrix(0.95,0,0,0.95,-175.4,18.182172)">
<rect
y="375"
x="12"
@ -1946,7 +2012,7 @@
</g>
<g
id="battery-amp-text"
transform="matrix(0.95,0,0,0.95,-1.4,13.75)">
transform="matrix(0.95,0,0,0.95,-175.4,14.182172)">
<rect
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
id="warning-high-current"
@ -1986,7 +2052,7 @@
</g>
<g
id="battery-volt-text"
transform="matrix(0.95,0,0,0.95,-1.4,9.75)">
transform="matrix(0.95,0,0,0.95,-175.4,10.182172)">
<rect
y="295"
x="12"
@ -2025,7 +2091,7 @@
</g>
</g>
<g
transform="matrix(0.95,0,0,0.95,-1.4,59.75)"
transform="matrix(0.95,0,0,0.95,-175.4,60.182172)"
id="battery-estimated-flight-time">
<rect
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline"
@ -2070,17 +2136,15 @@
inkscape:groupmode="layer"
id="layer59"
inkscape:label="system-panel"
style="display:none"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer76"
inkscape:label="system-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)"
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337425)"
id="system-bg">
<path
sodipodi:nodetypes="ssssccsssscsss"
@ -2359,11 +2423,10 @@
inkscape:groupmode="layer"
id="layer77"
inkscape:label="system-text"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="system-frame-type"
transform="matrix(1.0095471,0,0,1.0095471,31.242303,-4.7783031)">
transform="matrix(1.0095471,0,0,1.0095471,-142.7577,-4.3461312)">
<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"
@ -2392,7 +2455,7 @@
</g>
<g
id="system-cpu-load-temp"
transform="matrix(1.049406,0,0,1.049406,11.986624,-17.045522)">
transform="matrix(1.049406,0,0,1.049406,-162.01338,-16.61335)">
<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"
@ -2436,7 +2499,7 @@
</g>
<g
id="system-mem-free"
transform="matrix(1.0830555,0,0,1.0830555,30.37392,-28.642216)">
transform="matrix(1.0830555,0,0,1.0830555,-143.62608,-28.210044)">
<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"
@ -2460,7 +2523,7 @@
</g>
<g
id="system-attitude-estimation-algo"
transform="matrix(1.0257274,0,0,1.0257274,0.13365182,-65.562105)">
transform="matrix(1.0257274,0,0,1.0257274,-173.86635,-65.129933)">
<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"
@ -2524,7 +2587,7 @@
</g>
<g
id="system-mag-used"
transform="matrix(1.0687763,0,0,1.0687763,20.046913,-82.649824)">
transform="matrix(1.0687763,0,0,1.0687763,-153.95309,-82.217652)">
<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"
@ -2563,7 +2626,7 @@
</g>
<g
id="system-gps-type"
transform="matrix(1.0830555,0,0,1.0830555,6.8095635,-86.863044)">
transform="matrix(1.0830555,0,0,1.0830555,-167.19044,-86.430872)">
<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"
@ -2619,15 +2682,14 @@
<g
inkscape:groupmode="layer"
id="layer94"
inkscape:label="system-panel-mousearea"
sodipodi:insensitive="true">
inkscape:label="system-panel-mousearea">
<rect
ry="0"
rx="0.096870422"
rx="0.098925956"
y="299.00034"
x="173.92392"
x="-0.69793624"
height="39.99931"
width="21.542936"
width="22.000065"
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>
@ -2644,7 +2706,7 @@
style="display:inline">
<g
style="display:inline"
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337425)"
id="oplm-bg">
<path
sodipodi:nodetypes="ssssccsssscsss"
@ -2672,7 +2734,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 211.19615,346.92456"
d="m 206.05385,346.92456 a 4,4.0625 0 0 1 -1.18762,-4.50152 A 4,4.0625 0 0 1 208.625,339.75 a 4,4.0625 0 0 1 3.75877,2.67304 a 4,4.0625 0 0 1 -1.18762,4.50152"
sodipodi:ry="4.0625"
sodipodi:rx="4"
sodipodi:cy="343.8125"
@ -2688,7 +2750,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 210.625,347.33073"
d="m 206.625,347.33073 a 4,4.0625 0 0 1 -1.8637,-4.56968 A 4,4.0625 0 0 1 208.625,339.75 a 4,4.0625 0 0 1 3.8637,3.01105 a 4,4.0625 0 0 1 -1.8637,4.56968"
transform="matrix(1.4009295,0,0,1.4098503,-132.61235,-125.01936)"
sodipodi:start="2.0943951"
sodipodi:end="7.3303829"
@ -2700,8 +2762,8 @@
id="smeter-bg"
width="155.25"
height="67.5"
x="7.0744791"
y="295.48413"
x="-166.92552"
y="295.91629"
rx="3.9999998"
ry="3.9999998" />
<text
@ -2717,7 +2779,7 @@
y="299.875" /></text>
<g
id="smeter-scale"
transform="matrix(1.35,0,0,1.35,-60.425521,-102.76587)">
transform="matrix(1.35,0,0,1.35,-234.42552,-102.3337)">
<path
sodipodi:open="true"
sodipodi:end="4.5727626"
@ -2733,17 +2795,17 @@
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 20.692003,310.06444 A 52.5,52.5 0 0 1 98.870565,315.17777"
d="m 21.057005,309.70902 a 52.5,52.5 0 0 1 40.123626,-14.57984 a 52.5,52.5 0 0 1 37.689934,20.04859"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
sodipodi:cx="57.5"
id="path5335"
style="fill:none;stroke:#51c300;stroke-width:3.69211197;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#39ff00;stroke-width:3.69211197;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc"
sodipodi:open="true"
sodipodi:start="3.9354434"
sodipodi:end="5.6199602" />
sodipodi:start="3.9451474"
sodipodi:end="5.6199602"
sodipodi:open="true" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
@ -2781,16 +2843,16 @@
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:end="3.7359881"
sodipodi:start="3.6302848"
sodipodi:end="3.9413912"
sodipodi:start="3.7363637"
sodipodi:type="arc"
style="fill:none;stroke:#dd0e00;stroke-width:3.46135497;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#ff9d2f;stroke-width:3.46135497;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path5337"
sodipodi:cx="57.5"
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 14.004422,318.09958"
d="m 14.015468,318.08325 a 52.5,52.5 0 0 1 6.899844,-8.23708"
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)"
sodipodi:open="true" />
<path
@ -2829,25 +2891,25 @@
id="path4805"
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
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)"
d="m 11.14525,322.85275 a 52.5,52.5 0 0 1 2.868764,-4.76736"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
sodipodi:cx="57.5"
id="path6380"
style="fill:none;stroke:#ff272f;stroke-width:3.46135497;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc"
sodipodi:start="3.6302848"
sodipodi:end="3.7363143"
sodipodi:open="true" />
<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 77.084446,325.77488"
id="path4807"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
transform="matrix(0.95695029,0.08372205,-0.08414287,0.96175464,81.727104,24.47046)"
d="M 14.000253,318.10575 A 52.5,52.5 0 0 1 20.876254,309.88416"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
sodipodi:cx="57.5"
id="path10802"
style="fill:none;stroke:#dd8400;stroke-width:3.46135497;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc"
sodipodi:start="3.7358463"
sodipodi:end="3.9403534"
sodipodi:open="true" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
@ -2887,7 +2949,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 98.870565,315.17777"
d="m 11.14525,322.85275 a 52.5,52.5 0 0 1 41.779073,-27.65297 a 52.5,52.5 0 0 1 45.946242,19.97799"
transform="matrix(0.9168972,0.08021811,-0.08062108,0.92150318,82.802213,38.659321)"
sodipodi:start="3.6302848"
sodipodi:end="5.6199602"
@ -3069,7 +3131,7 @@
<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 98.870565,315.17777"
d="m 50.19341,295.51093 a 52.5,52.5 0 0 1 48.677155,19.66684"
sodipodi:ry="52.5"
sodipodi:rx="52.5"
sodipodi:cy="347.5"
@ -3079,28 +3141,56 @@
sodipodi:type="arc"
sodipodi:start="4.5727626"
sodipodi:end="5.6199602" />
<text
xml:space="preserve"
style="font-size:8.88888931px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
x="80.01519"
y="336.51471"
id="text10257"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan10259"
x="80.01519"
y="336.51471">LINK METER</tspan></text>
<g
style="font-size:7.40740728px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial Bold"
id="text5574">
<path
d="M 82.406522,337.05356 L 82.406522,331.79459 L 83.477124,331.79459 L 83.477124,336.16018 L 86.139161,336.16018 L 86.139161,337.05356 L 82.406522,337.05356"
id="path10262"
inkscape:connector-curvature="0" />
<path
d="M 86.873391,337.05356 L 86.873391,331.75119 L 87.943993,331.75119 L 87.943993,337.05356 L 86.873391,337.05356"
id="path10264"
inkscape:connector-curvature="0" />
<path
d="M 88.971192,337.05356 L 88.971192,331.75119 L 90.012859,331.75119 L 92.182997,335.29213 L 92.182997,331.75119 L 93.177644,331.75119 L 93.177644,337.05356 L 92.103426,337.05356 L 89.965839,333.5958 L 89.965839,337.05356 L 88.971192,337.05356"
id="path10266"
inkscape:connector-curvature="0" />
<path
d="M 94.327819,337.05356 L 94.327819,331.75119 L 95.39842,331.75119 L 95.39842,334.10579 L 97.561325,331.75119 L 99.000851,331.75119 L 97.004323,333.81643 L 99.109358,337.05356 L 97.724086,337.05356 L 96.266476,334.56513 L 95.39842,335.45127 L 95.39842,337.05356 L 94.327819,337.05356"
id="path10268"
inkscape:connector-curvature="0" />
<path
d="M 101.70629,337.05356 L 101.70629,331.75119 L 103.30858,331.75119 L 104.27067,335.36808 L 105.22191,331.75119 L 106.82782,331.75119 L 106.82782,337.05356 L 105.83317,337.05356 L 105.83317,332.87966 L 104.78065,337.05356 L 103.74984,337.05356 L 102.70094,332.87966 L 102.70094,337.05356 L 101.70629,337.05356"
id="path10270"
inkscape:connector-curvature="0" />
<path
d="M 107.89842,337.05356 L 107.89842,331.75119 L 111.82999,331.75119 L 111.82999,332.64818 L 108.96902,332.64818 L 108.96902,333.82367 L 111.63106,333.82367 L 111.63106,334.71704 L 108.96902,334.71704 L 108.96902,336.16018 L 111.93126,336.16018 L 111.93126,337.05356 L 107.89842,337.05356"
id="path10272"
inkscape:connector-curvature="0" />
<path
d="M 114.03991,337.05356 L 114.03991,332.64818 L 112.46656,332.64818 L 112.46656,331.75119 L 116.68025,331.75119 L 116.68025,332.64818 L 115.11051,332.64818 L 115.11051,337.05356 L 114.03991,337.05356"
id="path10274"
inkscape:connector-curvature="0" />
<path
d="M 117.36023,337.05356 L 117.36023,331.75119 L 121.29179,331.75119 L 121.29179,332.64818 L 118.43083,332.64818 L 118.43083,333.82367 L 121.09286,333.82367 L 121.09286,334.71704 L 118.43083,334.71704 L 118.43083,336.16018 L 121.39307,336.16018 L 121.39307,337.05356 L 117.36023,337.05356"
id="path10276"
inkscape:connector-curvature="0" />
<path
d="M 122.31176,337.05356 L 122.31176,331.75119 L 124.56508,331.75119 C 125.13173,331.75119 125.54285,331.79942 125.79845,331.89586 C 126.05645,331.98991 126.26261,332.15869 126.41694,332.40223 C 126.57125,332.64577 126.64841,332.92427 126.64842,333.23773 C 126.64841,333.63559 126.53147,333.96473 126.29758,334.22514 C 126.06368,334.48315 125.71405,334.64591 125.24868,334.71343 C 125.48016,334.84846 125.67065,334.99675 125.82015,335.1583 C 125.97205,335.31986 126.17581,335.6068 126.4314,336.01913 L 127.07883,337.05356 L 125.79845,337.05356 L 125.02443,335.89977 C 124.74954,335.48744 124.56146,335.22823 124.46019,335.12213 C 124.35892,335.01363 124.25162,334.94009 124.13829,334.9015 C 124.02496,334.86051 123.84532,334.84002 123.59937,334.84002 L 123.38236,334.84002 L 123.38236,337.05356 L 122.31176,337.05356 M 123.38236,333.99366 L 124.17446,333.99366 C 124.68806,333.99367 125.00875,333.97196 125.13655,333.92856 C 125.26435,333.88516 125.36442,333.81041 125.43676,333.70431 C 125.50909,333.59822 125.54526,333.4656 125.54526,333.30645 C 125.54526,333.12802 125.49703,332.98455 125.40059,332.87604 C 125.30655,332.76513 125.17272,332.6952 124.99911,332.66626 C 124.9123,332.65421 124.65189,332.64818 124.21786,332.64818 L 123.38236,332.64818 L 123.38236,333.99366"
id="path10278"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer65"
inkscape:label="oplm-smeter-needle"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="smeter-needle"
transform="matrix(0.67499999,1.1691343,-1.1691343,0.67499999,439.78535,16.43329)">
transform="matrix(0.67499999,1.1691343,-1.1691343,0.67499999,265.78535,16.865462)">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
@ -3125,11 +3215,10 @@
inkscape:groupmode="layer"
id="layer66"
inkscape:label="oplm-smeter-mask"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
id="smeter-mask"
transform="matrix(1.35,0,0,1.35,-60.425521,-102.76587)">
transform="matrix(1.35,0,0,1.35,-234.42552,-102.3337)">
<path
style="fill:#2c2929;fill-opacity:1;fill-rule:evenodd;stroke:none"
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"
@ -3151,19 +3240,19 @@
inkscape:groupmode="layer"
id="layer55"
inkscape:label="oplm-labels"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<rect
ry="4"
rx="3.9999998"
y="368.89081"
x="7.0744791"
y="369.32297"
x="-166.92552"
height="19"
width="155.25"
id="oplm-button-bg"
style="fill:#aaaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
<g
id="oplm-button-0">
id="oplm-button-0"
transform="translate(-174,0.43217191)">
<rect
ry="3"
rx="3"
@ -3186,7 +3275,8 @@
sodipodi:role="line">1</tspan></text>
</g>
<g
id="oplm-button-1">
id="oplm-button-1"
transform="translate(-174,0.43217191)">
<rect
style="fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect5649"
@ -3209,7 +3299,8 @@
y="381.98456">2</tspan></text>
</g>
<g
id="oplm-button-2">
id="oplm-button-2"
transform="translate(-174,0.43217191)">
<rect
style="fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
id="rect5653"
@ -3232,7 +3323,8 @@
id="tspan5729">3</tspan></text>
</g>
<g
id="oplm-button-3">
id="oplm-button-3"
transform="translate(-174,0.43217191)">
<rect
ry="3"
rx="3"
@ -3256,7 +3348,8 @@
</g>
<g
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">
id="oplm-id-label"
transform="translate(-174,0.43217191)">
<path
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"
@ -3291,11 +3384,11 @@
inkscape:groupmode="layer"
id="layer63"
inkscape:label="oplm-text"
sodipodi:insensitive="true">
style="display:inline">
<g
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;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
id="oplm-id-text"
transform="translate(6,0)">
transform="translate(-168,0.43217191)">
<path
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"
@ -3326,14 +3419,14 @@
inkscape:groupmode="layer"
id="layer64"
inkscape:label="oplm-panel-mousearea"
sodipodi:insensitive="true">
style="display:inline">
<rect
ry="0"
rx="0.096870422"
y="339.00034"
x="173.92392"
height="39.99931"
width="21.542936"
rx="0.098925956"
y="338.99963"
x="-0.69793624"
height="40"
width="22.000065"
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>
@ -3343,8 +3436,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"
@ -3361,57 +3453,62 @@
id="rect4615"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<g
transform="matrix(0.89658208,0,0,1.0166066,0.62788103,-5.1809092)"
style="display:inline"
id="g8787">
<rect
style="fill:#323232;fill-opacity:1;stroke:#e1e1e1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect8777"
width="9.2307692"
height="15.384616"
x="-9.2110806"
y="30.104883"
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 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" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#e0dfe1;stroke-width:2.55313134;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path8781"
sodipodi:cx="77"
sodipodi:cy="-18"
sodipodi:rx="9"
sodipodi:ry="9"
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"
sodipodi:open="true" />
<path
sodipodi:open="true"
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 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"
sodipodi:cx="77"
id="path8783"
style="fill:none;stroke:#e0dfe1;stroke-width:1.59286559;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path8785"
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>
<g
transform="matrix(1.044791,0,0,1.0166066,0.47229558,-5.3725203)"
style="display:inline"
id="gps-icon">
<rect
style="fill:#323232;fill-opacity:1;stroke:#e1e1e1;stroke-width:1.57115781;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect8777"
width="9.2307692"
height="15.384616"
x="-9.2110806"
y="30.104883"
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 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" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#e0dfe1;stroke-width:2.55313134;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path8781"
sodipodi:cx="77"
sodipodi:cy="-18"
sodipodi:rx="9"
sodipodi:ry="9"
d="m 86,-18 a 9,9 0 0 1 -4.5,7.794229 a 9,9 0 0 1 -9,0"
transform="matrix(0.59409,-0.16048456,0.16048456,0.59409,-14.282595,58.387875)"
sodipodi:start="0"
sodipodi:end="2.0943951"
sodipodi:open="true" />
<path
sodipodi:open="true"
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 a 9,9 0 0 1 -4.5,7.794229 a 9,9 0 0 1 -9,0"
sodipodi:ry="9"
sodipodi:rx="9"
sodipodi:cy="-18"
sodipodi:cx="77"
id="path8783"
style="fill:none;stroke:#e0dfe1;stroke-width:1.59286559;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path8785"
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" />
<path
style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.07728409999999997;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -1.2579783,3.0140829 L 47.664738,3.0140829 L 47.664738,51.936799 L -1.2579783,51.936799 z"
id="rect4315"
inkscape:connector-curvature="0" />
</g>
</g>
<g
@ -4155,14 +4252,12 @@
inkscape:groupmode="layer"
id="layer57"
inkscape:label="gps"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer53"
inkscape:label="gps-sats"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<path
sodipodi:nodetypes="cc"
inkscape:label="#path10180"
@ -4246,12 +4341,11 @@
id="layer52"
inkscape:label="gps-mode-text"
style="display:inline"
transform="translate(0,-0.972157)"
sodipodi:insensitive="true">
transform="translate(0,-0.972157)">
<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="gps-mode-text"
transform="matrix(1.4543578,0,0,1.4543578,-4.981688,1.3723646)">
transform="matrix(1.4543578,0,0,1.4543578,-1.981688,-0.6276354)">
<path
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"
@ -4291,8 +4385,7 @@
inkscape:groupmode="layer"
id="layer23"
inkscape:label="info-fg"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<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 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"
@ -4442,7 +4535,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 396.16439,86.284059 398.73566,88.855997 401.17423,91.55105"
d="M 238.84479,91.530033 A 109.47147,109.47147 0 0 1 320.01417,55.528527 A 109.47147,109.47147 0 0 1 401.17423,91.55105"
sodipodi:ry="109.47147"
sodipodi:rx="109.47147"
sodipodi:cy="165"
@ -4616,7 +4709,7 @@
transform="translate(0,78)">
<path
transform="matrix(0.84971585,0,0,0.84971585,73.153736,57.627199)"
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"
d="m 381.49999,370 a 91.010612,91.010612 0 0 1 -91.01061,91.01061 A 91.010612,91.010612 0 0 1 199.47877,370 a 91.010612,91.010612 0 0 1 91.01061,-91.01061 A 91.010612,91.010612 0 0 1 381.49999,370 Z"
sodipodi:ry="91.010612"
sodipodi:rx="91.010612"
sodipodi:cy="370"
@ -6414,7 +6507,7 @@
sodipodi:cy="205"
sodipodi:rx="46.352551"
sodipodi:ry="75"
d="M 582.79539,230.65151 C 579.06819,214.08219 579.06819,195.91781 582.79539,179.34849"
d="m 582.79539,230.65151 a 46.352551,75 0 0 1 0,-51.30302"
transform="matrix(6.4484046,0,0,3.9853333,-3146.0425,-599.99333)"
sodipodi:start="2.7925268"
sodipodi:end="3.4906585"
@ -6616,7 +6709,7 @@
sodipodi:end="3.4873773"
sodipodi:start="2.795808"
transform="matrix(6.4484046,0,0,3.9853333,-3146.0425,-599.99333)"
d="M 582.74361,230.42012 C 579.08545,213.99021 579.08545,196.00979 582.74361,179.57988"
d="m 582.74361,230.42012 a 46.352551,75 0 0 1 0,-50.84024"
sodipodi:ry="75"
sodipodi:rx="46.352551"
sodipodi:cy="205"
@ -6888,8 +6981,7 @@
inkscape:groupmode="layer"
id="layer67"
inkscape:label="warnings"
style="display:inline"
sodipodi:insensitive="true">
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer68"
@ -6897,12 +6989,13 @@
style="display:inline"
sodipodi:insensitive="true">
<g
id="warnings-bg">
id="warnings-bg"
transform="translate(0,0.00296)">
<path
sodipodi:nodetypes="csssscc"
inkscape:connector-curvature="0"
id="path4655"
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"
d="M 640.50296,462.03211 L 640.50296,478.32394 C 640.50296,479.52784 639.61096,480.49704 638.50296,480.49704 L 1.5029624,480.49704 C 0.39496235,480.49704 -0.49703765,479.52784 -0.49703765,478.32394 L -0.49703762,462.03211 C -0.49703762,460.82821 640.50296,462.03211 640.50296,462.03211 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0;stroke-miterlimit:4;display:inline" />
<path
sodipodi:nodetypes="cc"
@ -7354,7 +7447,7 @@
inkscape:groupmode="layer"
id="layer75"
inkscape:label="warning-gps"
style="display:inline"
style="display:none"
sodipodi:insensitive="true">
<g
style="display:inline"

Before

Width:  |  Height:  |  Size: 750 KiB

After

Width:  |  Height:  |  Size: 761 KiB