1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-01 09:24:10 +01:00

Merge branch 'rel-15.05' of ssh://git.openpilot.org/OpenPilot into parched/OP-1853_Ground_build_tidy

This commit is contained in:
abeck70 2015-05-19 21:53:20 +10:00
commit a00ce7a551
33 changed files with 2080 additions and 1784 deletions

View File

@ -1,3 +1,67 @@
Release Notes - OpenPilot - Version RELEASE-15.05
Fully autonomous flight is now possible with autotakeoff and landing as flight modes available to path plans.
An all new implementation of altitude vario provides improved altitude maintenance and smoother flight.
A new RateTrainer mode for beginners and aerial photography make it easier to learn this mode my limiting the pitch and roll extents.
4CH transmitters for multirotor and 2CH for ground is now supported.
It is now easier to takeoff with an improved axislock on yaw implementation.
Full speed flight just got faster with new motor constraints that maintain your ability to enact roll without requiring a upper throttle limit.
Setup on GPS just got easier. See the wiki for details.
New control protocols and support for due telemtry and OSD programing have been added.
The full list of bugfixes in this release is accessible here:
** Bug
* [OP-1691] - PIOS_DELAY_WaitmS() in RFM22B causes jitter
* [OP-1756] - Add option to Vehicle Setup Wizard to calibrate all motor outputs at the same time.
* [OP-1778] - resolve win_sdk_install.sh issue with https://
* [OP-1793] - Fixes for Sensor module
* [OP-1794] - AxisLock windup not cleared with low throttle while armed
* [OP-1834] - Piro Comp - adverse effect in Atti/Ratti Modes
* [OP-1841] - Serial telemetry is not reliable
* [OP-1855] - Limit parsing error in logs when starting GCS
* [OP-1858] - PathPlanner AutoTakeoff fixes
* [OP-1867] - PathPlanner AutoLand simplification
* [OP-1869] - Allow Analog Airspeed scale
* [OP-1872] - Vehicle Wiz Tricopter tail servo settings don't save
** Improvement
* [OP-1289] - Need Revo to send two telemetry streams for OSD and GCS
* [OP-1734] - Clarify the need of reversing servo in FW vehicle wizard
* [OP-1736] - Make package label something more meaningful than the date.
* [OP-1739] - Add GNSS (GPS/GLONASS) selection to UBX autoconf
* [OP-1750] - Revo state estimation CPU optimization
* [OP-1776] - Performance optimizations for UAVTalk telemetry
* [OP-1783] - Fall back PathPlanner flight mode to PH with config warning if no plan
* [OP-1791] - Change the description of the stabilization modes
* [OP-1796] - Upgrade GCS to qt 5.4.1
* [OP-1797] - Improve GCS workspace layout management reactivity
* [OP-1798] - GCS ophid plugin is too verbose
* [OP-1802] - Throttle filterstationary fake pos/vel data rate
* [OP-1808] - Make the flight mode switch step in transmitter setup wizard to be optional
* [OP-1814] - Reset Button for mAH used
* [OP-1828] - Changes ADC module to support other pins as optional analog inputs
* [OP-1835] - Add motor constraints in place of overhead throttle buffer for enhanced stability and power.
* [OP-1837] - Add support for Multiplex SRXL protocol
* [OP-1840] - GPS serlal port needed features
* [OP-1844] - Create a vagrant environment that contains all the bits for Android development, including Android.
* [OP-1848] - Rewrite AltVario/Hold in C++ for functional improvements
* [OP-1852] - Include version number in window title bar.
* [OP-1874] - Various improvements to led notifications
** New Feature
* [OP-1696] - PathFollower C++ Rewrite: Autonomous Landing, Velocity Roam, RTBL, GroundPathFollower
* [OP-1760] - AutoTakeoff
* [OP-1769] - Support Ground Vehicles with 2CH receiver and reversible motor
* [OP-1781] - Ground Input Channel Configuration
* [OP-1803] - Create UAVTalk objects for receiver signal quality
* [OP-1818] - Update OP toolchain for compiling osgearth
* [OP-1832] - Need method to get default UAV Object settings in Java UAVObjects
* [OP-1849] - Support programming/update of minimosd using USB VCP port
* [OP-1863] - RateTrainer mode - add maxpitch for beginners and aerial photography
--- RELEASE-15.02.02 ---
This release fixes a bug that prevents revo onboard mag to work correctly.

View File

@ -67,7 +67,7 @@ void plan_setup_AutoTakeoff();
/**
* @brief setup pathplanner/pathfollower for braking
*/
void plan_setup_assistedcontrol(uint8_t timeout_occurred);
void plan_setup_assistedcontrol();
#define PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_NORTH 0
#define PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_EAST 1

View File

@ -615,7 +615,7 @@ void plan_run_VelocityRoam()
// avoid brake then hold sequence to continue descent.
plan_setup_land_from_velocityroam();
} else {
plan_setup_assistedcontrol(false);
plan_setup_assistedcontrol();
}
}
// otherwise nothing to do in braking/hold modes
@ -824,7 +824,7 @@ void plan_run_AutoCruise()
#define ASSISTEDCONTROL_TIMETOSTOP_MAXIMUM 9.0f // seconds
#define ASSISTEDCONTROL_DELAY_TO_BRAKE 1.0f // seconds
#define ASSISTEDCONTROL_TIMEOUT_MULTIPLIER 2.0f // actual deceleration rate can be 50% of desired...timeouts need to cater for this
void plan_setup_assistedcontrol(uint8_t timeout_occurred)
void plan_setup_assistedcontrol()
{
PositionStateData positionState;
@ -832,75 +832,55 @@ void plan_setup_assistedcontrol(uint8_t timeout_occurred)
PathDesiredData pathDesired;
FlightStatusAssistedControlStateOptions assistedControlFlightMode;
FlightStatusAssistedControlStateGet(&assistedControlFlightMode);
if (timeout_occurred) {
FlightStatusFlightModeOptions flightMode;
FlightStatusFlightModeGet(&flightMode);
if (flightMode == FLIGHTSTATUS_FLIGHTMODE_LAND) {
plan_setup_land_helper(&pathDesired);
} else {
pathDesired.End.North = positionState.North;
pathDesired.End.East = positionState.East;
pathDesired.End.Down = positionState.Down;
pathDesired.Start.North = positionState.North;
pathDesired.Start.East = positionState.East;
pathDesired.Start.Down = positionState.Down;
pathDesired.StartingVelocity = 0.0f;
pathDesired.EndingVelocity = 0.0f;
pathDesired.Mode = PATHDESIRED_MODE_GOTOENDPOINT;
}
assistedControlFlightMode = FLIGHTSTATUS_ASSISTEDCONTROLSTATE_HOLD;
} else {
VelocityStateData velocityState;
VelocityStateGet(&velocityState);
float brakeRate;
VtolPathFollowerSettingsBrakeRateGet(&brakeRate);
if (brakeRate < ASSISTEDCONTROL_BRAKERATE_MINIMUM) {
brakeRate = ASSISTEDCONTROL_BRAKERATE_MINIMUM; // set a minimum to avoid a divide by zero potential below
}
// Calculate the velocity
float velocity = velocityState.North * velocityState.North + velocityState.East * velocityState.East + velocityState.Down * velocityState.Down;
velocity = sqrtf(velocity);
// Calculate the desired time to zero velocity.
float time_to_stopped = ASSISTEDCONTROL_DELAY_TO_BRAKE; // we allow at least 0.5 seconds to rotate to a brake angle.
time_to_stopped += velocity / brakeRate;
// Sanity check the brake rate by ensuring that the time to stop is within a range.
if (time_to_stopped < ASSISTEDCONTROL_TIMETOSTOP_MINIMUM) {
time_to_stopped = ASSISTEDCONTROL_TIMETOSTOP_MINIMUM;
} else if (time_to_stopped > ASSISTEDCONTROL_TIMETOSTOP_MAXIMUM) {
time_to_stopped = ASSISTEDCONTROL_TIMETOSTOP_MAXIMUM;
}
// calculate the distance we will travel
float north_delta = velocityState.North * ASSISTEDCONTROL_DELAY_TO_BRAKE; // we allow at least 0.5s to rotate to brake angle
north_delta += (time_to_stopped - ASSISTEDCONTROL_DELAY_TO_BRAKE) * 0.5f * velocityState.North; // area under the linear deceleration plot
float east_delta = velocityState.East * ASSISTEDCONTROL_DELAY_TO_BRAKE; // we allow at least 0.5s to rotate to brake angle
east_delta += (time_to_stopped - ASSISTEDCONTROL_DELAY_TO_BRAKE) * 0.5f * velocityState.East; // area under the linear deceleration plot
float down_delta = velocityState.Down * ASSISTEDCONTROL_DELAY_TO_BRAKE;
down_delta += (time_to_stopped - ASSISTEDCONTROL_DELAY_TO_BRAKE) * 0.5f * velocityState.Down; // area under the linear deceleration plot
float net_delta = east_delta * east_delta + north_delta * north_delta + down_delta * down_delta;
net_delta = sqrtf(net_delta);
pathDesired.Start.North = positionState.North;
pathDesired.Start.East = positionState.East;
pathDesired.Start.Down = positionState.Down;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_NORTH] = velocityState.North;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_EAST] = velocityState.East;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_DOWN] = velocityState.Down;
pathDesired.End.North = positionState.North + north_delta;
pathDesired.End.East = positionState.East + east_delta;
pathDesired.End.Down = positionState.Down + down_delta;
pathDesired.StartingVelocity = velocity;
pathDesired.EndingVelocity = 0.0f;
pathDesired.Mode = PATHDESIRED_MODE_BRAKE;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_TIMEOUT] = time_to_stopped * ASSISTEDCONTROL_TIMEOUT_MULTIPLIER;
assistedControlFlightMode = FLIGHTSTATUS_ASSISTEDCONTROLSTATE_BRAKE;
VelocityStateData velocityState;
VelocityStateGet(&velocityState);
float brakeRate;
VtolPathFollowerSettingsBrakeRateGet(&brakeRate);
if (brakeRate < ASSISTEDCONTROL_BRAKERATE_MINIMUM) {
brakeRate = ASSISTEDCONTROL_BRAKERATE_MINIMUM; // set a minimum to avoid a divide by zero potential below
}
// Calculate the velocity
float velocity = velocityState.North * velocityState.North + velocityState.East * velocityState.East + velocityState.Down * velocityState.Down;
velocity = sqrtf(velocity);
// Calculate the desired time to zero velocity.
float time_to_stopped = ASSISTEDCONTROL_DELAY_TO_BRAKE; // we allow at least 0.5 seconds to rotate to a brake angle.
time_to_stopped += velocity / brakeRate;
// Sanity check the brake rate by ensuring that the time to stop is within a range.
if (time_to_stopped < ASSISTEDCONTROL_TIMETOSTOP_MINIMUM) {
time_to_stopped = ASSISTEDCONTROL_TIMETOSTOP_MINIMUM;
} else if (time_to_stopped > ASSISTEDCONTROL_TIMETOSTOP_MAXIMUM) {
time_to_stopped = ASSISTEDCONTROL_TIMETOSTOP_MAXIMUM;
}
// calculate the distance we will travel
float north_delta = velocityState.North * ASSISTEDCONTROL_DELAY_TO_BRAKE; // we allow at least 0.5s to rotate to brake angle
north_delta += (time_to_stopped - ASSISTEDCONTROL_DELAY_TO_BRAKE) * 0.5f * velocityState.North; // area under the linear deceleration plot
float east_delta = velocityState.East * ASSISTEDCONTROL_DELAY_TO_BRAKE; // we allow at least 0.5s to rotate to brake angle
east_delta += (time_to_stopped - ASSISTEDCONTROL_DELAY_TO_BRAKE) * 0.5f * velocityState.East; // area under the linear deceleration plot
float down_delta = velocityState.Down * ASSISTEDCONTROL_DELAY_TO_BRAKE;
down_delta += (time_to_stopped - ASSISTEDCONTROL_DELAY_TO_BRAKE) * 0.5f * velocityState.Down; // area under the linear deceleration plot
float net_delta = east_delta * east_delta + north_delta * north_delta + down_delta * down_delta;
net_delta = sqrtf(net_delta);
pathDesired.Start.North = positionState.North;
pathDesired.Start.East = positionState.East;
pathDesired.Start.Down = positionState.Down;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_NORTH] = velocityState.North;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_EAST] = velocityState.East;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_STARTVELOCITYVECTOR_DOWN] = velocityState.Down;
pathDesired.End.North = positionState.North + north_delta;
pathDesired.End.East = positionState.East + east_delta;
pathDesired.End.Down = positionState.Down + down_delta;
pathDesired.StartingVelocity = velocity;
pathDesired.EndingVelocity = 0.0f;
pathDesired.Mode = PATHDESIRED_MODE_BRAKE;
pathDesired.ModeParameters[PATHDESIRED_MODEPARAMETER_BRAKE_TIMEOUT] = time_to_stopped * ASSISTEDCONTROL_TIMEOUT_MULTIPLIER;
assistedControlFlightMode = FLIGHTSTATUS_ASSISTEDCONTROLSTATE_BRAKE;
FlightStatusAssistedControlStateSet(&assistedControlFlightMode);
PathDesiredSet(&pathDesired);
}

View File

@ -59,8 +59,8 @@
#define CBTASK_PRIORITY CALLBACK_TASK_FLIGHTCONTROL
#define ASSISTEDCONTROL_NEUTRALTHROTTLERANGE_FACTOR 0.2f
#define ASSISTEDCONTROL_BRAKETHRUST_DEADBAND_FACTOR_LO 0.92f
#define ASSISTEDCONTROL_BRAKETHRUST_DEADBAND_FACTOR_HI 1.08f
#define ASSISTEDCONTROL_BRAKETHRUST_DEADBAND_FACTOR_LO 0.96f
#define ASSISTEDCONTROL_BRAKETHRUST_DEADBAND_FACTOR_HI 1.04f
// defined handlers
@ -242,7 +242,7 @@ static void manualControlTask(void)
// set assist mode to none to avoid an assisted flight mode position
// carrying over and impacting a newly selected non-assisted flight mode pos
newFlightModeAssist = FLIGHTSTATUS_FLIGHTMODEASSIST_NONE;
// The following are eqivalent to none effectively. Code should always
// The following are equivalent to none effectively. Code should always
// check the flightmodeassist state.
newAssistedControlState = FLIGHTSTATUS_ASSISTEDCONTROLSTATE_PRIMARY;
newAssistedThrottleState = FLIGHTSTATUS_ASSISTEDTHROTTLESTATE_MANUAL;
@ -264,6 +264,16 @@ static void manualControlTask(void)
#ifndef PIOS_EXCLUDE_ADVANCED_FEATURES
newFlightModeAssist = isAssistedFlightMode(position, newMode, &modeSettings);
if (newFlightModeAssist != flightStatus.FlightModeAssist) {
// On change of assist mode reinitialise control state. This is required
// for the scenario where a flight position change reuses a flight mode
// but adds assistedcontrol.
newAssistedControlState = FLIGHTSTATUS_ASSISTEDCONTROLSTATE_PRIMARY;
newAssistedThrottleState = FLIGHTSTATUS_ASSISTEDTHROTTLESTATE_MANUAL;
}
if (newFlightModeAssist) {
// assess roll/pitch state
bool flagRollPitchHasInput = (fabsf(cmd.Roll) > 0.0f || fabsf(cmd.Pitch) > 0.0f);
@ -301,7 +311,7 @@ static void manualControlTask(void)
// retain thrust cmd for later comparison with actual in braking
thrustAtBrakeStart = cmd.Thrust;
// calculate hi and low value of +-8% as a mini-deadband
// calculate hi and low value of +-4% as a mini-deadband
// for use in auto-override in brake sequence
thrustLo = ASSISTEDCONTROL_BRAKETHRUST_DEADBAND_FACTOR_LO * thrustAtBrakeStart;
thrustHi = ASSISTEDCONTROL_BRAKETHRUST_DEADBAND_FACTOR_HI * thrustAtBrakeStart;

View File

@ -72,7 +72,7 @@ void pathFollowerHandler(bool newinit)
if ((flightModeAssist != FLIGHTSTATUS_FLIGHTMODEASSIST_NONE) &&
(assistedControlFlightMode == FLIGHTSTATUS_ASSISTEDCONTROLSTATE_PRIMARY)) {
// Switch from primary (just entered this PH flight mode) into brake
plan_setup_assistedcontrol(false);
plan_setup_assistedcontrol();
} else {
plan_setup_positionHold();
}
@ -116,7 +116,7 @@ void pathFollowerHandler(bool newinit)
case FLIGHTSTATUS_FLIGHTMODE_STABILIZED6:
if (assistedControlFlightMode == FLIGHTSTATUS_ASSISTEDCONTROLSTATE_BRAKE) {
// Just initiated braking after returning from stabi control
plan_setup_assistedcontrol(false);
plan_setup_assistedcontrol();
}
break;

View File

@ -52,7 +52,8 @@ typedef enum {
NOTIFY_SEQUENCE_ALM_CONFIG = 17,
NOTIFY_SEQUENCE_ALM_RECEIVER = 18,
NOTIFY_SEQUENCE_DISARMED = 19,
NOTIFY_SEQUENCE_NULL = 255, // skips any signalling for this condition
NOTIFY_SEQUENCE_ALM_ATTITUDE = 20,
NOTIFY_SEQUENCE_NULL = 255, // skips any signalling for this condition
} NotifySequences;
// This structure determine sequences attached to an alarm
@ -60,6 +61,7 @@ typedef struct {
uint32_t timeBetweenNotifications; // time in milliseconds to wait between each notification iteration
uint8_t alarmIndex; // Index of the alarm, use one of the SYSTEMALARMS_ALARM_XXXXX defines
uint8_t warnNotification; // index of the sequence to be used when alarm is in warning status(pick one from NotifySequences enum)
uint8_t criticalNotification; // index of the sequence to be used when alarm is in critical status(pick one from NotifySequences enum)
uint8_t errorNotification; // index of the sequence to be used when alarm is in error status(pick one from NotifySequences enum)
} AlarmDefinition_t;
@ -112,7 +114,7 @@ const LedSequence_t notifications[] = {
}, },
[NOTIFY_SEQUENCE_ARMED_FM_STABILIZED6] = { .repeats = -1, .steps = {
{ .time_off = 100, .time_on = 100, .color = COLOR_PURPLE, .repeats = 1, },
{ .time_off = 100, .time_on = 100, .color = COLOR_PURPLE, .repeats = 1, },
{ .time_off = 100, .time_on = 100, .color = COLOR_BLUE, .repeats = 1, },
{ .time_off = 500, .time_on = 100, .color = COLOR_BLUE, .repeats = 1, },
}, },
[NOTIFY_SEQUENCE_ARMED_FM_GPS] = { .repeats = -1, .steps = {
@ -156,6 +158,10 @@ const LedSequence_t notifications[] = {
{ .time_off = 50, .time_on = 50, .color = COLOR_ORANGE, .repeats = 9, },
{ .time_off = 500, .time_on = 50, .color = COLOR_ORANGE, .repeats = 1, },
}, },
[NOTIFY_SEQUENCE_ALM_ATTITUDE] = { .repeats = 10, .steps = {
{ .time_off = 0, .time_on = 50, .color = COLOR_RED, .repeats = 1, },
{ .time_off = 0, .time_on = 50, .color = COLOR_BLUE, .repeats = 1, },
}, },
};
// List of background sequences attached to each flight mode
@ -185,32 +191,44 @@ const AlarmDefinition_t alarmsMap[] = {
.timeBetweenNotifications = 10000,
.alarmIndex = SYSTEMALARMS_ALARM_GPS,
.warnNotification = NOTIFY_SEQUENCE_ALM_WARN_GPS,
.criticalNotification = NOTIFY_SEQUENCE_ALM_ERROR_GPS,
.errorNotification = NOTIFY_SEQUENCE_ALM_ERROR_GPS,
},
{
.timeBetweenNotifications = 15000,
.timeBetweenNotifications = 5000,
.alarmIndex = SYSTEMALARMS_ALARM_MAGNETOMETER,
.warnNotification = NOTIFY_SEQUENCE_NULL,
.criticalNotification = NOTIFY_SEQUENCE_ALM_MAG,
.errorNotification = NOTIFY_SEQUENCE_ALM_MAG,
},
{
.timeBetweenNotifications = 15000,
.alarmIndex = SYSTEMALARMS_ALARM_BATTERY,
.warnNotification = NOTIFY_SEQUENCE_ALM_WARN_BATTERY,
.criticalNotification = NOTIFY_SEQUENCE_ALM_ERROR_BATTERY,
.errorNotification = NOTIFY_SEQUENCE_ALM_ERROR_BATTERY,
},
{
.timeBetweenNotifications = 5000,
.alarmIndex = SYSTEMALARMS_ALARM_SYSTEMCONFIGURATION,
.warnNotification = NOTIFY_SEQUENCE_NULL,
.criticalNotification = NOTIFY_SEQUENCE_ALM_CONFIG,
.errorNotification = NOTIFY_SEQUENCE_ALM_CONFIG,
},
{
.timeBetweenNotifications = 5000,
.timeBetweenNotifications = 2000,
.alarmIndex = SYSTEMALARMS_ALARM_RECEIVER,
.warnNotification = NOTIFY_SEQUENCE_ALM_RECEIVER,
.criticalNotification = NOTIFY_SEQUENCE_ALM_RECEIVER,
.errorNotification = NOTIFY_SEQUENCE_ALM_RECEIVER,
},
{
.timeBetweenNotifications = 1000,
.alarmIndex = SYSTEMALARMS_ALARM_ATTITUDE,
.warnNotification = NOTIFY_SEQUENCE_ALM_ATTITUDE,
.criticalNotification = NOTIFY_SEQUENCE_NULL,
.errorNotification = NOTIFY_SEQUENCE_ALM_ATTITUDE,
},
};
const uint8_t alarmsMapSize = NELEMENTS(alarmsMap);

View File

@ -49,7 +49,7 @@ typedef struct {
static void updatedCb(UAVObjEvent *ev);
static void onTimerCb(UAVObjEvent *ev);
static void checkAlarm(uint8_t alarm, uint8_t *last_alarm, uint32_t *last_alm_time,
uint8_t warn_sequence, uint8_t error_sequence,
uint8_t warn_sequence, uint8_t critical_sequence, uint8_t error_sequence,
uint32_t timeBetweenNotifications);
static AlarmStatus_t *alarmStatus;
int32_t NotifyInitialize(void)
@ -111,17 +111,19 @@ void onTimerCb(__attribute__((unused)) UAVObjEvent *ev)
&alarmStatus[i].lastAlarm,
&alarmStatus[i].lastAlarmTime,
alarmsMap[i].warnNotification,
alarmsMap[i].criticalNotification,
alarmsMap[i].errorNotification,
alarmsMap[i].timeBetweenNotifications);
}
}
void checkAlarm(uint8_t alarm, uint8_t *last_alarm, uint32_t *last_alm_time, uint8_t warn_sequence, uint8_t error_sequence, uint32_t timeBetweenNotifications)
void checkAlarm(uint8_t alarm, uint8_t *last_alarm, uint32_t *last_alm_time, uint8_t warn_sequence, uint8_t critical_sequence, uint8_t error_sequence, uint32_t timeBetweenNotifications)
{
if (alarm > SYSTEMALARMS_ALARM_OK) {
uint32_t current_time = PIOS_DELAY_GetuS();
if (*last_alarm < alarm || *last_alm_time + timeBetweenNotifications * 1000 < current_time) {
uint8_t sequence = (alarm == SYSTEMALARMS_ALARM_WARNING) ? warn_sequence : error_sequence;
if (*last_alarm < alarm || *last_alm_time + timeBetweenNotifications * 1000 > current_time) {
uint8_t sequence = (alarm == SYSTEMALARMS_ALARM_WARNING) ? warn_sequence :
((alarm == SYSTEMALARMS_ALARM_CRITICAL) ? critical_sequence : error_sequence);
if (sequence != NOTIFY_SEQUENCE_NULL) {
PIOS_NOTIFICATION_Default_Ext_Led_Play(
&notifications[sequence],

View File

@ -193,6 +193,21 @@ void VtolBrakeController::UpdateVelocityDesired()
if (!mManualThrust) {
controlDown.UpdatePositionSetpoint(positionState.Down);
}
FlightStatusFlightModeAssistOptions flightModeAssist;
FlightStatusFlightModeAssistGet(&flightModeAssist);
if (flightModeAssist != FLIGHTSTATUS_FLIGHTMODEASSIST_NONE) {
// Notify manualcommand via setting hold state in flightstatus assistedcontrolstate
FlightStatusAssistedControlStateOptions assistedControlFlightMode;
FlightStatusAssistedControlStateGet(&assistedControlFlightMode);
// sanity check that we are in brake state according to flight status, which means
// we are being used for gpsassist
if (assistedControlFlightMode == FLIGHTSTATUS_ASSISTEDCONTROLSTATE_BRAKE) {
assistedControlFlightMode = FLIGHTSTATUS_ASSISTEDCONTROLSTATE_HOLD;
FlightStatusAssistedControlStateSet(&assistedControlFlightMode);
}
}
}
// Update position state and control position to create inputs to velocity control

View File

@ -795,9 +795,9 @@ static void applyDeadband(float *value, float deadband)
if (fabsf(*value) < deadband) {
*value = 0.0f;
} else if (*value > 0.0f) {
*value -= deadband;
*value = (*value - deadband) / (1.0f - deadband);
} else {
*value += deadband;
*value = (*value + deadband) / (1.0f - deadband);
}
}

View File

@ -1030,7 +1030,7 @@
<startSim>true</startSim>
</data>
</Flightgear__PCT__20HITL>
<XPlane__PCT__20HITL>
<XPlane9__PCT__20HITL>
<configInfo>
<locked>false</locked>
<version>0.0.0</version>
@ -1062,10 +1062,46 @@
<minOutputPeriod>40</minOutputPeriod>
<outPort>49000</outPort>
<remoteAddress>127.0.0.1</remoteAddress>
<simulatorId>X-Plane</simulatorId>
<simulatorId>X-Plane9</simulatorId>
<startSim>false</startSim>
</data>
</XPlane__PCT__20HITL>
</XPlane9__PCT__20HITL>
<XPlane10__PCT__20HITL>
<configInfo>
<locked>false</locked>
<version>0.0.0</version>
</configInfo>
<data>
<addNoise>false</addNoise>
<attActCalc>false</attActCalc>
<attActHW>false</attActHW>
<attActSim>true</attActSim>
<attStateEnabled>true</attStateEnabled>
<attRawEnabled>true</attRawEnabled>
<attRawRate>20</attRawRate>
<baroAltRate>50</baroAltRate>
<baroAltitudeEnabled>false</baroAltitudeEnabled>
<binPath></binPath>
<dataPath></dataPath>
<gcsReceiverEnabled>false</gcsReceiverEnabled>
<gpsPosRate>100</gpsPosRate>
<gpsPositionEnabled>false</gpsPositionEnabled>
<groundTruthEnabled>true</groundTruthEnabled>
<groundTruthRate>100</groundTruthRate>
<hostAddress>0.0.0.0</hostAddress>
<inPort>6756</inPort>
<inputCommand>true</inputCommand>
<latitude></latitude>
<longitude></longitude>
<manualControlEnabled>true</manualControlEnabled>
<manualOutput>false</manualOutput>
<minOutputPeriod>40</minOutputPeriod>
<outPort>49000</outPort>
<remoteAddress>127.0.0.1</remoteAddress>
<simulatorId>X-Plane10</simulatorId>
<startSim>false</startSim>
</data>
</XPlane10__PCT__20HITL>
</HITL>
<LineardialGadget>
<Accel__PCT__20Horizontal__PCT__20X>
@ -2669,7 +2705,7 @@
<side0>
<classId>HITL</classId>
<gadget>
<activeConfiguration>XPlane HITL</activeConfiguration>
<activeConfiguration>XPlane9 HITL</activeConfiguration>
</gadget>
<type>uavGadget</type>
</side0>

View File

@ -4,7 +4,7 @@ Item {
id: info
property variant sceneSize
// Uninitialised, Ok, Warning, Critical, Error
// Uninitialised, Ok, Warning, Critical, Error
property variant batColors : ["black", "green", "orange", "red", "red"]
//
@ -15,16 +15,16 @@ Item {
property real posNorth_old
property real total_distance
property real total_distance_km
property bool init_dist: false
property real home_heading: 180/3.1415 * Math.atan2(TakeOffLocation.East - PositionState.East,
property real home_heading: 180/3.1415 * Math.atan2(TakeOffLocation.East - PositionState.East,
TakeOffLocation.North - PositionState.North)
property real home_distance: Math.sqrt(Math.pow((TakeOffLocation.East - PositionState.East),2) +
Math.pow((TakeOffLocation.North - PositionState.North),2))
property real wp_heading: 180/3.1415 * Math.atan2(PathDesired.End_East - PositionState.East,
property real wp_heading: 180/3.1415 * Math.atan2(PathDesired.End_East - PositionState.East,
PathDesired.End_North - PositionState.North)
property real wp_distance: Math.sqrt(Math.pow((PathDesired.End_East - PositionState.East),2) +
@ -34,28 +34,28 @@ Item {
property real home_eta: (home_distance > 0 && current_velocity > 0 ? Math.round(home_distance/current_velocity) : 0)
property real home_eta_h: (home_eta > 0 ? Math.floor(home_eta / 3600) : 0 )
property real home_eta_m: (home_eta > 0 ? Math.floor((home_eta - home_eta_h*3600)/60) : 0)
property real home_eta_m: (home_eta > 0 ? Math.floor((home_eta - home_eta_h*3600)/60) : 0)
property real home_eta_s: (home_eta > 0 ? Math.floor(home_eta - home_eta_h*3600 - home_eta_m*60) : 0)
property real wp_eta: (wp_distance > 0 && current_velocity > 0 ? Math.round(wp_distance/current_velocity) : 0)
property real wp_eta_h: (wp_eta > 0 ? Math.floor(wp_eta / 3600) : 0 )
property real wp_eta_m: (wp_eta > 0 ? Math.floor((wp_eta - wp_eta_h*3600)/60) : 0)
property real wp_eta_m: (wp_eta > 0 ? Math.floor((wp_eta - wp_eta_h*3600)/60) : 0)
property real wp_eta_s: (wp_eta > 0 ? Math.floor(wp_eta - wp_eta_h*3600 - wp_eta_m*60) : 0)
function reset_distance(){
function reset_distance() {
total_distance = 0;
}
function compute_distance(posEast,posNorth) {
if (total_distance == 0 && !init_dist){init_dist = "true"; posEast_old = posEast; posNorth_old = posNorth;}
if (total_distance == 0 && !init_dist) { init_dist = "true"; posEast_old = posEast; posNorth_old = posNorth; }
if (posEast > posEast_old+3 || posEast < posEast_old-3 || posNorth > posNorth_old+3 || posNorth < posNorth_old-3) {
total_distance += Math.sqrt(Math.pow((posEast - posEast_old ),2) + Math.pow((posNorth - posNorth_old),2));
total_distance_km = total_distance / 1000;
total_distance += Math.sqrt(Math.pow((posEast - posEast_old ),2) + Math.pow((posNorth - posNorth_old),2));
total_distance_km = total_distance / 1000;
posEast_old = posEast;
posNorth_old = posNorth;
return total_distance;
}
posEast_old = posEast;
posNorth_old = posNorth;
return total_distance;
}
}
function formatTime(time) {
@ -68,7 +68,7 @@ Item {
}
// End Functions
//
//
// Start Drawing
SvgElementImage {
@ -76,24 +76,40 @@ Item {
sceneSize: info.sceneSize
elementName: "info-bg"
width: parent.width
opacity: qmlWidget.terrainEnabled ? 0.3 : 1
}
//
//
// GPS Info (Top)
//
//
property real bar_width: (info_bg.height + info_bg.width) / 110
property int satsInView: String(GPSSatellites.SatsInView).charCodeAt(0)
property variant gps_tooltip: "Altitude : "+GPSPositionSensor.Altitude.toFixed(2) +"m\n"+
"H/V/P DOP : "+GPSPositionSensor.HDOP.toFixed(2)+"/"+GPSPositionSensor.VDOP.toFixed(2)+"/"+GPSPositionSensor.PDOP.toFixed(2)+"m\n"+
satsInView+" Sats in view"
Repeater {
id: satNumberBar
//smooth: true
// hack, qml/js treats qint8 as a char, necessary to convert it back to integer value
property int satNumber : String(GPSPositionSensor.Satellites).charCodeAt(0)
model: 10
SvgElementImage {
property int minSatNumber : index+1
elementName: "gps" + minSatNumber
sceneSize: info.sceneSize
visible: satNumberBar.satNumber >= minSatNumber
model: 13
Rectangle {
property int minSatNumber : index
width: Math.round(bar_width)
radius: width / 4
TooltipArea {
text: gps_tooltip
}
x: Math.round((bar_width*4.5) + (bar_width * 1.6 * index))
height: bar_width * index * 0.6
y: (bar_width*8) - height
color: "green"
opacity: satNumberBar.satNumber >= minSatNumber ? 1 : 0.4
}
}
@ -101,21 +117,38 @@ Item {
sceneSize: info.sceneSize
elementName: "gps-mode-text"
TooltipArea {
text: gps_tooltip
}
Text {
text: ["NO GPS", "NO FIX", "FIX 2D", "FIX 3D"][GPSPositionSensor.Status]
property int satNumber : String(GPSPositionSensor.Satellites).charCodeAt(0)
text: [satNumber > 5 ? " " + satNumber.toString() + " sats - " : ""] +
["NO GPS", "NO FIX", "2D", "3D"][GPSPositionSensor.Status]
anchors.centerIn: parent
font.pixelSize: Math.floor(parent.height*1.3)
font.pixelSize: parent.height*1.3
font.family: pt_bold.name
font.weight: Font.DemiBold
color: "white"
}
}
//
SvgElementImage {
sceneSize: info.sceneSize
elementName: "gps-icon"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
TooltipArea {
text: gps_tooltip
}
}
// Waypoint Info (Top)
// Only visible when PathPlan is active (WP loaded)
SvgElementImage {
SvgElementImage {
sceneSize: info.sceneSize
elementName: "waypoint-labels"
width: scaledBounds.width * sceneItem.width
@ -257,7 +290,6 @@ Item {
}
}
//
// Battery Info (Top)
// Only visible when PathPlan not active and Battery module enabled
@ -265,7 +297,7 @@ Item {
id: topbattery_voltamp_bg
sceneSize: info.sceneSize
elementName: "topbattery-label-voltamp-bg"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
@ -278,7 +310,7 @@ Item {
}
}
SvgElementImage {
SvgElementImage {
sceneSize: info.sceneSize
elementName: "topbattery-labels"
width: scaledBounds.width * sceneItem.width
@ -291,7 +323,7 @@ Item {
id: topbattery_volt
sceneSize: info.sceneSize
elementName: "topbattery-volt-text"
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
@ -354,6 +386,10 @@ Item {
Rectangle {
anchors.fill: parent
TooltipArea {
text: "Reset consumed energy"
}
MouseArea {
id: reset_consumed_energy_mouseArea;
anchors.fill: parent;
@ -382,11 +418,10 @@ Item {
}
}
//
// Default counter
// Only visible when PathPlan not active
SvgElementImage {
SvgElementImage {
sceneSize: info.sceneSize
elementName: "topbattery-total-distance-label"
width: scaledBounds.width * sceneItem.width
@ -403,6 +438,10 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
visible: SystemAlarms.Alarm_PathPlan != 1
TooltipArea {
text: "Reset distance counter"
}
MouseArea { id: total_dist_mouseArea2; anchors.fill: parent; cursorShape: Qt.PointingHandCursor; onClicked: reset_distance()}
Text {
@ -423,13 +462,6 @@ Item {
}
}
SvgElementImage {
id: mask_SatBar
elementName: "satbar-mask"
sceneSize: info.sceneSize
}
//
// Home info (visible after arming)
//
@ -438,19 +470,22 @@ Item {
id: home_bg
elementName: "home-bg"
sceneSize: info.sceneSize
x: Math.floor(scaledBounds.x * sceneItem.width)
y: Math.floor(scaledBounds.y * sceneItem.height)
states: State {
opacity: qmlWidget.terrainEnabled ? 0.6 : 1
states: State {
name: "fading"
when: TakeOffLocation.Status !== 0
PropertyChanges { target: home_bg; x: Math.floor(scaledBounds.x * sceneItem.width) + home_bg.width; }
when: TakeOffLocation.Status == 0
PropertyChanges { target: home_bg; x: Math.floor(scaledBounds.x * sceneItem.width) - home_bg.width; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
}
SvgElementPositionItem {
@ -461,17 +496,18 @@ Item {
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
states: State {
states: State {
name: "fading_heading"
when: TakeOffLocation.Status !== 0
PropertyChanges { target: home_heading_text; x: Math.floor(scaledBounds.x * sceneItem.width) + home_bg.width; }
when: TakeOffLocation.Status == 0
PropertyChanges { target: home_heading_text; x: Math.floor(scaledBounds.x * sceneItem.width) - home_bg.width; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: " "+home_heading.toFixed(1)+"°"
anchors.centerIn: parent
@ -491,17 +527,17 @@ Item {
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
states: State {
states: State {
name: "fading_distance"
when: TakeOffLocation.Status !== 0
PropertyChanges { target: home_distance_text; x: Math.floor(scaledBounds.x * sceneItem.width) + home_bg.width; }
when: TakeOffLocation.Status == 0
PropertyChanges { target: home_distance_text; x: Math.floor(scaledBounds.x * sceneItem.width) - home_bg.width; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: home_distance.toFixed(0)+" m"
@ -522,17 +558,17 @@ Item {
height: scaledBounds.height * sceneItem.height
y: Math.floor(scaledBounds.y * sceneItem.height)
states: State {
states: State {
name: "fading_distance"
when: TakeOffLocation.Status !== 0
PropertyChanges { target: home_eta_text; x: Math.floor(scaledBounds.x * sceneItem.width) + home_bg.width; }
when: TakeOffLocation.Status == 0
PropertyChanges { target: home_eta_text; x: Math.floor(scaledBounds.x * sceneItem.width) - home_bg.width; }
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
}
}
Text {
text: formatTime(home_eta_h) + ":" + formatTime(home_eta_m) + ":" + formatTime(home_eta_s)

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,32 @@ 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
display_bat = 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
display_bat = true
rc_input_bg.z = 10
battery_bg.z = 20
oplm_bg.z = -1
@ -50,6 +57,8 @@ Item {
function hide_display_oplink(){
show_panels = true;
display_oplm = true
display_bat = false
rc_input_bg.z = 10
battery_bg.z = 20
oplm_bg.z = 30
@ -58,13 +67,15 @@ Item {
function hide_display_system(){
show_panels = true;
display_oplm = false
display_bat = 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 +97,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 +174,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 +198,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 +241,30 @@ 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
TooltipArea {
text: show_panels == true ? "Close panels" : "Open panels"
}
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 +278,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 +299,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 +319,28 @@ 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
TooltipArea {
text: "RC panel"
}
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); }
MouseArea {
id: hidedisp_rcinput;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor
onClicked: hide_display_rcinput()
}
transitions: Transition {
SequentialAnimation {
PropertyAnimation { property: "x"; duration: 800 }
states: State {
name: "fading"
when: show_panels == true
PropertyChanges { target: rc_input_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 }
}
}
}
}
SvgElementImage {
@ -293,7 +348,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 +356,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 +375,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 +383,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 +391,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 +415,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 +433,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 +479,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,25 +520,31 @@ 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
TooltipArea {
text: "Reset consumed energy"
visible: display_bat == true ? 1 : 0
}
MouseArea {
id: reset_panel_consumed_energy_mouseArea;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor;
cursorShape: Qt.PointingHandCursor;
visible: display_bat == true ? 1 : 0
onClicked: qmlWidget.resetConsumedEnergy();
}
@ -517,26 +578,32 @@ 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
//color: panels.batColors[SystemAlarms.Alarm_Battery]
TooltipArea {
text: "Reset consumed energy"
visible: display_bat == true ? 1 : 0
}
MouseArea {
id: reset_panel_consumed_energy_mouseArea2;
anchors.fill: parent;
cursorShape: Qt.PointingHandCursor;
visible: display_bat == true ? 1 : 0
onClicked: qmlWidget.resetConsumedEnergy();
}
@ -567,17 +634,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 +654,28 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: battery_bg.z+6
MouseArea {
id: hidedisp_battery;
anchors.fill: parent;
cursorShape: Qt.WhatsThisCursor
TooltipArea {
text: "Battery panel"
}
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 +689,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 +709,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 +729,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 +749,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 +795,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 +822,7 @@ Item {
property variant button_color: "button"+index+"_color"
id: idButton_oplm
elementName: "oplm-button-" + index
sceneSize: panels.sceneSize
@ -759,23 +835,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;
cursorShape: Qt.PointingHandCursor;
visible: display_oplm == true ? 1 : 0
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 +863,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 +887,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) : "-- -- -- --"
@ -834,6 +912,60 @@ Item {
}
}
SvgElementImage {
id: rx_quality_label
elementName: "rx-quality-label"
sceneSize: panels.sceneSize
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z+8
states: State {
name: "fading"
when: show_panels == true
PropertyChanges { target: rx_quality_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 }
}
}
}
SvgElementPositionItem {
id: rx_quality_text
sceneSize: panels.sceneSize
elementName: "rx-quality-text"
z: oplm_bg.z+9
width: scaledBounds.width * sceneItem.width
height: scaledBounds.height * sceneItem.height
y: scaledBounds.y * sceneItem.height
states: State {
name: "fading"
when: show_panels == true
PropertyChanges { target: rx_quality_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 }
}
}
Text {
text: ReceiverStatus.Quality > 0 ? ReceiverStatus.Quality+"%" : "?? %"
anchors.centerIn: parent
color: "white"
font {
family: pt_bold.name
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
SvgElementImage {
id: oplm_mousearea
elementName: "oplm-panel-mousearea"
@ -841,24 +973,28 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: oplm_bg.z
MouseArea {
id: hidedisp_oplm;
anchors.fill: parent;
cursorShape: Qt.WhatsThisCursor
TooltipArea {
text: "Link panel"
}
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 +1008,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,16 +1029,16 @@ 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 {
@ -916,7 +1052,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -926,17 +1062,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 +1085,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -959,17 +1095,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 +1116,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -990,17 +1126,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 +1147,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.35)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -1021,17 +1157,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 +1178,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementPositionItem {
@ -1052,17 +1188,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 +1209,7 @@ Item {
pixelSize: Math.floor(parent.height * 1.4)
weight: Font.DemiBold
}
}
}
}
SvgElementImage {
@ -1083,23 +1219,27 @@ Item {
y: Math.floor(scaledBounds.y * sceneItem.height)
z: system_bg.z+1
MouseArea {
id: hidedisp_system;
anchors.fill: parent;
cursorShape: Qt.WhatsThisCursor
TooltipArea {
text: "System panel"
}
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

@ -0,0 +1,27 @@
import QtQuick 2.0
import QtQuick.Controls 1.2
import QtQuick.Controls.Private 1.0
import QtQuick.Controls.Styles 1.1
// TooltipArea.qml
// This file contains private Qt Quick modules that might change in future versions of Qt
// Tested on: Qt 5.4.1
// https://www.kullo.net/blog/tooltiparea-the-missing-tooltip-component-of-qt-quick/
MouseArea {
id: _root
property string text: ""
anchors.fill: parent
hoverEnabled: _root.enabled
onExited: Tooltip.hideText()
onCanceled: Tooltip.hideText()
Timer {
interval: 1000
running: _root.enabled && _root.containsMouse && _root.text.length
onTriggered: Tooltip.showText(_root, Qt.point(_root.mouseX, _root.mouseY), _root.text)
}
}

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="4.2956737"
inkscape:cx="-47.945175"
inkscape:cy="97.731657"
inkscape:document-units="px"
inkscape:current-layer="smeter-scale"
inkscape:current-layer="layer54"
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"
@ -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,7 +1453,7 @@
inkscape:groupmode="layer"
id="layer95"
inkscape:label="close-panel"
style="display:none"
style="display:inline"
sodipodi:insensitive="true">
<g
inkscape:groupmode="layer"
@ -1430,61 +1461,99 @@
inkscape:label="close-bg"
style="display:inline">
<g
style="fill:none;display:inline"
transform="matrix(1.1599442,0,0,1.1601679,-0.0677089,-75.769597)"
style="display:inline;fill:none"
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337425)"
id="close-bg">
<path
sodipodi:nodetypes="csssccssscc"
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,323.03076 L 163.99993,323.03076 C 166.76993,323.03076 168.99993,320.73701 168.99993,317.88783 L 168.99993,311.8548 C 168.99993,309.00562 166.76594,306.5586 163.99993,306.71187 z"
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 0,-137.96926 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-6.03303 c 0,-2.84918 -2.23399,-5.2962 -5,-5.14293 z"
id="path3908-6-7"
inkscape:connector-curvature="0" />
<g
id="close-icon"
transform="matrix(0.86009397,0,0,0.86009397,0.18825858,65.744733)">
<path
<circle
transform="translate(-0.6835781,-2.0507343)"
d="M 191.74365,291.50333 C 191.74365,294.80671 189.06573,297.48463 185.76234,297.48463 C 182.45896,297.48463 179.78104,294.80671 179.78104,291.50333 C 179.78104,288.19994 182.45896,285.52202 185.76234,285.52202 C 189.06573,285.52202 191.74365,288.19994 191.74365,291.50333 z"
sodipodi:ry="5.9813085"
sodipodi:rx="5.9813085"
sodipodi:cy="291.50333"
sodipodi:cx="185.76234"
id="path4867"
style="fill:url(#linearGradient5150);fill-opacity:1;stroke:#ffffff;stroke-width:0.80921388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
sodipodi:type="arc" />
style="fill:url(#linearGradient5150);fill-opacity:1;stroke:#ffffff;stroke-width:0.80921388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
cx="185.76234"
cy="291.50333"
r="5.9813085" />
<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-dasharray:none;stroke-opacity:1"
d="m 154.84665,291.64278 l 2.54839,2.54839"
id="path4869"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4871"
d="m 157.39504,289.09439 l -2.54839,2.54839"
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</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)">
<circle
transform="matrix(0.99766101,0,0,0.99785341,-174.53132,-1.5409998)"
id="path6810"
style="display:inline;fill:url(#linearGradient6836);fill-opacity:1;stroke:#ffffff;stroke-width:0.80921388;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
cx="185.76234"
cy="291.50333"
r="5.9813085" />
<g
id="g6812"
transform="matrix(-0.99766101,0,0,0.99785341,166.55221,-1.6801298)"
style="display:inline;fill:none">
<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-dasharray:none;stroke-opacity:1"
d="m 154.84665,291.64278 l 2.54839,2.54839"
id="path6814"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path6816"
d="m 157.39504,289.09439 l -2.54839,2.54839"
style="fill:none;stroke:#ffffff;stroke-width:1.97652829;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</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"
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" />
style="display:none;fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer83"
inkscape:label="rc-input-panel"
style="display:none"
style="display:inline"
sodipodi:insensitive="true">
<g
inkscape:groupmode="layer"
@ -1493,21 +1562,21 @@
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">
<path
sodipodi:nodetypes="sssscsssscsss"
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 145,461.00002 L 164,461.00002 C 166.77,461.00002 169,458.70627 169,455.85709 L 169,431.6649 C 169,428.81572 166.77,426.52197 164,426.52197 L 150,426.52197 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 146.8968835,0 l 19,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19219 c 0,-2.84918 -2.23,-5.14293 -5,-5.14293 l -14,0 l 0,-114.66703 c 0,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
id="rc-bg"
inkscape:connector-curvature="0" />
<g
transform="matrix(1.5066271,0,0,1.440284,-74.30771,-188.47457)"
id="rc-input-icon">
<rect
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.29312041;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.29312041;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4855"
width="8.5526886"
height="8.3682938"
@ -1515,46 +1584,34 @@
y="437.06793"
rx="0.80000001"
ry="0.80000001" />
<path
<circle
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"
sodipodi:ry="2"
sodipodi:rx="2"
sodipodi:cy="441"
sodipodi:cx="155"
id="path4857"
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.50249225;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#ffffff;stroke-width:0.13399792;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.50249225;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
cx="155"
cy="441"
r="2" />
<circle
style="fill:none;stroke:#ffffff;stroke-width:0.13399792;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4859"
sodipodi:cx="155"
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"
transform="matrix(0.625,0,0,0.625,55.875,163.98272)" />
<path
sodipodi:type="arc"
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.50249225;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
transform="matrix(0.625,0,0,0.625,55.875,163.98272)"
cx="155"
cy="441"
r="2" />
<circle
style="fill:#377096;fill-opacity:1;stroke:#ffffff;stroke-width:0.50249225;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4875"
sodipodi:cx="155"
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"
transform="matrix(-0.25,0,0,-0.25,195.4413,550.05917)" />
<path
transform="matrix(-0.25,0,0,-0.25,195.4413,550.05917)"
cx="155"
cy="441"
r="2" />
<circle
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"
sodipodi:ry="2"
sodipodi:rx="2"
sodipodi:cy="441"
sodipodi:cx="155"
id="path4877"
style="fill:none;stroke:#ffffff;stroke-width:0.13399792;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
style="fill:none;stroke:#ffffff;stroke-width:0.13399792;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
cx="155"
cy="441"
r="2" />
<rect
ry="0.22735006"
rx="0.19281514"
@ -1563,10 +1620,10 @@
height="2.0068226"
width="4.352685"
id="rect3963"
style="fill:url(#linearGradient8314);fill-opacity:1;stroke:#ededed;stroke-width:0.08374871;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.81176471;stroke-dasharray:none" />
style="fill:url(#linearGradient8314);fill-opacity:1;stroke:#ededed;stroke-width:0.08374871;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.81176471" />
<path
style="fill:none;stroke:#ffffff;stroke-width:0.5443666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-start:none"
d="M 154.54064,436.85572 L 154.54064,435.15859 L 159.54064,432.15859"
style="fill:none;stroke:#ffffff;stroke-width:0.5443666;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:none"
d="m 154.54064,436.85572 l 0,-1.69713 l 5,-3"
id="path3968"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
@ -1575,37 +1632,31 @@
</g>
<g
id="rc-input-labels"
transform="translate(0,-2)">
<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"
sodipodi:ry="65"
sodipodi:rx="65"
sodipodi:cy="385"
sodipodi:cx="75"
transform="translate(-174,-1.5678281)">
<circle
id="path6597"
style="fill:none;stroke:#ffffff;stroke-width:0.63635814;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc"
transform="matrix(0.94277439,0,0,0.94295621,16.220026,9.8569016)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient4957);fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#ffffff;stroke-width:0.63635814;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.94277439,0,0,0.94295621,16.220026,9.8569016)"
cx="75"
cy="385"
r="65" />
<circle
style="fill:url(#radialGradient4957);fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4936"
sodipodi:cx="75"
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"
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)" />
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)"
cx="75"
cy="385"
r="65" />
<rect
y="367.09421"
x="92.727829"
height="11.601679"
width="69.596649"
id="rect4973"
style="fill:url(#linearGradient5006-2);fill-opacity:1;stroke:none;display:inline" />
style="display:inline;fill:url(#linearGradient5006-2);fill-opacity:1;stroke:none" />
<rect
transform="matrix(0,-1,1,0,0,0)"
style="fill:url(#linearGradient5027);fill-opacity:1;stroke:none;display:inline"
style="display:inline;fill:url(#linearGradient5027);fill-opacity:1;stroke:none"
id="rect5025"
width="69.610069"
height="11.599442"
@ -1619,7 +1670,7 @@
id="text4959"
y="91.535339"
x="-352.78168"
style="font-size:12.7606163px;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"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.7606163px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
id="tspan4963"
y="91.535339"
@ -1627,7 +1678,7 @@
sodipodi:role="line">PITCH</tspan></text>
<text
xml:space="preserve"
style="font-size:12.7606163px;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"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.7606163px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
x="111.61644"
y="377.02695"
id="text4967"
@ -1641,7 +1692,7 @@
id="tspan4969">ROLL </tspan></text>
<rect
transform="scale(-1,-1)"
style="fill:url(#linearGradient5055);fill-opacity:1;stroke:none;display:inline"
style="display:inline;fill:url(#linearGradient5055);fill-opacity:1;stroke:none"
id="rect5051"
width="69.596649"
height="11.601679"
@ -1653,18 +1704,15 @@
height="11.599442"
width="69.610069"
id="rect5053"
style="fill:url(#linearGradient5057);fill-opacity:1;stroke:none;display:inline"
style="display:inline;fill:url(#linearGradient5057);fill-opacity:1;stroke:none"
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"
sodipodi:ry="10"
sodipodi:rx="10"
sodipodi:cy="385"
sodipodi:cx="75"
<circle
id="path5029"
style="fill:#1e1e1e;fill-opacity:1;fill-rule:nonzero;stroke:#5555e6;stroke-width:3.44810915;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc"
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)" />
style="fill:#1e1e1e;fill-opacity:1;fill-rule:nonzero;stroke:#5555e6;stroke-width:3.44810915;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(1.1599442,0,0,1.1601679,-0.06770889,-73.769595)"
cx="75"
cy="385"
r="10" />
<text
transform="matrix(0,-0.99990361,1.0000964,0,0,0)"
inkscape:transform-center-y="-11.62783"
@ -1673,15 +1721,15 @@
id="text8752"
y="90.643921"
x="-444.89758"
style="font-size:10.39828682px;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"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.39828682px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
id="tspan8754"
y="90.643921"
x="-444.89758"
sodipodi:role="line">THROTTLE</tspan></text>
<path
style="fill:none;stroke:#d90000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 81.414,387.28098 L 92.414,387.36818"
style="fill:none;stroke:#d90000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 81.414,387.28098 l 11,0.0872"
id="path8757"
inkscape:connector-curvature="0" />
</g>
@ -1690,11 +1738,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 -3.74455,0.37024 -7.701236,0.3364 -11.59944,0 l 0,-60.31428 l 11.59944,0 z"
id="rc-throttle"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
@ -1703,28 +1750,24 @@
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)">
<path
transform="matrix(1.1599442,0,0,1.1601679,-174.06771,-75.337423)">
<circle
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"
sodipodi:ry="10"
sodipodi:rx="10"
sodipodi:cy="385"
sodipodi:cx="70"
id="path4938"
style="fill:#e58956;fill-opacity:0.47083333;stroke:#eb0037;stroke-width:0.86202729;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
style="fill:#e58956;fill-opacity:0.47083333;stroke:#eb0037;stroke-width:0.86202729;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
cx="70"
cy="385"
r="10" />
<path
transform="matrix(0.50208482,-0.70189772,0.76181733,0.46259409,-239.59483,243.95728)"
style="fill:#eb0037;fill-opacity:1;stroke:#ea002e;stroke-width:0.98430401;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
inkscape:transform-center-x="3.4685256"
inkscape:transform-center-y="-5.1293966"
d="M 55,382.5 L 50.669873,391.16025 C 50.669873,391.16025 52.691241,381.2667 51.294555,379.15237 C 49.897869,377.03804 40,375 40,375 L 49.665064,374.41987 L 59.330127,373.83975 z"
d="m 55,382.5 l -4.330127,8.66025 c 0,0 2.021368,-9.89355 0.624682,-12.00788 C 49.897869,377.03804 40,375 40,375 l 9.665064,-0.58013 l 9.665063,-0.58012 z"
id="rc-yaw"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cczcccc" />
@ -1734,15 +1777,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"
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
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,29 +1793,28 @@
inkscape:groupmode="layer"
id="layer84"
inkscape:label="battery-panel"
style="display:none"
style="display:inline"
sodipodi:insensitive="true">
<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"
id="path8224"
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150.00007,426.46407 L 164,426.46407 C 166.77,426.46407 169,424.17032 169,421.32114 L 169,397.12866 C 169,394.27948 166.77005,391.98556 164,391.98573 L 150,391.98573 L 150,311.85494 C 150,309.00575 147.77,306.712 145,306.712 z"
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 7e-5,-34.53595 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19248 c 0,-2.84918 -2.22995,-5.1431 -5,-5.14293 l -14,0 l 0,-80.13079 c 0,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
sodipodi:nodetypes="ssssccsssscsss" />
<g
id="battery-icon"
transform="translate(-25.702698,19.078394)">
<rect
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.599971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.599971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect8252"
width="10.563934"
height="23.048584"
@ -1782,7 +1823,7 @@
rx="0.3369644"
ry="0.37989542" />
<rect
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:#191919;fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect8254"
width="4.4416542"
height="2.4008942"
@ -1791,8 +1832,8 @@
rx="0.3369644"
ry="0.37989542" />
<path
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 187.02966,383.00388 L 181.98777,391.88719 L 185.22898,391.76714 L 182.10782,399.32996 L 188.2301,390.56669 L 184.74881,390.44665 z"
style="fill:#fcc100;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 187.02966,383.00388 l -5.04189,8.88331 l 3.24121,-0.12005 l -3.12116,7.56282 l 6.12228,-8.76327 l -3.48129,-0.12004 z"
id="path8256"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
@ -1803,34 +1844,33 @@
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"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none">
<path
inkscape:connector-curvature="0"
id="path4641"
d="M 620.206,52 L 620.206,47.775181 L 620.84648,47.775181 L 620.84648,48.367929 C 620.97909,48.161068 621.15545,47.995311 621.37558,47.870658 C 621.5957,47.74336 621.84633,47.67971 622.12746,47.679705 C 622.4404,47.67971 622.69633,47.744685 622.89524,47.874636 C 623.0968,48.004593 623.23869,48.186263 623.32091,48.419645 C 623.65507,47.926356 624.09002,47.67971 624.62575,47.679705 C 625.04478,47.67971 625.36701,47.796403 625.59244,48.029784 C 625.81787,48.260522 625.93058,48.617231 625.93059,49.099913 L 625.93059,52 L 625.2185,52 L 625.2185,49.338603 C 625.21849,49.052178 625.1946,48.846639 625.1469,48.721986 C 625.1018,48.594688 625.01827,48.492582 624.89627,48.415667 C 624.77427,48.338757 624.63106,48.300304 624.46663,48.3003 C 624.16959,48.300304 623.92294,48.39976 623.72669,48.598663 C 623.53043,48.794923 623.4323,49.110524 623.43231,49.545468 L 623.43231,52 L 622.71623,52 L 622.71623,49.255061 C 622.71623,48.936811 622.65793,48.698121 622.5412,48.53899 C 622.4245,48.379867 622.23355,48.300304 621.96834,48.3003 C 621.76678,48.300304 621.5798,48.35335 621.40742,48.459427 C 621.23768,48.565515 621.11436,48.720664 621.03745,48.924873 C 620.96055,49.129089 620.92208,49.423473 620.92208,49.808027 L 620.92208,52 L 620.20601,52" />
d="m 620.206,52 l 0,-4.224819 l 0.64048,0 l 0,0.592748 c 0.13261,-0.206861 0.30897,-0.372618 0.5291,-0.497271 c 0.22012,-0.127298 0.47075,-0.190948 0.75188,-0.190953 c 0.31294,5e-6 0.56887,0.06498 0.76778,0.194931 c 0.20156,0.129957 0.34345,0.311627 0.42567,0.545009 c 0.33416,-0.493289 0.76911,-0.739935 1.30484,-0.73994 c 0.41903,5e-6 0.74126,0.116698 0.96669,0.350079 c 0.22543,0.230738 0.33814,0.587447 0.33815,1.070129 l 0,2.900087 l -0.71209,0 l 0,-2.661397 c -10e-6,-0.286425 -0.0239,-0.491964 -0.0716,-0.616617 c -0.0451,-0.127298 -0.12863,-0.229404 -0.25063,-0.306319 c -0.122,-0.07691 -0.26521,-0.115363 -0.42964,-0.115367 c -0.29704,4e-6 -0.54369,0.09946 -0.73994,0.298363 c -0.19626,0.19626 -0.29439,0.511861 -0.29438,0.946805 l 0,2.454532 l -0.71608,0 l 0,-2.744939 c 0,-0.31825 -0.0583,-0.55694 -0.17503,-0.716071 c -0.1167,-0.159123 -0.30765,-0.238686 -0.57286,-0.23869 c -0.20156,4e-6 -0.38854,0.05305 -0.56092,0.159127 c -0.16974,0.106088 -0.29306,0.261237 -0.36997,0.465446 c -0.0769,0.204216 -0.11537,0.4986 -0.11537,0.883154 l 0,2.191973 l -0.71607,0" />
<path
inkscape:connector-curvature="0"
id="path4645"
d="M 632.45877,52 L 632.45877,46.168 L 633.17484,46.168 L 633.17484,48.260518 C 633.509,47.873314 633.93069,47.67971 634.4399,47.679705 C 634.75284,47.67971 635.02469,47.742035 635.25542,47.866679 C 635.48615,47.988681 635.65058,48.158416 635.74872,48.375885 C 635.84949,48.593362 635.89988,48.908964 635.89989,49.32269 L 635.89989,52 L 635.18382,52 L 635.18382,49.32269 C 635.18381,48.964658 635.10562,48.704751 634.9491,48.542969 C 634.79528,48.378541 634.57648,48.296326 634.29271,48.296322 C 634.08053,48.296326 633.8803,48.352022 633.692,48.463405 C 633.50635,48.572145 633.37375,48.720664 633.29418,48.90896 C 633.21458,49.097264 633.17484,49.35717 633.17484,49.688682 L 633.17484,52 L 632.45877,52" />
d="m 632.45877,52 l 0,-5.832 l 0.71607,0 l 0,2.092518 c 0.33416,-0.387204 0.75585,-0.580808 1.26506,-0.580813 c 0.31294,5e-6 0.58479,0.06233 0.81552,0.186974 c 0.23073,0.122002 0.39516,0.291737 0.4933,0.509206 c 0.10077,0.217477 0.15116,0.533079 0.15117,0.946805 l 0,2.67731 l -0.71607,0 l 0,-2.67731 c -10e-6,-0.358032 -0.0782,-0.617939 -0.23472,-0.779721 c -0.15382,-0.164428 -0.37262,-0.246643 -0.65639,-0.246647 c -0.21218,4e-6 -0.41241,0.0557 -0.60071,0.167083 c -0.18565,0.10874 -0.31825,0.257259 -0.39782,0.445555 c -0.0796,0.188304 -0.11934,0.44821 -0.11934,0.779722 l 0,2.311318 l -0.71607,0" />
<path
inkscape:connector-curvature="0"
id="path4643"
d="M 626.46764,52 L 628.70735,46.168 L 629.53879,46.168 L 631.92569,52 L 631.04652,52 L 630.36625,50.233692 L 627.92763,50.233692 L 627.28714,52 L 626.46764,52 M 628.15041,49.605141 L 630.12756,49.605141 L 629.5189,47.990003 C 629.33325,47.499366 629.19534,47.096245 629.10517,46.780639 C 629.03087,47.154592 628.92615,47.525887 628.79089,47.894527 L 628.15041,49.605141" />
d="m 626.46764,52 l 2.23971,-5.832 l 0.83144,0 l 2.3869,5.832 l -0.87917,0 l -0.68027,-1.766308 l -2.43862,0 L 627.28714,52 l -0.8195,0 m 1.68277,-2.394859 l 1.97715,0 l -0.60866,-1.615138 c -0.18565,-0.490637 -0.32356,-0.893758 -0.41373,-1.209364 c -0.0743,0.373953 -0.17902,0.745248 -0.31428,1.113888 l -0.64048,1.710614" />
</g>
<g
transform="matrix(2.6441912,0,0,2.7434696,-1532.0391,272.46228)"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="battery-amp-label">
<path
d="M 631.84326,27.351151 L 630.83984,30.072097 L 632.85034,30.072097 L 631.84326,27.351151 M 631.42578,26.622391 L 632.2644,26.622391 L 634.34815,32.08992 L 633.57911,32.08992 L 633.08106,30.687332 L 630.61646,30.687332 L 630.11841,32.08992 L 629.33838,32.08992 L 631.42578,26.622391"
d="m 631.84326,27.351151 l -1.00342,2.720946 l 2.0105,0 l -1.00708,-2.720946 m -0.41748,-0.72876 l 0.83862,0 l 2.08375,5.467529 l -0.76904,0 l -0.49805,-1.402588 l -2.4646,0 l -0.49805,1.402588 l -0.78003,0 l 2.0874,-5.467529"
style="font-size:8px;fill:#ffffff"
id="path4614"
inkscape:connector-curvature="0" />
@ -1838,46 +1878,46 @@
<g
transform="matrix(2.4789292,0,0,2.5720027,-1413.6633,282.26069)"
id="battery-volt-label"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Sans">
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:1;stroke:none">
<path
inkscape:connector-curvature="0"
id="path6809"
style="font-size:8px;fill:#ffffff"
d="M 625.76807,14.08992 L 623.5415,8.2578888 L 624.36572,8.2578888 L 626.21338,13.168045 L 628.06494,8.2578888 L 628.88525,8.2578888 L 626.6626,14.08992 L 625.76807,14.08992" />
d="M 625.76807,14.08992 L 623.5415,8.2578888 l 0.82422,0 l 1.84766,4.9101562 l 1.85156,-4.9101562 l 0.82031,0 L 626.6626,14.08992 l -0.89453,0" />
</g>
<g
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ffffff;fill-opacity:1;stroke:none"
id="battery-time-left-label">
<path
d="M 122.65913,432.62387 L 122.65913,422.52231 L 118.8857,422.52231 L 118.8857,421.17075 L 127.96382,421.17075 L 127.96382,422.52231 L 124.17476,422.52231 L 124.17476,432.62387 L 122.65913,432.62387"
d="m 122.65913,432.62387 l 0,-10.10156 l -3.77343,0 l 0,-1.35156 l 9.07812,0 l 0,1.35156 l -3.78906,0 l 0,10.10156 l -1.51563,0"
id="path8733"
inkscape:connector-curvature="0" />
<path
d="M 129.84663,432.62387 L 129.84663,421.17075 L 131.36226,421.17075 L 131.36226,432.62387 L 129.84663,432.62387"
d="m 129.84663,432.62387 l 0,-11.45312 l 1.51563,0 l 0,11.45312 l -1.51563,0"
id="path8735"
inkscape:connector-curvature="0" />
<path
d="M 133.97945,432.62387 L 133.97945,421.17075 L 136.2607,421.17075 L 138.97163,429.28012 C 139.22163,430.03533 139.40392,430.60044 139.51851,430.97543 C 139.64871,430.55877 139.85184,429.94679 140.12788,429.1395 L 142.87007,421.17075 L 144.90913,421.17075 L 144.90913,432.62387 L 143.4482,432.62387 L 143.4482,423.03793 L 140.12007,432.62387 L 138.75288,432.62387 L 135.44038,422.87387 L 135.44038,432.62387 L 133.97945,432.62387"
d="m 133.97945,432.62387 l 0,-11.45312 l 2.28125,0 l 2.71093,8.10937 c 0.25,0.75521 0.43229,1.32032 0.54688,1.69531 c 0.1302,-0.41666 0.33333,-1.02864 0.60937,-1.83593 l 2.74219,-7.96875 l 2.03906,0 l 0,11.45312 l -1.46093,0 l 0,-9.58594 l -3.32813,9.58594 l -1.36719,0 l -3.3125,-9.75 l 0,9.75 l -1.46093,0"
id="path8737"
inkscape:connector-curvature="0" />
<path
d="M 147.40132,432.62387 L 147.40132,421.17075 L 155.68257,421.17075 L 155.68257,422.52231 L 148.91695,422.52231 L 148.91695,426.03012 L 155.25288,426.03012 L 155.25288,427.37387 L 148.91695,427.37387 L 148.91695,431.27231 L 155.9482,431.27231 L 155.9482,432.62387 L 147.40132,432.62387"
d="m 147.40132,432.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76562,0 l 0,3.50781 l 6.33593,0 l 0,1.34375 l -6.33593,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54688,0"
id="path8739"
inkscape:connector-curvature="0" />
<path
d="M 119.22945,452.62387 L 119.22945,441.17075 L 120.74507,441.17075 L 120.74507,451.27231 L 126.3857,451.27231 L 126.3857,452.62387 L 119.22945,452.62387"
d="m 119.22945,452.62387 l 0,-11.45312 l 1.51562,0 l 0,10.10156 l 5.64063,0 l 0,1.35156 l -7.15625,0"
id="path8741"
inkscape:connector-curvature="0" />
<path
d="M 128.22945,452.62387 L 128.22945,441.17075 L 136.5107,441.17075 L 136.5107,442.52231 L 129.74507,442.52231 L 129.74507,446.03012 L 136.08101,446.03012 L 136.08101,447.37387 L 129.74507,447.37387 L 129.74507,451.27231 L 136.77632,451.27231 L 136.77632,452.62387 L 128.22945,452.62387"
d="m 128.22945,452.62387 l 0,-11.45312 l 8.28125,0 l 0,1.35156 l -6.76563,0 l 0,3.50781 l 6.33594,0 l 0,1.34375 l -6.33594,0 l 0,3.89844 l 7.03125,0 l 0,1.35156 l -8.54687,0"
id="path8743"
inkscape:connector-curvature="0" />
<path
d="M 138.96382,452.62387 L 138.96382,441.17075 L 146.69038,441.17075 L 146.69038,442.52231 L 140.47945,442.52231 L 140.47945,446.06918 L 145.85445,446.06918 L 145.85445,447.42075 L 140.47945,447.42075 L 140.47945,452.62387 L 138.96382,452.62387"
d="m 138.96382,452.62387 l 0,-11.45312 l 7.72656,0 l 0,1.35156 l -6.21093,0 l 0,3.54687 l 5.375,0 l 0,1.35157 l -5.375,0 l 0,5.20312 l -1.51563,0"
id="path8745"
inkscape:connector-curvature="0" />
<path
d="M 151.58101,452.62387 L 151.58101,442.52231 L 147.80757,442.52231 L 147.80757,441.17075 L 156.8857,441.17075 L 156.8857,442.52231 L 153.09663,442.52231 L 153.09663,452.62387 L 151.58101,452.62387"
d="m 151.58101,452.62387 l 0,-10.10156 l -3.77344,0 l 0,-1.35156 l 9.07813,0 l 0,1.35156 l -3.78907,0 l 0,10.10156 l -1.51562,0"
id="path8747"
inkscape:connector-curvature="0" />
</g>
@ -1887,14 +1927,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"
style="fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
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,53 +1942,52 @@
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"
height="40"
width="100"
id="warning-low-energy"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<g
id="g8649"
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)">
<path
inkscape:connector-curvature="0"
id="path6494"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062" />
<path
inkscape:connector-curvature="0"
id="path6496"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062" />
<path
inkscape:connector-curvature="0"
id="path6498"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062" />
<path
inkscape:connector-curvature="0"
id="path6500"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062" />
<path
inkscape:connector-curvature="0"
id="path6502"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062" />
</g>
</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"
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="warning-high-current"
width="100"
height="40"
@ -1958,77 +1997,77 @@
id="g8642"
transform="matrix(0.98684211,0,0,0.98684211,1.8860984,3.7600279)">
<path
d="M 37.344081,349.57585 C 36.269846,349.57586 35.460715,350.1061 34.916711,351.16656 C 34.379604,352.22015 34.111029,353.80741 34.111029,355.92833 C 34.111029,358.0424 34.379604,359.62965 34.916711,360.69012 C 35.460715,361.7437 36.269846,362.27049 37.344081,362.27049 C 38.425214,362.27049 39.234344,361.7437 39.771473,360.69012 C 40.315455,359.62965 40.587457,358.0424 40.587478,355.92833 C 40.587457,353.80741 40.315455,352.22015 39.771473,351.16656 C 39.234344,350.1061 38.425214,349.57586 37.344081,349.57585 M 37.344081,347.92317 C 39.072514,347.92319 40.391209,348.60836 41.300188,349.97869 C 42.216042,351.34217 42.673968,353.32538 42.67399,355.92833 C 42.673968,358.52442 42.216042,360.50764 41.300188,361.87798 C 40.391209,363.24145 39.072514,363.92317 37.344081,363.92317 C 35.61567,363.92317 34.293526,363.24145 33.377652,361.87798 C 32.468694,360.50764 32.014194,358.52442 32.014194,355.92833 C 32.014194,353.32538 32.468694,351.34217 33.377652,349.97869 C 34.293526,348.60836 35.61567,347.92319 37.344081,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 37.344081,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268575,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890263,-0.52679 2.427392,-1.58037 c 0.543982,-1.06047 0.815984,-2.64772 0.816005,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346259,-1.5907 -2.427392,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.57931 -1.373802,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728411,0 -3.050555,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915874,-1.37033 2.238018,-2.0555 3.966429,-2.05552"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path4599"
inkscape:connector-curvature="0" />
<path
d="M 50.813421,349.57585 C 49.739184,349.57586 48.930054,350.1061 48.38605,351.16656 C 47.848922,352.22015 47.580368,353.80741 47.580368,355.92833 C 47.580368,358.0424 47.848922,359.62965 48.38605,360.69012 C 48.930054,361.7437 49.739184,362.27049 50.813421,362.27049 C 51.894553,362.27049 52.703662,361.7437 53.240791,360.69012 C 53.784795,359.62965 54.056797,358.0424 54.056818,355.92833 C 54.056797,353.80741 53.784795,352.22015 53.240791,351.16656 C 52.703662,350.1061 51.894553,349.57586 50.813421,349.57585 M 50.813421,347.92317 C 52.541854,347.92319 53.860549,348.60836 54.769527,349.97869 C 55.685381,351.34217 56.143308,353.32538 56.143308,355.92833 C 56.143308,358.52442 55.685381,360.50764 54.769527,361.87798 C 53.860549,363.24145 52.541854,363.92317 50.813421,363.92317 C 49.084988,363.92317 47.762845,363.24145 46.846991,361.87798 C 45.938013,360.50764 45.483534,358.52442 45.483534,355.92833 C 45.483534,353.32538 45.938013,351.34217 46.846991,349.97869 C 47.762845,348.60836 49.084988,347.92319 50.813421,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 50.813421,349.57585 c -1.074237,10e-6 -1.883367,0.53025 -2.427371,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.427371,1.58037 c 1.081132,0 1.890241,-0.52679 2.42737,-1.58037 c 0.544004,-1.06047 0.816006,-2.64772 0.816027,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816027,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.42737,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956106,2.05552 c 0.915854,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457927,4.57931 -1.373781,5.94965 c -0.908978,1.36347 -2.227673,2.04519 -3.956106,2.04519 c -1.728433,0 -3.050576,-0.68172 -3.96643,-2.04519 c -0.908978,-1.37034 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363457,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.96643,-2.05552"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path4602"
inkscape:connector-curvature="0" />
<path
d="M 59.820516,361 L 62,361 L 62,363.62362 L 59.820516,363.62362 L 59.820516,361"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 59.820516,361 L 62,361 l 0,2.62362 l -2.179484,0 l 0,-2.62362"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path4604"
inkscape:connector-curvature="0" />
<path
d="M 71.017419,349.57585 C 69.943183,349.57586 69.134053,350.1061 68.590049,351.16656 C 68.05292,352.22015 67.784366,353.80741 67.784366,355.92833 C 67.784366,358.0424 68.05292,359.62965 68.590049,360.69012 C 69.134053,361.7437 69.943183,362.27049 71.017419,362.27049 C 72.098551,362.27049 72.907661,361.7437 73.44479,360.69012 C 73.988793,359.62965 74.260795,358.0424 74.260816,355.92833 C 74.260795,353.80741 73.988793,352.22015 73.44479,351.16656 C 72.907661,350.1061 72.098551,349.57586 71.017419,349.57585 M 71.017419,347.92317 C 72.745852,347.92319 74.064547,348.60836 74.973526,349.97869 C 75.88938,351.34217 76.347306,353.32538 76.347306,355.92833 C 76.347306,358.52442 75.88938,360.50764 74.973526,361.87798 C 74.064547,363.24145 72.745852,363.92317 71.017419,363.92317 C 69.288987,363.92317 67.966844,363.24145 67.05099,361.87798 C 66.142032,360.50764 65.687532,358.52442 65.687532,355.92833 C 65.687532,353.32538 66.142032,351.34217 67.05099,349.97869 C 67.966844,348.60836 69.288987,347.92319 71.017419,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 71.017419,349.57585 c -1.074236,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76177 c 0,2.11407 0.268554,3.70132 0.805683,4.76179 c 0.544004,1.05358 1.353134,1.58037 2.42737,1.58037 c 1.081132,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544003,-1.06047 0.816005,-2.64772 0.816026,-4.76179 c -2.1e-5,-2.12092 -0.272023,-3.70818 -0.816026,-4.76177 c -0.537129,-1.06046 -1.346239,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728433,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915854,1.36348 1.37378,3.34669 1.37378,5.94964 c 0,2.59609 -0.457926,4.57931 -1.37378,5.94965 c -0.908979,1.36347 -2.227674,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050575,-0.68172 -3.966429,-2.04519 c -0.908958,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.4545,-4.58616 1.363458,-5.94964 c 0.915854,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path4606"
inkscape:connector-curvature="0" />
<path
d="M 84.486758,349.57585 C 83.412523,349.57586 82.603392,350.1061 82.059388,351.16656 C 81.52226,352.22015 81.253706,353.80741 81.253706,355.92833 C 81.253706,358.0424 81.52226,359.62965 82.059388,360.69012 C 82.603392,361.7437 83.412523,362.27049 84.486758,362.27049 C 85.567891,362.27049 86.377,361.7437 86.914129,360.69012 C 87.458133,359.62965 87.730134,358.0424 87.730134,355.92833 C 87.730134,353.80741 87.458133,352.22015 86.914129,351.16656 C 86.377,350.1061 85.567891,349.57586 84.486758,349.57585 M 84.486758,347.92317 C 86.21517,347.92319 87.533886,348.60836 88.442865,349.97869 C 89.358718,351.34217 89.816646,353.32538 89.816646,355.92833 C 89.816646,358.52442 89.358718,360.50764 88.442865,361.87798 C 87.533886,363.24145 86.21517,363.92317 84.486758,363.92317 C 82.758326,363.92317 81.436182,363.24145 80.520329,361.87798 C 79.61135,360.50764 79.156871,358.52442 79.156871,355.92833 C 79.156871,353.32538 79.61135,351.34217 80.520329,349.97869 C 81.436182,348.60836 82.758326,347.92319 84.486758,347.92317"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 84.486758,349.57585 c -1.074235,10e-6 -1.883366,0.53025 -2.42737,1.59071 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76177 c 0,2.11407 0.268554,3.70132 0.805682,4.76179 c 0.544004,1.05358 1.353135,1.58037 2.42737,1.58037 c 1.081133,0 1.890242,-0.52679 2.427371,-1.58037 c 0.544004,-1.06047 0.816005,-2.64772 0.816005,-4.76179 c 0,-2.12092 -0.272001,-3.70818 -0.816005,-4.76177 c -0.537129,-1.06046 -1.346238,-1.5907 -2.427371,-1.59071 m 0,-1.65268 c 1.728412,2e-5 3.047128,0.68519 3.956107,2.05552 c 0.915853,1.36348 1.373781,3.34669 1.373781,5.94964 c 0,2.59609 -0.457928,4.57931 -1.373781,5.94965 c -0.908979,1.36347 -2.227695,2.04519 -3.956107,2.04519 c -1.728432,0 -3.050576,-0.68172 -3.966429,-2.04519 c -0.908979,-1.37034 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60295 0.454479,-4.58616 1.363458,-5.94964 c 0.915853,-1.37033 2.237997,-2.0555 3.966429,-2.05552"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path4608"
inkscape:connector-curvature="0" />
</g>
</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"
height="40"
width="100"
id="warning-low-voltage"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" />
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" />
<g
id="g8656"
transform="matrix(0.98684211,0,0,0.98684211,4.3808609,3.1578932)">
<path
inkscape:connector-curvature="0"
id="path6483"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 34.816055,309.65268 C 33.74182,309.65269 32.932689,310.18292 32.388685,311.24338 C 31.851578,312.29697 31.583003,313.88423 31.583003,316.00516 C 31.583003,318.11922 31.851578,319.70648 32.388685,320.76694 C 32.932689,321.82052 33.74182,322.34732 34.816055,322.34732 C 35.897188,322.34732 36.706318,321.82052 37.243447,320.76694 C 37.787429,319.70648 38.059431,318.11922 38.059452,316.00516 C 38.059431,313.88423 37.787429,312.29697 37.243447,311.24338 C 36.706318,310.18292 35.897188,309.65269 34.816055,309.65268 M 34.816055,308 C 36.544488,308.00001 37.863183,308.68518 38.772162,310.05552 C 39.688016,311.41899 40.145942,313.4022 40.145964,316.00516 C 40.145942,318.60125 39.688016,320.58446 38.772162,321.95481 C 37.863183,323.31827 36.544488,323.99999 34.816055,324 C 33.087644,323.99999 31.7655,323.31827 30.849626,321.95481 C 29.940668,320.58446 29.486168,318.60125 29.486168,316.00516 C 29.486168,313.4022 29.940668,311.41899 30.849626,310.05552 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 34.816055,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537107,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268575,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890263,-0.5268 2.427392,-1.58038 c 0.543982,-1.06046 0.815984,-2.64772 0.816005,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346259,-1.59069 -2.427392,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.373802,5.94964 c -2.2e-5,2.59609 -0.457948,4.5793 -1.373802,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728411,-10e-6 -3.050555,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 C 31.7655,308.68518 33.087644,308.00001 34.816055,308" />
<path
inkscape:connector-curvature="0"
id="path6485"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 48.285395,309.65268 C 47.211158,309.65269 46.402028,310.18292 45.858024,311.24338 C 45.320896,312.29697 45.052342,313.88423 45.052342,316.00516 C 45.052342,318.11922 45.320896,319.70648 45.858024,320.76694 C 46.402028,321.82052 47.211158,322.34732 48.285395,322.34732 C 49.366527,322.34732 50.175636,321.82052 50.712765,320.76694 C 51.256769,319.70648 51.528771,318.11922 51.528792,316.00516 C 51.528771,313.88423 51.256769,312.29697 50.712765,311.24338 C 50.175636,310.18292 49.366527,309.65269 48.285395,309.65268 M 48.285395,308 C 50.013828,308.00001 51.332523,308.68518 52.241501,310.05552 C 53.157355,311.41899 53.615282,313.4022 53.615282,316.00516 C 53.615282,318.60125 53.157355,320.58446 52.241501,321.95481 C 51.332523,323.31827 50.013828,323.99999 48.285395,324 C 46.556962,323.99999 45.234819,323.31827 44.318965,321.95481 C 43.409987,320.58446 42.955508,318.60125 42.955508,316.00516 C 42.955508,313.4022 43.409987,311.41899 44.318965,310.05552 C 45.234819,308.68518 46.556962,308.00001 48.285395,308" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 48.285395,309.65268 c -1.074237,1e-5 -1.883367,0.53024 -2.427371,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.427371,1.58038 c 1.081132,0 1.890241,-0.5268 2.42737,-1.58038 c 0.544004,-1.06046 0.816006,-2.64772 0.816027,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816027,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.42737,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956106,2.05552 c 0.915854,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457927,4.5793 -1.373781,5.94965 c -0.908978,1.36346 -2.227673,2.04518 -3.956106,2.04519 c -1.728433,-10e-6 -3.050576,-0.68173 -3.96643,-2.04519 c -0.908978,-1.37035 -1.363457,-3.35356 -1.363457,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363457,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.96643,-2.05552" />
<path
inkscape:connector-curvature="0"
id="path6487"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 57.29249,321.07682 L 59.471974,321.07682 L 59.471974,323.70044 L 57.29249,323.70044 L 57.29249,321.07682" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 57.29249,321.07682 l 2.179484,0 l 0,2.62362 l -2.179484,0 l 0,-2.62362" />
<path
inkscape:connector-curvature="0"
id="path6489"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 68.489393,309.65268 C 67.415157,309.65269 66.606027,310.18292 66.062023,311.24338 C 65.524894,312.29697 65.25634,313.88423 65.25634,316.00516 C 65.25634,318.11922 65.524894,319.70648 66.062023,320.76694 C 66.606027,321.82052 67.415157,322.34732 68.489393,322.34732 C 69.570525,322.34732 70.379635,321.82052 70.916764,320.76694 C 71.460767,319.70648 71.732769,318.11922 71.73279,316.00516 C 71.732769,313.88423 71.460767,312.29697 70.916764,311.24338 C 70.379635,310.18292 69.570525,309.65269 68.489393,309.65268 M 68.489393,308 C 70.217826,308.00001 71.536521,308.68518 72.4455,310.05552 C 73.361354,311.41899 73.81928,313.4022 73.81928,316.00516 C 73.81928,318.60125 73.361354,320.58446 72.4455,321.95481 C 71.536521,323.31827 70.217826,323.99999 68.489393,324 C 66.760961,323.99999 65.438818,323.31827 64.522964,321.95481 C 63.614006,320.58446 63.159506,318.60125 63.159506,316.00516 C 63.159506,313.4022 63.614006,311.41899 64.522964,310.05552 C 65.438818,308.68518 66.760961,308.00001 68.489393,308" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 68.489393,309.65268 c -1.074236,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537129,1.05359 -0.805683,2.64085 -0.805683,4.76178 c 0,2.11406 0.268554,3.70132 0.805683,4.76178 c 0.544004,1.05358 1.353134,1.58038 2.42737,1.58038 c 1.081132,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544003,-1.06046 0.816005,-2.64772 0.816026,-4.76178 c -2.1e-5,-2.12093 -0.272023,-3.70819 -0.816026,-4.76178 c -0.537129,-1.06046 -1.346239,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728433,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915854,1.36347 1.37378,3.34668 1.37378,5.94964 c 0,2.59609 -0.457926,4.5793 -1.37378,5.94965 c -0.908979,1.36346 -2.227674,2.04518 -3.956107,2.04519 c -1.728432,-10e-6 -3.050575,-0.68173 -3.966429,-2.04519 c -0.908958,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.4545,-4.58617 1.363458,-5.94964 c 0.915854,-1.37034 2.237997,-2.05551 3.966429,-2.05552" />
<path
inkscape:connector-curvature="0"
id="path6491"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="M 81.958732,309.65268 C 80.884497,309.65269 80.075366,310.18292 79.531362,311.24338 C 78.994234,312.29697 78.72568,313.88423 78.72568,316.00516 C 78.72568,318.11922 78.994234,319.70648 79.531362,320.76694 C 80.075366,321.82052 80.884497,322.34732 81.958732,322.34732 C 83.039865,322.34732 83.848974,321.82052 84.386103,320.76694 C 84.930107,319.70648 85.202108,318.11922 85.202108,316.00516 C 85.202108,313.88423 84.930107,312.29697 84.386103,311.24338 C 83.848974,310.18292 83.039865,309.65269 81.958732,309.65268 M 81.958732,308 C 83.687144,308.00001 85.00586,308.68518 85.914839,310.05552 C 86.830692,311.41899 87.28862,313.4022 87.28862,316.00516 C 87.28862,318.60125 86.830692,320.58446 85.914839,321.95481 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 C 80.2303,323.99999 78.908156,323.31827 77.992303,321.95481 C 77.083324,320.58446 76.628845,318.60125 76.628845,316.00516 C 76.628845,313.4022 77.083324,311.41899 77.992303,310.05552 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
d="m 81.958732,309.65268 c -1.074235,1e-5 -1.883366,0.53024 -2.42737,1.5907 c -0.537128,1.05359 -0.805682,2.64085 -0.805682,4.76178 c 0,2.11406 0.268554,3.70132 0.805682,4.76178 c 0.544004,1.05358 1.353135,1.58038 2.42737,1.58038 c 1.081133,0 1.890242,-0.5268 2.427371,-1.58038 c 0.544004,-1.06046 0.816005,-2.64772 0.816005,-4.76178 c 0,-2.12093 -0.272001,-3.70819 -0.816005,-4.76178 c -0.537129,-1.06046 -1.346238,-1.59069 -2.427371,-1.5907 m 0,-1.65268 c 1.728412,10e-6 3.047128,0.68518 3.956107,2.05552 c 0.915853,1.36347 1.373781,3.34668 1.373781,5.94964 c 0,2.59609 -0.457928,4.5793 -1.373781,5.94965 C 85.00586,323.31827 83.687144,323.99999 81.958732,324 c -1.728432,-10e-6 -3.050576,-0.68173 -3.966429,-2.04519 c -0.908979,-1.37035 -1.363458,-3.35356 -1.363458,-5.94965 c 0,-2.60296 0.454479,-4.58617 1.363458,-5.94964 C 78.908156,308.68518 80.2303,308.00001 81.958732,308" />
</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"
style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="rect8665"
width="100"
height="40"
@ -2038,28 +2077,28 @@
transform="matrix(0.98684211,0,0,0.98684211,0.81578918,4.2105244)"
id="g8667">
<path
d="M 30.733386,403.38025 L 30.733386,401.47967 C 31.256722,401.72757 31.786954,401.91694 32.324083,402.04778 C 32.86119,402.17861 33.387996,402.24403 33.904456,402.24403 C 35.281686,402.24403 36.331827,401.78266 37.05488,400.85991 C 37.784809,399.93028 38.201422,398.52206 38.304718,396.63524 C 37.905304,397.22747 37.399166,397.68196 36.786305,397.99871 C 36.173445,398.31548 35.495153,398.47386 34.751453,398.47386 C 33.208945,398.47386 31.986651,398.00904 31.084568,397.0794 C 30.189361,396.1429 29.741778,394.86551 29.741778,393.24725 C 29.741778,391.66345 30.210029,390.39295 31.14655,389.43577 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 C 36.669238,388.00002 38.029268,388.68519 38.96579,390.05552 C 39.909187,391.419 40.380885,393.4022 40.380885,396.00516 C 40.380885,398.43598 39.802442,400.37788 38.645577,401.83085 C 37.495588,403.27695 35.946205,404 33.99743,404 C 33.474072,404 32.94384,403.9484 32.406711,403.84507 C 31.869582,403.74177 31.311807,403.58684 30.733386,403.38025 M 34.885741,396.84184 C 35.822241,396.84185 36.562514,396.52164 37.106518,395.88122 C 37.657397,395.24082 37.932847,394.36283 37.932868,393.24726 C 37.932847,392.1386 37.657397,391.26406 37.106518,390.62364 C 36.562514,389.97635 35.822241,389.6527 34.885741,389.65268 C 33.949219,389.6527 33.205497,389.97635 32.654619,390.62364 C 32.110614,391.26406 31.838613,392.1386 31.838613,393.24726 C 31.838613,394.36283 32.110614,395.24082 32.654619,395.88122 C 33.205497,396.52164 33.949219,396.84185 34.885741,396.84184"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 30.733386,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518413,1.36347 c -0.61286,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764802,-0.46482 -3.666885,-1.39446 c -0.895207,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.468251,-2.8543 1.404772,-3.81148 C 32.083072,388.4786 33.329462,388.00002 34.885741,388 c 1.783497,2e-5 3.143527,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 37.495588,403.27695 35.946205,404 33.99743,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676773,-0.3202 2.220777,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.82635,-2.63396 c -2.1e-5,-1.10866 -0.275471,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680244,0.32367 -2.231122,0.97096 c -0.544005,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272001,1.99356 0.816006,2.63396 c 0.550878,0.64042 1.2946,0.96063 2.231122,0.96062"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path8669"
inkscape:connector-curvature="0" />
<path
d="M 44.202704,403.38025 L 44.202704,401.47967 C 44.726061,401.72757 45.256294,401.91694 45.793422,402.04778 C 46.330529,402.17861 46.857314,402.24403 47.373796,402.24403 C 48.751025,402.24403 49.801145,401.78266 50.52422,400.85991 C 51.254127,399.93028 51.67074,398.52206 51.774057,396.63524 C 51.374644,397.22747 50.868506,397.68196 50.255645,397.99871 C 49.642784,398.31548 48.964493,398.47386 48.220792,398.47386 C 46.678285,398.47386 45.45599,398.00904 44.553908,397.0794 C 43.6587,396.1429 43.211096,394.86551 43.211096,393.24725 C 43.211096,391.66345 43.679368,390.39295 44.615889,389.43577 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 C 50.138577,388.00002 51.498586,388.68519 52.435129,390.05552 C 53.378505,391.419 53.850224,393.4022 53.850224,396.00516 C 53.850224,398.43598 53.271782,400.37788 52.114917,401.83085 C 50.964906,403.27695 49.415523,404 47.466748,404 C 46.94339,404 46.413158,403.9484 45.876051,403.84507 C 45.338922,403.74177 44.781147,403.58684 44.202704,403.38025 M 48.355059,396.84184 C 49.291581,396.84185 50.031832,396.52164 50.575857,395.88122 C 51.126736,395.24082 51.402186,394.36283 51.402186,393.24726 C 51.402186,392.1386 51.126736,391.26406 50.575857,390.62364 C 50.031832,389.97635 49.291581,389.6527 48.355059,389.65268 C 47.418537,389.6527 46.674837,389.97635 46.123958,390.62364 C 45.579933,391.26406 45.307931,392.1386 45.307952,393.24726 C 45.307931,394.36283 45.579933,395.24082 46.123958,395.88122 C 46.674837,396.52164 47.418537,396.84185 48.355059,396.84184"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 44.202704,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590718,0.56811 c 0.537107,0.13083 1.063892,0.19625 1.580374,0.19625 c 1.377229,0 2.427349,-0.46137 3.150424,-1.38412 c 0.729907,-0.92963 1.14652,-2.33785 1.249837,-4.22467 c -0.399413,0.59223 -0.905551,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034853,0.47515 c -1.542507,0 -2.764802,-0.46482 -3.666884,-1.39446 c -0.895208,-0.9365 -1.342812,-2.21389 -1.342812,-3.83215 c 0,-1.5838 0.468272,-2.8543 1.404793,-3.81148 C 45.55239,388.4786 46.798801,388.00002 48.355059,388 c 1.783518,2e-5 3.143527,0.68519 4.08007,2.05552 c 0.943376,1.36348 1.415095,3.34668 1.415095,5.94964 c 0,2.43082 -0.578442,4.37272 -1.735307,5.82569 C 50.964906,403.27695 49.415523,404 47.466748,404 c -0.523358,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537129,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936522,1e-5 1.676773,-0.3202 2.220798,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284276,-0.97094 -2.220798,-0.97096 c -0.936522,2e-5 -1.680222,0.32367 -2.231101,0.97096 c -0.544025,0.64042 -0.816027,1.51496 -0.816006,2.62362 c -2.1e-5,1.11557 0.271981,1.99356 0.816006,2.63396 c 0.550879,0.64042 1.294579,0.96063 2.231101,0.96062"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path8671"
inkscape:connector-curvature="0" />
<path
d="M 57.672043,403.38025 L 57.672043,401.47967 C 58.1954,401.72757 58.725633,401.91694 59.262741,402.04778 C 59.799869,402.17861 60.326653,402.24403 60.843135,402.24403 C 62.220342,402.24403 63.270485,401.78266 63.993538,400.85991 C 64.723467,399.93028 65.140079,398.52206 65.243375,396.63524 C 64.843982,397.22747 64.337846,397.68196 63.724984,397.99871 C 63.112102,398.31548 62.433811,398.47386 61.690132,398.47386 C 60.147624,398.47386 58.925329,398.00904 58.023246,397.0794 C 57.128039,396.1429 56.680436,394.86551 56.680436,393.24725 C 56.680436,391.66345 57.148707,390.39295 58.085207,389.43577 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 C 63.607917,388.00002 64.967926,388.68519 65.904447,390.05552 C 66.847844,391.419 67.319542,393.4022 67.319564,396.00516 C 67.319542,398.43598 66.741121,400.37788 65.584256,401.83085 C 64.434246,403.27695 62.884862,404 60.936087,404 C 60.41273,404 59.882497,403.9484 59.34539,403.84507 C 58.808262,403.74177 58.250486,403.58684 57.672043,403.38025 M 61.824398,396.84184 C 62.760919,396.84185 63.501172,396.52164 64.045197,395.88122 C 64.596076,395.24082 64.871526,394.36283 64.871526,393.24726 C 64.871526,392.1386 64.596076,391.26406 64.045197,390.62364 C 63.501172,389.97635 62.760919,389.6527 61.824398,389.65268 C 60.887877,389.6527 60.144176,389.97635 59.593276,390.62364 C 59.049272,391.26406 58.77727,392.1386 58.77727,393.24726 C 58.77727,394.36283 59.049272,395.24082 59.593276,395.88122 C 60.144176,396.52164 60.887877,396.84185 61.824398,396.84184"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 57.672043,403.38025 l 0,-1.90058 c 0.523357,0.2479 1.05359,0.43727 1.590698,0.56811 c 0.537128,0.13083 1.063912,0.19625 1.580394,0.19625 c 1.377207,0 2.42735,-0.46137 3.150403,-1.38412 c 0.729929,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399393,0.59223 -0.905529,1.04672 -1.518391,1.36347 c -0.612882,0.31677 -1.291173,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.34281,-2.21389 -1.34281,-3.83215 c 0,-1.5838 0.468271,-2.8543 1.404771,-3.81148 C 59.021729,388.4786 60.268119,388.00002 61.824398,388 c 1.783519,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415095,3.34668 1.415117,5.94964 c -2.2e-5,2.43082 -0.578443,4.37272 -1.735308,5.82569 C 64.434246,403.27695 62.884862,404 60.936087,404 c -0.523357,0 -1.05359,-0.0516 -1.590697,-0.15493 c -0.537128,-0.1033 -1.094904,-0.25823 -1.673347,-0.46482 m 4.152355,-6.53841 c 0.936521,1e-5 1.676774,-0.3202 2.220799,-0.96062 c 0.550879,-0.6404 0.826329,-1.51839 0.826329,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.826329,-2.62362 c -0.544025,-0.64729 -1.284278,-0.97094 -2.220799,-0.97096 c -0.936521,2e-5 -1.680222,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816006,1.51496 -0.816006,2.62362 c 0,1.11557 0.272002,1.99356 0.816006,2.63396 c 0.5509,0.64042 1.294601,0.96063 2.231122,0.96062"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path8673"
inkscape:connector-curvature="0" />
<path
d="M 71.141382,403.38025 L 71.141382,401.47967 C 71.664718,401.72757 72.194951,401.91694 72.732079,402.04778 C 73.269208,402.17861 73.795992,402.24403 74.312454,402.24403 C 75.689682,402.24403 76.739823,401.78266 77.462878,400.85991 C 78.192806,399.93028 78.609419,398.52206 78.712715,396.63524 C 78.313301,397.22747 77.807184,397.68196 77.194324,397.99871 C 76.581441,398.31548 75.90315,398.47386 75.15945,398.47386 C 73.616942,398.47386 72.394669,398.00904 71.492565,397.0794 C 70.597379,396.1429 70.149775,394.86551 70.149775,393.24725 C 70.149775,391.66345 70.618025,390.39295 71.554547,389.43577 C 72.491069,388.4786 73.737459,388.00002 75.293737,388 C 77.077235,388.00002 78.437265,388.68519 79.373787,390.05552 C 80.317183,391.419 80.788882,393.4022 80.788903,396.00516 C 80.788882,398.43598 80.210439,400.37788 79.053574,401.83085 C 77.903584,403.27695 76.354202,404 74.405426,404 C 73.88207,404 73.351837,403.9484 72.814709,403.84507 C 72.277601,403.74177 71.719826,403.58684 71.141382,403.38025 M 75.293737,396.84184 C 76.230238,396.84185 76.970511,396.52164 77.514515,395.88122 C 78.065415,395.24082 78.340865,394.36283 78.340865,393.24726 C 78.340865,392.1386 78.065415,391.26406 77.514515,390.62364 C 76.970511,389.97635 76.230238,389.6527 75.293737,389.65268 C 74.357215,389.6527 73.613516,389.97635 73.062615,390.62364 C 72.518612,391.26406 72.24661,392.1386 72.24661,393.24726 C 72.24661,394.36283 72.518612,395.24082 73.062615,395.88122 C 73.613516,396.52164 74.357215,396.84185 75.293737,396.84184"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 71.141382,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053569,0.43727 1.590697,0.56811 c 0.537129,0.13083 1.063913,0.19625 1.580375,0.19625 c 1.377228,0 2.427369,-0.46137 3.150424,-1.38412 c 0.729928,-0.92963 1.146541,-2.33785 1.249837,-4.22467 c -0.399414,0.59223 -0.905531,1.04672 -1.518391,1.36347 c -0.612883,0.31677 -1.291174,0.47515 -2.034874,0.47515 c -1.542508,0 -2.764781,-0.46482 -3.666885,-1.39446 c -0.895186,-0.9365 -1.34279,-2.21389 -1.34279,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404772,-3.81148 c 0.936522,-0.95717 2.182912,-1.43575 3.73919,-1.43577 c 1.783498,2e-5 3.143528,0.68519 4.08005,2.05552 c 0.943396,1.36348 1.415095,3.34668 1.415116,5.94964 c -2.1e-5,2.43082 -0.578464,4.37272 -1.735329,5.82569 C 77.903584,403.27695 76.354202,404 74.405426,404 c -0.523356,0 -1.053589,-0.0516 -1.590717,-0.15493 c -0.537108,-0.1033 -1.094883,-0.25823 -1.673327,-0.46482 m 4.152355,-6.53841 c 0.936501,1e-5 1.676774,-0.3202 2.220778,-0.96062 c 0.5509,-0.6404 0.82635,-1.51839 0.82635,-2.63396 c 0,-1.10866 -0.27545,-1.9832 -0.82635,-2.62362 c -0.544004,-0.64729 -1.284277,-0.97094 -2.220778,-0.97096 c -0.936522,2e-5 -1.680221,0.32367 -2.231122,0.97096 c -0.544003,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272002,1.99356 0.816005,2.63396 c 0.550901,0.64042 1.2946,0.96063 2.231122,0.96062"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path8675"
inkscape:connector-curvature="0" />
<path
d="M 84.610722,403.38025 L 84.610722,401.47967 C 85.134058,401.72757 85.66429,401.91694 86.201419,402.04778 C 86.738526,402.17861 87.265332,402.24403 87.781792,402.24403 C 89.159022,402.24403 90.209163,401.78266 90.932216,400.85991 C 91.662145,399.93028 92.078758,398.52206 92.182054,396.63524 C 91.78264,397.22747 91.276502,397.68196 90.663642,397.99871 C 90.050781,398.31548 89.37249,398.47386 88.62879,398.47386 C 87.086282,398.47386 85.863987,398.00904 84.961904,397.0794 C 84.066697,396.1429 83.619115,394.86551 83.619115,393.24725 C 83.619115,391.66345 84.087365,390.39295 85.023886,389.43577 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 C 90.546574,388.00002 91.906605,388.68519 92.843126,390.05552 C 93.786523,391.419 94.258222,393.4022 94.258222,396.00516 C 94.258222,398.43598 93.679778,400.37788 92.522914,401.83085 C 91.372924,403.27695 89.823542,404 87.874766,404 C 87.351408,404 86.821176,403.9484 86.284047,403.84507 C 85.746919,403.74177 85.189144,403.58684 84.610722,403.38025 M 88.763077,396.84184 C 89.699577,396.84185 90.439851,396.52164 90.983854,395.88122 C 91.534734,395.24082 91.810183,394.36283 91.810205,393.24726 C 91.810183,392.1386 91.534734,391.26406 90.983854,390.62364 C 90.439851,389.97635 89.699577,389.6527 88.763077,389.65268 C 87.826555,389.6527 87.082834,389.97635 86.531955,390.62364 C 85.987951,391.26406 85.71595,392.1386 85.71595,393.24726 C 85.71595,394.36283 85.987951,395.24082 86.531955,395.88122 C 87.082834,396.52164 87.826555,396.84185 88.763077,396.84184"
style="font-size:10px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
d="m 84.610722,403.38025 l 0,-1.90058 c 0.523336,0.2479 1.053568,0.43727 1.590697,0.56811 c 0.537107,0.13083 1.063913,0.19625 1.580373,0.19625 c 1.37723,0 2.427371,-0.46137 3.150424,-1.38412 c 0.729929,-0.92963 1.146542,-2.33785 1.249838,-4.22467 c -0.399414,0.59223 -0.905552,1.04672 -1.518412,1.36347 c -0.612861,0.31677 -1.291152,0.47515 -2.034852,0.47515 c -1.542508,0 -2.764803,-0.46482 -3.666886,-1.39446 c -0.895207,-0.9365 -1.342789,-2.21389 -1.342789,-3.83215 c 0,-1.5838 0.46825,-2.8543 1.404771,-3.81148 C 85.960408,388.4786 87.206798,388.00002 88.763077,388 c 1.783497,2e-5 3.143528,0.68519 4.080049,2.05552 c 0.943397,1.36348 1.415096,3.34668 1.415096,5.94964 c 0,2.43082 -0.578444,4.37272 -1.735308,5.82569 C 91.372924,403.27695 89.823542,404 87.874766,404 c -0.523358,0 -1.05359,-0.0516 -1.590719,-0.15493 c -0.537128,-0.1033 -1.094903,-0.25823 -1.673325,-0.46482 m 4.152355,-6.53841 c 0.9365,1e-5 1.676774,-0.3202 2.220777,-0.96062 c 0.55088,-0.6404 0.826329,-1.51839 0.826351,-2.63396 c -2.2e-5,-1.10866 -0.275471,-1.9832 -0.826351,-2.62362 c -0.544003,-0.64729 -1.284277,-0.97094 -2.220777,-0.97096 c -0.936522,2e-5 -1.680243,0.32367 -2.231122,0.97096 c -0.544004,0.64042 -0.816005,1.51496 -0.816005,2.62362 c 0,1.11557 0.272001,1.99356 0.816005,2.63396 c 0.550879,0.64042 1.2946,0.96063 2.231122,0.96062"
style="font-style:normal;font-weight:normal;font-size:10px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
id="path8677"
inkscape:connector-curvature="0" />
</g>
@ -2070,22 +2109,21 @@
inkscape:groupmode="layer"
id="layer59"
inkscape:label="system-panel"
style="display:none"
style="display:inline"
sodipodi:insensitive="true">
<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"
style="fill:#2c2929;fill-opacity:1;stroke:#ffffff;stroke-width:0.86202729;stroke-opacity:1"
d="M -1.8968835,306.712 C -4.6668835,306.712 -6.8968835,309.00575 -6.8968835,311.85494 L -6.8968835,455.85709 C -6.8968835,458.70627 -4.6668835,461.00002 -1.8968835,461.00002 L 150,461.00002 L 150,357.50853 L 163.99993,357.50853 C 166.76993,357.50853 168.99993,355.21478 168.99993,352.3656 L 168.99993,328.17313 C 168.99993,325.32395 166.77018,323.0302 163.99993,323.0302 L 149.99993,323.0302 L 150,311.85494 C 150.00002,309.00575 147.77,306.712 145,306.712 z"
d="m -1.8968835,306.712 c -2.77,0 -5,2.29375 -5,5.14294 l 0,144.00215 c 0,2.84918 2.23,5.14293 5,5.14293 l 151.8968835,0 l 0,-103.49149 l 13.99993,0 c 2.77,0 5,-2.29375 5,-5.14293 l 0,-24.19247 c 0,-2.84918 -2.22975,-5.14293 -5,-5.14293 l -14,0 L 150,311.85494 c 2e-5,-2.84919 -2.23,-5.14294 -5,-5.14294 z"
id="path3908-6"
inkscape:connector-curvature="0" />
<g
@ -2093,8 +2131,8 @@
transform="matrix(0.90669538,0,0,0.90669538,-8.4795829,48.599346)">
<path
inkscape:connector-curvature="0"
d="M 184.72982,317.12131 C 184.574,317.13191 184.42217,317.15621 184.26901,317.17371 L 184.25861,317.17358 L 183.89197,319.17396 C 183.29442,319.30999 182.73239,319.5409 182.22666,319.85469 L 180.58248,318.67126 C 180.138,319.0163 179.73351,319.41878 179.37807,319.85468 L 180.51982,321.51998 C 180.17306,322.04951 179.91236,322.65441 179.76558,323.28985 C 179.76575,323.29285 179.76563,323.29995 179.76545,323.30025 L 177.77558,323.61462 C 177.73918,323.91154 177.72318,324.21887 177.72318,324.52553 C 177.72318,324.77687 177.72918,325.02454 177.75458,325.2692 L 179.74445,325.62545 C 179.88598,326.31649 180.15483,326.96164 180.53,327.53137 L 179.34648,329.15479 C 179.6854,329.57571 180.07669,329.95878 180.4985,330.29626 L 182.17419,329.14439 C 182.75967,329.51775 183.4135,329.77984 184.12235,329.90885 L 184.43636,331.88816 C 184.65957,331.90866 184.88846,331.90926 185.11703,331.90926 C 185.43977,331.90926 185.74775,331.89676 186.05976,331.85696 L 186.43679,329.8354 C 187.10942,329.66817 187.74148,329.3776 188.29044,328.98716 L 189.90345,330.16015 C 190.3217,329.80423 190.70409,329.39536 191.03421,328.95565 L 189.86123,327.2592 C 190.17885,326.71053 190.39912,326.10531 190.51073,325.45783 L 192.49005,325.14347 C 192.50745,324.93702 192.51115,324.73661 192.51115,324.52547 C 192.51114,324.15884 192.46855,323.79923 192.41695,323.44699 L 190.40614,323.08036 C 190.24828,322.49856 189.98989,321.95563 189.66247,321.46767 L 190.84583,319.8442 C 190.47886,319.39555 190.0606,318.98115 189.59946,318.62933 L 187.89261,319.8023 C 187.40188,319.51226 186.8738,319.28945 186.30071,319.16344 L 185.98635,317.17355 C 185.70046,317.13985 185.41192,317.12115 185.117,317.12115 C 185.0372,317.12115 184.95546,317.11915 184.87636,317.12115 C 184.83746,317.12188 184.79966,317.11915 184.76108,317.12115 C 184.75068,317.12182 184.73988,317.1205 184.72958,317.12112 z M 185.00195,322.21104 C 185.04055,322.20904 185.07875,322.21106 185.11724,322.21105 C 186.35692,322.21105 187.36903,323.22317 187.36903,324.46285 C 187.36903,325.70253 186.35692,326.70391 185.11723,326.70391 C 183.87756,326.70425 182.87618,325.70253 182.87618,324.46285 C 182.87618,323.26171 183.8159,322.27138 185.00195,322.21105 z"
style="color:#000000;fill:url(#linearGradient5140);fill-opacity:1;stroke:#ffffff;stroke-width:0.66174376;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
d="m 184.72982,317.12131 c -0.15582,0.0106 -0.30765,0.0349 -0.46081,0.0524 l -0.0104,-1.3e-4 l -0.36664,2.00038 c -0.59755,0.13603 -1.15958,0.36694 -1.66531,0.68073 l -1.64418,-1.18343 c -0.44448,0.34504 -0.84897,0.74752 -1.20441,1.18342 l 1.14175,1.6653 c -0.34676,0.52953 -0.60746,1.13443 -0.75424,1.76987 c 1.7e-4,0.003 5e-5,0.0101 -1.3e-4,0.0104 l -1.98987,0.31437 c -0.0364,0.29692 -0.0524,0.60425 -0.0524,0.91091 c 0,0.25134 0.006,0.49901 0.0314,0.74367 l 1.98987,0.35625 c 0.14153,0.69104 0.41038,1.33619 0.78555,1.90592 l -1.18352,1.62342 c 0.33892,0.42092 0.73021,0.80399 1.15202,1.14147 l 1.67569,-1.15187 c 0.58548,0.37336 1.23931,0.63545 1.94816,0.76446 l 0.31401,1.97931 c 0.22321,0.0205 0.4521,0.0211 0.68067,0.0211 c 0.32274,0 0.63072,-0.0125 0.94273,-0.0523 l 0.37703,-2.02156 c 0.67263,-0.16723 1.30469,-0.4578 1.85365,-0.84824 l 1.61301,1.17299 c 0.41825,-0.35592 0.80064,-0.76479 1.13076,-1.2045 l -1.17298,-1.69645 c 0.31762,-0.54867 0.53789,-1.15389 0.6495,-1.80137 l 1.97932,-0.31436 c 0.0174,-0.20645 0.0211,-0.40686 0.0211,-0.618 c -10e-6,-0.36663 -0.0426,-0.72624 -0.0942,-1.07848 l -2.01081,-0.36663 c -0.15786,-0.5818 -0.41625,-1.12473 -0.74367,-1.61269 l 1.18336,-1.62347 c -0.36697,-0.44865 -0.78523,-0.86305 -1.24637,-1.21487 l -1.70685,1.17297 c -0.49073,-0.29004 -1.01881,-0.51285 -1.5919,-0.63886 l -0.31436,-1.98989 c -0.28589,-0.0337 -0.57443,-0.0524 -0.86935,-0.0524 c -0.0798,0 -0.16154,-0.002 -0.24064,0 c -0.0389,7.3e-4 -0.0767,-0.002 -0.11528,0 c -0.0104,6.7e-4 -0.0212,-6.5e-4 -0.0315,-3e-5 z m 0.27213,5.08973 c 0.0386,-0.002 0.0768,2e-5 0.11529,10e-6 c 1.23968,0 2.25179,1.01212 2.25179,2.2518 c 0,1.23968 -1.01211,2.24106 -2.2518,2.24106 c -1.23967,3.4e-4 -2.24105,-1.00138 -2.24105,-2.24106 c 0,-1.20114 0.93972,-2.19147 2.12577,-2.2518 z"
style="color:#000000;display:inline;fill:url(#linearGradient5140);fill-opacity:1;stroke:#ffffff;stroke-width:0.66174376;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3243" />
<g
id="g6988"
@ -2103,8 +2141,8 @@
<path
sodipodi:nodetypes="cccccccccccc"
id="path5119"
d="M -6075.2089,5056.1863 L -6101.7678,5041.1462 L -6078.4446,4955.0386 L -6137.4587,4922.8036 L -6267.6548,4978.071 L -6447.2307,4930.5585 L -6287.565,5038.7334 L -6225.1071,5188.2739 L -6144.1803,5214.7981 L -6118.7459,5119.1783 L -6093.663,5123.151 L -6075.2089,5056.1863 z"
style="opacity:0.74060148;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:7.68412066;stroke-miterlimit:4;stroke-opacity:0.4125;stroke-dasharray:none"
d="m -6075.2089,5056.1863 l -26.5589,-15.0401 l 23.3232,-86.1076 l -59.0141,-32.235 l -130.1961,55.2674 l -179.5759,-47.5125 l 159.6657,108.1749 l 62.4579,149.5405 l 80.9268,26.5242 l 25.4344,-95.6198 l 25.0829,3.9727 l 18.4541,-66.9647 z"
style="opacity:0.74060148;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:7.68412066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.4125"
inkscape:transform-center-x="-19.122561"
inkscape:transform-center-y="192.50793"
inkscape:export-filename="C:\Documents and Settings\t12\My Documents\My Dropbox\graphicswork\openpilot.org\textplay.png"
@ -2118,8 +2156,8 @@
inkscape:export-filename="C:\Documents and Settings\t12\My Documents\My Dropbox\graphicswork\openpilot.org\textplay.png"
inkscape:transform-center-y="192.50793"
inkscape:transform-center-x="-19.122561"
style="fill:#4e94f6;fill-opacity:1;stroke:#212122;stroke-width:7.68412066;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M -6085.1735,5043.4152 L -6111.7324,5028.3751 L -6088.4092,4942.2675 L -6147.4233,4910.0325 L -6277.6194,4965.2999 L -6457.1953,4917.7874 L -6297.5296,5025.9623 L -6235.0717,5175.5028 L -6154.1449,5202.027 L -6128.7105,5106.4072 L -6103.6276,5110.3799 L -6085.1735,5043.4152 z"
style="fill:#4e94f6;fill-opacity:1;stroke:#212122;stroke-width:7.68412066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -6085.1735,5043.4152 l -26.5589,-15.0401 l 23.3232,-86.1076 l -59.0141,-32.235 l -130.1961,55.2674 l -179.5759,-47.5125 l 159.6657,108.1749 l 62.4579,149.5405 l 80.9268,26.5242 l 25.4344,-95.6198 l 25.0829,3.9727 l 18.4541,-66.9647 z"
id="path6992"
sodipodi:nodetypes="cccccccccccc" />
</g>
@ -2128,33 +2166,33 @@
id="frame-label"
transform="translate(-0.82096087,24.266719)">
<path
d="M 5.1898856,297.7612 L 5.1898856,289.17136 L 10.984807,289.17136 L 10.984807,290.18503 L 6.3266044,290.18503 L 6.3266044,292.84518 L 10.357854,292.84518 L 10.357854,293.85886 L 6.3266044,293.85886 L 6.3266044,297.7612 L 5.1898856,297.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 5.1898856,297.7612 l 0,-8.58984 l 5.7949214,0 l 0,1.01367 l -4.6582026,0 l 0,2.66015 l 4.0312496,0 l 0,1.01368 l -4.0312496,0 l 0,3.90234 l -1.1367188,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11276"
inkscape:connector-curvature="0" />
<path
d="M 12.320745,297.7612 L 12.320745,291.53854 L 13.269964,291.53854 L 13.269964,292.4819 C 13.512149,292.0405 13.734805,291.74949 13.937932,291.60886 C 14.144961,291.46824 14.371523,291.39793 14.61762,291.39792 C 14.973085,291.39793 15.334413,291.51121 15.701604,291.73776 L 15.338323,292.71628 C 15.080507,292.56394 14.822695,292.48777 14.564886,292.48776 C 14.334414,292.48777 14.127383,292.55808 13.943792,292.6987 C 13.760196,292.83542 13.629337,293.02683 13.551214,293.27292 C 13.434024,293.64792 13.375431,294.05808 13.375432,294.50339 L 13.375432,297.7612 L 12.320745,297.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 12.320745,297.7612 l 0,-6.22266 l 0.949219,0 l 0,0.94336 c 0.242185,-0.4414 0.464841,-0.73241 0.667968,-0.87304 c 0.207029,-0.14062 0.433591,-0.21093 0.679688,-0.21094 c 0.355465,10e-6 0.716793,0.11329 1.083984,0.33984 l -0.363281,0.97852 c -0.257816,-0.15234 -0.515628,-0.22851 -0.773437,-0.22852 c -0.230472,1e-5 -0.437503,0.0703 -0.621094,0.21094 c -0.183596,0.13672 -0.314455,0.32813 -0.392578,0.57422 c -0.11719,0.375 -0.175783,0.78516 -0.175782,1.23047 l 0,3.25781 l -1.054687,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11278"
inkscape:connector-curvature="0" />
<path
d="M 20.400823,296.99362 C 20.010194,297.32565 19.633241,297.56003 19.269964,297.69675 C 18.910585,297.83347 18.523867,297.90182 18.109807,297.90182 C 17.426212,297.90182 16.900822,297.73581 16.533636,297.40378 C 16.166447,297.06784 15.982854,296.64011 15.982854,296.12057 C 15.982854,295.81589 16.051213,295.53855 16.187932,295.28854 C 16.328557,295.03464 16.510197,294.83152 16.732854,294.67917 C 16.959415,294.52683 17.213321,294.41159 17.494573,294.33347 C 17.701602,294.27878 18.014102,294.22605 18.432073,294.17526 C 19.283632,294.0737 19.910584,293.95261 20.312932,293.81198 C 20.316834,293.66745 20.318787,293.57566 20.318792,293.53659 C 20.318787,293.10691 20.219178,292.80417 20.019964,292.62839 C 19.750428,292.39011 19.350038,292.27097 18.818792,292.27097 C 18.322695,292.27097 17.955508,292.35886 17.717229,292.53464 C 17.482852,292.70652 17.309024,293.01316 17.195745,293.45456 L 16.164495,293.31393 C 16.258244,292.87253 16.412541,292.51706 16.627386,292.24753 C 16.842228,291.9741 17.152775,291.76511 17.559026,291.62057 C 17.965274,291.47214 18.435976,291.39793 18.971136,291.39792 C 19.502382,291.39793 19.934022,291.46043 20.266057,291.58542 C 20.598084,291.71042 20.842224,291.86863 20.998479,292.06003 C 21.154724,292.24753 21.264099,292.48581 21.326604,292.77487 C 21.361755,292.95456 21.379333,293.27878 21.379339,293.74753 L 21.379339,295.15378 C 21.379333,296.13425 21.400817,296.75534 21.443792,297.01706 C 21.490661,297.27487 21.580505,297.52292 21.713323,297.7612 L 20.611761,297.7612 C 20.502381,297.54245 20.432068,297.28659 20.400823,296.99362 M 20.312932,294.63815 C 19.930116,294.79441 19.355897,294.92722 18.590276,295.03659 C 18.15668,295.09909 17.85004,295.16941 17.670354,295.24753 C 17.490665,295.32566 17.351993,295.44089 17.254339,295.59323 C 17.156681,295.74167 17.107853,295.90769 17.107854,296.09128 C 17.107853,296.37253 17.213321,296.6069 17.424261,296.7944 C 17.639102,296.9819 17.951602,297.07565 18.361761,297.07565 C 18.768007,297.07565 19.129335,296.98776 19.445745,296.81198 C 19.762147,296.63229 19.994569,296.38815 20.143011,296.07956 C 20.256287,295.84128 20.312928,295.48972 20.312932,295.02487 L 20.312932,294.63815"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 20.400823,296.99362 c -0.390629,0.33203 -0.767582,0.56641 -1.130859,0.70313 c -0.359379,0.13672 -0.746097,0.20507 -1.160157,0.20507 c -0.683595,0 -1.208985,-0.16601 -1.576171,-0.49804 c -0.367189,-0.33594 -0.550782,-0.76367 -0.550782,-1.28321 c 0,-0.30468 0.06836,-0.58202 0.205078,-0.83203 c 0.140625,-0.2539 0.322265,-0.45702 0.544922,-0.60937 c 0.226561,-0.15234 0.480467,-0.26758 0.761719,-0.3457 c 0.207029,-0.0547 0.519529,-0.10742 0.9375,-0.15821 c 0.851559,-0.10156 1.478511,-0.22265 1.880859,-0.36328 c 0.0039,-0.14453 0.0059,-0.23632 0.0059,-0.27539 c -5e-6,-0.42968 -0.09961,-0.73242 -0.298828,-0.9082 c -0.269536,-0.23828 -0.669926,-0.35742 -1.201172,-0.35742 c -0.496097,0 -0.863284,0.0879 -1.101563,0.26367 c -0.234377,0.17188 -0.408205,0.47852 -0.521484,0.91992 l -1.03125,-0.14063 c 0.09375,-0.4414 0.248046,-0.79687 0.462891,-1.0664 c 0.214842,-0.27343 0.525389,-0.48242 0.93164,-0.62696 c 0.406248,-0.14843 0.87695,-0.22264 1.41211,-0.22265 c 0.531246,10e-6 0.962886,0.0625 1.294921,0.1875 c 0.332027,0.125 0.576167,0.28321 0.732422,0.47461 c 0.156245,0.1875 0.26562,0.42578 0.328125,0.71484 c 0.03515,0.17969 0.05273,0.50391 0.05274,0.97266 l 0,1.40625 c -6e-6,0.98047 0.02148,1.60156 0.06445,1.86328 c 0.04687,0.25781 0.136713,0.50586 0.269531,0.74414 l -1.101562,0 c -0.10938,-0.21875 -0.179693,-0.47461 -0.210938,-0.76758 m -0.08789,-2.35547 c -0.382816,0.15626 -0.957035,0.28907 -1.722656,0.39844 c -0.433596,0.0625 -0.740236,0.13282 -0.919922,0.21094 c -0.179689,0.0781 -0.318361,0.19336 -0.416015,0.3457 c -0.09766,0.14844 -0.146486,0.31446 -0.146485,0.49805 c -1e-6,0.28125 0.105467,0.51562 0.316407,0.70312 c 0.214841,0.1875 0.527341,0.28125 0.9375,0.28125 c 0.406246,0 0.767574,-0.0879 1.083984,-0.26367 c 0.316402,-0.17969 0.548824,-0.42383 0.697266,-0.73242 c 0.113276,-0.23828 0.169917,-0.58984 0.169921,-1.05469 l 0,-0.38672"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11280"
inkscape:connector-curvature="0" />
<path
d="M 23.019964,297.7612 L 23.019964,291.53854 L 23.963323,291.53854 L 23.963323,292.41159 C 24.158634,292.10691 24.418399,291.86277 24.74262,291.67917 C 25.066836,291.49167 25.435976,291.39793 25.850042,291.39792 C 26.310975,291.39793 26.687928,291.49363 26.980901,291.68503 C 27.277771,291.87644 27.486755,292.14402 27.607854,292.48776 C 28.100036,291.76121 28.74066,291.39793 29.529729,291.39792 C 30.146909,291.39793 30.621518,291.5698 30.953557,291.91354 C 31.28558,292.25339 31.451595,292.77878 31.451604,293.48972 L 31.451604,297.7612 L 30.402776,297.7612 L 30.402776,293.84128 C 30.402768,293.41941 30.367612,293.11667 30.297307,292.93307 C 30.230893,292.74558 30.107846,292.59519 29.928167,292.4819 C 29.748472,292.36863 29.537535,292.31199 29.295354,292.31198 C 28.857848,292.31199 28.494567,292.45847 28.205511,292.75143 C 27.916442,293.0405 27.771911,293.50534 27.771917,294.14597 L 27.771917,297.7612 L 26.717229,297.7612 L 26.717229,293.71823 C 26.717225,293.24949 26.631287,292.89792 26.459417,292.66354 C 26.287538,292.42917 26.006288,292.31199 25.615667,292.31198 C 25.318789,292.31199 25.043398,292.39011 24.789495,292.54636 C 24.539493,292.70261 24.357852,292.93113 24.244573,293.2319 C 24.13129,293.53269 24.074649,293.96628 24.074651,294.53268 L 24.074651,297.7612 L 23.019964,297.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 23.019964,297.7612 l 0,-6.22266 l 0.943359,0 l 0,0.87305 c 0.195311,-0.30468 0.455076,-0.54882 0.779297,-0.73242 c 0.324216,-0.1875 0.693356,-0.28124 1.107422,-0.28125 c 0.460933,10e-6 0.837886,0.0957 1.130859,0.28711 c 0.29687,0.19141 0.505854,0.45899 0.626953,0.80273 c 0.492182,-0.72655 1.132806,-1.08983 1.921875,-1.08984 c 0.61718,10e-6 1.091789,0.17188 1.423828,0.51562 c 0.332023,0.33985 0.498038,0.86524 0.498047,1.57618 l 0,4.27148 l -1.048828,0 l 0,-3.91992 c -8e-6,-0.42187 -0.03516,-0.72461 -0.105469,-0.90821 c -0.06641,-0.18749 -0.189461,-0.33788 -0.36914,-0.45117 c -0.179695,-0.11327 -0.390632,-0.16991 -0.632813,-0.16992 c -0.437506,10e-6 -0.800787,0.14649 -1.089843,0.43945 c -0.289069,0.28907 -0.4336,0.75391 -0.433594,1.39454 l 0,3.61523 l -1.054688,0 l 0,-4.04297 c -4e-6,-0.46874 -0.08594,-0.82031 -0.257812,-1.05469 c -0.171879,-0.23437 -0.453129,-0.35155 -0.84375,-0.35156 c -0.296878,10e-6 -0.572269,0.0781 -0.826172,0.23438 c -0.250002,0.15625 -0.431643,0.38477 -0.544922,0.68554 c -0.113283,0.30079 -0.169924,0.73438 -0.169922,1.30078 l 0,3.22852 l -1.054687,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11282"
inkscape:connector-curvature="0" />
<path
d="M 37.310979,295.75729 L 38.400823,295.89206 C 38.228942,296.52878 37.910583,297.02292 37.445745,297.37448 C 36.980897,297.72604 36.387147,297.90182 35.664495,297.90182 C 34.754336,297.90182 34.031681,297.62253 33.496526,297.06393 C 32.965276,296.50144 32.699651,295.71433 32.699651,294.70261 C 32.699651,293.65574 32.969182,292.84324 33.508245,292.26511 C 34.047306,291.68699 34.746524,291.39793 35.605901,291.39792 C 36.437928,291.39793 37.117615,291.68113 37.644964,292.24753 C 38.172302,292.81394 38.435973,293.61081 38.435979,294.63815 C 38.435973,294.70066 38.43402,294.79441 38.43012,294.9194 L 33.789495,294.9194 C 33.828556,295.603 34.021915,296.12644 34.369573,296.48972 C 34.717227,296.853 35.15082,297.03464 35.670354,297.03464 C 36.057069,297.03464 36.387147,296.93308 36.660589,296.72995 C 36.934022,296.52683 37.150818,296.20261 37.310979,295.75729 M 33.848089,294.05222 L 37.322698,294.05222 C 37.275818,293.52878 37.143006,293.1362 36.924261,292.87448 C 36.588319,292.46824 36.152772,292.26511 35.61762,292.26511 C 35.133242,292.26511 34.725039,292.42722 34.393011,292.75143 C 34.064884,293.07566 33.883243,293.50925 33.848089,294.05222"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 37.310979,295.75729 l 1.089844,0.13477 c -0.171881,0.63672 -0.49024,1.13086 -0.955078,1.48242 c -0.464848,0.35156 -1.058598,0.52734 -1.78125,0.52734 c -0.910159,0 -1.632814,-0.27929 -2.167969,-0.83789 c -0.53125,-0.56249 -0.796875,-1.3496 -0.796875,-2.36132 c 0,-1.04687 0.269531,-1.85937 0.808594,-2.4375 c 0.539061,-0.57812 1.238279,-0.86718 2.097656,-0.86719 c 0.832027,10e-6 1.511714,0.28321 2.039063,0.84961 c 0.527338,0.56641 0.791009,1.36328 0.791015,2.39062 c -6e-6,0.0625 -0.002,0.15626 -0.0059,0.28125 l -4.640625,0 c 0.03906,0.6836 0.23242,1.20704 0.580078,1.57032 c 0.347654,0.36328 0.781247,0.54492 1.300781,0.54492 c 0.386715,0 0.716793,-0.10156 0.990235,-0.30469 c 0.273433,-0.20312 0.490229,-0.52734 0.65039,-0.97266 m -3.46289,-1.70507 l 3.474609,0 c -0.04688,-0.52344 -0.179692,-0.91602 -0.398437,-1.17774 c -0.335942,-0.40624 -0.771489,-0.60937 -1.306641,-0.60937 c -0.484378,0 -0.892581,0.16211 -1.224609,0.48632 c -0.328127,0.32423 -0.509768,0.75782 -0.544922,1.30079"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11284"
inkscape:connector-curvature="0" />
<path
d="M 43.122745,292.73972 L 43.122745,291.53854 L 44.323917,291.53854 L 44.323917,292.73972 L 43.122745,292.73972 M 43.122745,297.7612 L 43.122745,296.56003 L 44.323917,296.56003 L 44.323917,297.7612 L 43.122745,297.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 43.122745,292.73972 l 0,-1.20118 l 1.201172,0 l 0,1.20118 l -1.201172,0 m 0,5.02148 l 0,-1.20117 l 1.201172,0 l 0,1.20117 l -1.201172,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11286"
inkscape:connector-curvature="0" />
</g>
@ -2162,23 +2200,23 @@
id="cpu-label"
transform="translate(-0.43424217,22.190022)">
<path
d="M 11.260198,309.74948 L 12.396917,310.03659 C 12.158628,310.97019 11.728941,311.68308 11.107854,312.17526 C 10.490661,312.66354 9.734802,312.90768 8.8402762,312.90768 C 7.9144913,312.90768 7.1605858,312.72018 6.5785575,312.34518 C 6.0004307,311.96628 5.5590249,311.4194 5.2543387,310.70456 C 4.9535567,309.98972 4.8031663,309.22214 4.8031669,308.40182 C 4.8031663,307.5073 4.973088,306.728 5.3129325,306.06393 C 5.656681,305.39597 6.1430087,304.89011 6.7719169,304.54636 C 7.4047262,304.19871 8.100038,304.02488 8.8578544,304.02487 C 9.7172239,304.02488 10.439879,304.24363 11.025823,304.68112 C 11.611753,305.11863 12.019956,305.73386 12.250432,306.52682 L 11.131292,306.7905 C 10.932066,306.1655 10.643004,305.71043 10.264104,305.42526 C 9.8851924,305.14011 9.4086304,304.99754 8.8344169,304.99753 C 8.1742566,304.99754 7.6215228,305.15574 7.1762137,305.47214 C 6.734805,305.78855 6.4242584,306.21433 6.2445731,306.74948 C 6.0648838,307.28074 5.9750401,307.82956 5.9750419,308.39597 C 5.9750401,309.12644 6.0805087,309.76511 6.2914481,310.31198 C 6.5062896,310.85495 6.8383205,311.2612 7.2875419,311.53073 C 7.7367571,311.80026 8.2230847,311.93503 8.7465262,311.93503 C 9.3832398,311.93503 9.9223018,311.75144 10.363714,311.38425 C 10.805113,311.01706 11.103941,310.47214 11.260198,309.74948"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 11.260198,309.74948 l 1.136719,0.28711 c -0.238289,0.9336 -0.667976,1.64649 -1.289063,2.13867 c -0.617193,0.48828 -1.373052,0.73242 -2.2675778,0.73242 c -0.9257849,0 -1.6796904,-0.1875 -2.2617187,-0.5625 c -0.5781268,-0.3789 -1.0195326,-0.92578 -1.3242188,-1.64062 c -0.300782,-0.71484 -0.4511724,-1.48242 -0.4511718,-2.30274 c -6e-7,-0.89452 0.1699211,-1.67382 0.5097656,-2.33789 c 0.3437485,-0.66796 0.8300762,-1.17382 1.4589844,-1.51757 c 0.6328093,-0.34765 1.3281211,-0.52148 2.0859375,-0.52149 c 0.8593695,10e-6 1.5820246,0.21876 2.1679686,0.65625 c 0.58593,0.43751 0.994133,1.05274 1.224609,1.8457 l -1.11914,0.26368 c -0.199226,-0.625 -0.488288,-1.08007 -0.867188,-1.36524 c -0.3789116,-0.28515 -0.8554736,-0.42772 -1.4296871,-0.42773 c -0.6601603,1e-5 -1.2128941,0.15821 -1.6582032,0.47461 c -0.4414087,0.31641 -0.7519553,0.74219 -0.9316406,1.27734 c -0.1796893,0.53126 -0.269533,1.08008 -0.2695312,1.64649 c -1.8e-6,0.73047 0.1054668,1.36914 0.3164062,1.91601 c 0.2148415,0.54297 0.5468724,0.94922 0.9960938,1.21875 c 0.4492152,0.26953 0.9355428,0.4043 1.4589843,0.4043 c 0.6367136,0 1.1757756,-0.18359 1.6171878,-0.55078 c 0.441399,-0.36719 0.740227,-0.91211 0.896484,-1.63477"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11298"
inkscape:connector-curvature="0" />
<path
d="M 13.803167,312.7612 L 13.803167,304.17136 L 17.043401,304.17136 C 17.613709,304.17136 18.049255,304.19871 18.350042,304.25339 C 18.771911,304.32371 19.125426,304.45847 19.410589,304.65768 C 19.695738,304.853 19.924254,305.1284 20.096136,305.48386 C 20.271909,305.83933 20.3598,306.22996 20.359807,306.65573 C 20.3598,307.38621 20.127378,308.00535 19.662542,308.51315 C 19.197692,309.01706 18.357849,309.26902 17.143011,309.26901 L 14.939886,309.26901 L 14.939886,312.7612 L 13.803167,312.7612 M 14.939886,308.25534 L 17.160589,308.25534 C 17.894959,308.25535 18.416443,308.11863 18.725042,307.84518 C 19.033629,307.57175 19.187926,307.18699 19.187932,306.69089 C 19.187926,306.33152 19.096129,306.02488 18.912542,305.77097 C 18.732849,305.51316 18.494567,305.34324 18.197698,305.2612 C 18.006287,305.21043 17.652771,305.18504 17.137151,305.18503 L 14.939886,305.18503 L 14.939886,308.25534"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 13.803167,312.7612 l 0,-8.58984 l 3.240234,0 c 0.570308,0 1.005854,0.0274 1.306641,0.082 c 0.421869,0.0703 0.775384,0.20508 1.060547,0.40429 c 0.285149,0.19532 0.513665,0.47072 0.685547,0.82618 c 0.175773,0.35547 0.263664,0.7461 0.263671,1.17187 c -7e-6,0.73048 -0.232429,1.34962 -0.697265,1.85742 c -0.46485,0.50391 -1.304693,0.75587 -2.519531,0.75586 l -2.203125,0 l 0,3.49219 l -1.136719,0 m 1.136719,-4.50586 l 2.220703,0 c 0.73437,10e-6 1.255854,-0.13671 1.564453,-0.41016 c 0.308587,-0.27343 0.462884,-0.65819 0.46289,-1.15429 c -6e-6,-0.35937 -0.0918,-0.66601 -0.27539,-0.91992 c -0.179693,-0.25781 -0.417975,-0.42773 -0.714844,-0.50977 c -0.191411,-0.0508 -0.544927,-0.0762 -1.060547,-0.0762 l -2.197265,0 l 0,3.07031"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11300"
inkscape:connector-curvature="0" />
<path
d="M 27.455511,304.17136 L 28.592229,304.17136 L 28.592229,309.13425 C 28.592222,309.99753 28.494566,310.68308 28.299261,311.19089 C 28.103941,311.6987 27.750426,312.11276 27.238714,312.43307 C 26.730895,312.74948 26.062927,312.90768 25.234807,312.90768 C 24.430116,312.90768 23.771914,312.76901 23.260198,312.49167 C 22.748478,312.21433 22.383244,311.81394 22.164495,311.2905 C 21.945744,310.76316 21.836369,310.04441 21.83637,309.13425 L 21.83637,304.17136 L 22.973089,304.17136 L 22.973089,309.12839 C 22.973087,309.87448 23.041446,310.42526 23.178167,310.78073 C 23.318789,311.1323 23.55707,311.40378 23.893011,311.59518 C 24.232851,311.78659 24.646913,311.88229 25.135198,311.88229 C 25.971131,311.88229 26.566833,311.69284 26.922307,311.31393 C 27.27777,310.93503 27.455504,310.20652 27.455511,309.12839 L 27.455511,304.17136"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 27.455511,304.17136 l 1.136718,0 l 0,4.96289 c -7e-6,0.86328 -0.09766,1.54883 -0.292968,2.05664 c -0.19532,0.50781 -0.548835,0.92187 -1.060547,1.24218 c -0.507819,0.31641 -1.175787,0.47461 -2.003907,0.47461 c -0.804691,0 -1.462893,-0.13867 -1.974609,-0.41601 c -0.51172,-0.27734 -0.876954,-0.67773 -1.095703,-1.20117 c -0.218751,-0.52734 -0.328126,-1.24609 -0.328125,-2.15625 l 0,-4.96289 l 1.136719,0 l 0,4.95703 c -2e-6,0.74609 0.06836,1.29687 0.205078,1.65234 c 0.140622,0.35157 0.378903,0.62305 0.714844,0.81445 c 0.33984,0.19141 0.753902,0.28711 1.242187,0.28711 c 0.835933,0 1.431635,-0.18945 1.787109,-0.56836 c 0.355463,-0.3789 0.533197,-1.10741 0.533204,-2.18554 l 0,-4.95703"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11302"
inkscape:connector-curvature="0" />
<path
d="M 42.736026,307.73972 L 42.736026,306.53854 L 43.937198,306.53854 L 43.937198,307.73972 L 42.736026,307.73972 M 42.736026,312.7612 L 42.736026,311.56003 L 43.937198,311.56003 L 43.937198,312.7612 L 42.736026,312.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 42.736026,307.73972 l 0,-1.20118 l 1.201172,0 l 0,1.20118 l -1.201172,0 m 0,5.02148 l 0,-1.20117 l 1.201172,0 l 0,1.20117 l -1.201172,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11304"
inkscape:connector-curvature="0" />
</g>
@ -2186,43 +2224,43 @@
id="memfree-label"
transform="translate(-0.72721087,20.125045)">
<path
d="M 5.0961356,327.7612 L 5.0961356,319.17136 L 6.8070731,319.17136 L 8.8402762,325.25339 C 9.0277714,325.8198 9.16449,326.24362 9.2504325,326.52487 C 9.3480836,326.21237 9.5004272,325.75339 9.7074637,325.14792 L 11.764104,319.17136 L 13.293401,319.17136 L 13.293401,327.7612 L 12.197698,327.7612 L 12.197698,320.57175 L 9.7016044,327.7612 L 8.6762137,327.7612 L 6.1918387,320.4487 L 6.1918387,327.7612 L 5.0961356,327.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 5.0961356,327.7612 l 0,-8.58984 l 1.7109375,0 l 2.0332031,6.08203 c 0.1874952,0.56641 0.3242138,0.99023 0.4101563,1.27148 c 0.097651,-0.3125 0.2499947,-0.77148 0.4570312,-1.37695 l 2.0566403,-5.97656 l 1.529297,0 l 0,8.58984 l -1.095703,0 l 0,-7.18945 l -2.4960936,7.18945 l -1.0253907,0 l -2.484375,-7.3125 l 0,7.3125 l -1.0957031,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11322"
inkscape:connector-curvature="0" />
<path
d="M 19.264104,325.75729 L 20.353948,325.89206 C 20.182067,326.52878 19.863708,327.02292 19.39887,327.37448 C 18.934022,327.72604 18.340272,327.90182 17.61762,327.90182 C 16.707461,327.90182 15.984806,327.62253 15.449651,327.06393 C 14.918401,326.50144 14.652776,325.71433 14.652776,324.70261 C 14.652776,323.65574 14.922307,322.84324 15.46137,322.26511 C 16.000431,321.68699 16.699649,321.39793 17.559026,321.39792 C 18.391053,321.39793 19.07074,321.68113 19.598089,322.24753 C 20.125427,322.81394 20.389098,323.61081 20.389104,324.63815 C 20.389098,324.70066 20.387145,324.79441 20.383245,324.9194 L 15.74262,324.9194 C 15.781681,325.603 15.97504,326.12644 16.322698,326.48972 C 16.670352,326.853 17.103945,327.03464 17.623479,327.03464 C 18.010194,327.03464 18.340272,326.93308 18.613714,326.72995 C 18.887147,326.52683 19.103943,326.20261 19.264104,325.75729 M 15.801214,324.05222 L 19.275823,324.05222 C 19.228943,323.52878 19.096131,323.1362 18.877386,322.87448 C 18.541444,322.46824 18.105897,322.26511 17.570745,322.26511 C 17.086367,322.26511 16.678164,322.42722 16.346136,322.75143 C 16.018009,323.07566 15.836368,323.50925 15.801214,324.05222"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 19.264104,325.75729 l 1.089844,0.13477 c -0.171881,0.63672 -0.49024,1.13086 -0.955078,1.48242 c -0.464848,0.35156 -1.058598,0.52734 -1.78125,0.52734 c -0.910159,0 -1.632814,-0.27929 -2.167969,-0.83789 c -0.53125,-0.56249 -0.796875,-1.3496 -0.796875,-2.36132 c 0,-1.04687 0.269531,-1.85937 0.808594,-2.4375 c 0.539061,-0.57812 1.238279,-0.86718 2.097656,-0.86719 c 0.832027,10e-6 1.511714,0.28321 2.039063,0.84961 c 0.527338,0.56641 0.791009,1.36328 0.791015,2.39062 c -6e-6,0.0625 -0.002,0.15626 -0.0059,0.28125 l -4.640625,0 c 0.03906,0.6836 0.23242,1.20704 0.580078,1.57032 c 0.347654,0.36328 0.781247,0.54492 1.300781,0.54492 c 0.386715,0 0.716793,-0.10156 0.990235,-0.30469 c 0.273433,-0.20312 0.490229,-0.52734 0.65039,-0.97266 m -3.46289,-1.70507 l 3.474609,0 c -0.04688,-0.52344 -0.179692,-0.91602 -0.398437,-1.17774 c -0.335942,-0.40624 -0.771489,-0.60937 -1.306641,-0.60937 c -0.484378,0 -0.892581,0.16211 -1.224609,0.48632 c -0.328127,0.32423 -0.509768,0.75782 -0.544922,1.30079"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11324"
inkscape:connector-curvature="0" />
<path
d="M 21.684026,327.7612 L 21.684026,321.53854 L 22.627386,321.53854 L 22.627386,322.41159 C 22.822696,322.10691 23.082462,321.86277 23.406682,321.67917 C 23.730898,321.49167 24.100039,321.39793 24.514104,321.39792 C 24.975038,321.39793 25.351991,321.49363 25.644964,321.68503 C 25.941834,321.87644 26.150818,322.14402 26.271917,322.48776 C 26.764098,321.76121 27.404723,321.39793 28.193792,321.39792 C 28.810971,321.39793 29.28558,321.5698 29.61762,321.91354 C 29.949642,322.25339 30.115658,322.77878 30.115667,323.48972 L 30.115667,327.7612 L 29.066839,327.7612 L 29.066839,323.84128 C 29.066831,323.41941 29.031674,323.11667 28.96137,322.93307 C 28.894956,322.74558 28.771909,322.59519 28.592229,322.4819 C 28.412534,322.36863 28.201597,322.31199 27.959417,322.31198 C 27.52191,322.31199 27.158629,322.45847 26.869573,322.75143 C 26.580505,323.0405 26.435974,323.50534 26.435979,324.14597 L 26.435979,327.7612 L 25.381292,327.7612 L 25.381292,323.71823 C 25.381287,323.24949 25.29535,322.89792 25.123479,322.66354 C 24.9516,322.42917 24.670351,322.31199 24.279729,322.31198 C 23.982851,322.31199 23.707461,322.39011 23.453557,322.54636 C 23.203555,322.70261 23.021915,322.93113 22.908636,323.2319 C 22.795352,323.53269 22.738712,323.96628 22.738714,324.53268 L 22.738714,327.7612 L 21.684026,327.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 21.684026,327.7612 l 0,-6.22266 l 0.94336,0 l 0,0.87305 c 0.19531,-0.30468 0.455076,-0.54882 0.779296,-0.73242 c 0.324216,-0.1875 0.693357,-0.28124 1.107422,-0.28125 c 0.460934,10e-6 0.837887,0.0957 1.13086,0.28711 c 0.29687,0.19141 0.505854,0.45899 0.626953,0.80273 c 0.492181,-0.72655 1.132806,-1.08983 1.921875,-1.08984 c 0.617179,10e-6 1.091788,0.17188 1.423828,0.51562 c 0.332022,0.33985 0.498038,0.86524 0.498047,1.57618 l 0,4.27148 l -1.048828,0 l 0,-3.91992 c -8e-6,-0.42187 -0.03517,-0.72461 -0.105469,-0.90821 c -0.06641,-0.18749 -0.189461,-0.33788 -0.369141,-0.45117 c -0.179695,-0.11327 -0.390632,-0.16991 -0.632812,-0.16992 c -0.437507,10e-6 -0.800788,0.14649 -1.089844,0.43945 c -0.289068,0.28907 -0.433599,0.75391 -0.433594,1.39454 l 0,3.61523 l -1.054687,0 l 0,-4.04297 c -5e-6,-0.46874 -0.08594,-0.82031 -0.257813,-1.05469 c -0.171879,-0.23437 -0.453128,-0.35155 -0.84375,-0.35156 c -0.296878,10e-6 -0.572268,0.0781 -0.826172,0.23438 c -0.250002,0.15625 -0.431642,0.38477 -0.544921,0.68554 c -0.113284,0.30079 -0.169924,0.73438 -0.169922,1.30078 l 0,3.22852 l -1.054688,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11326"
inkscape:connector-curvature="0" />
<path
d="M 31.908636,327.7612 L 31.908636,319.17136 L 37.703557,319.17136 L 37.703557,320.18503 L 33.045354,320.18503 L 33.045354,322.84518 L 37.076604,322.84518 L 37.076604,323.85886 L 33.045354,323.85886 L 33.045354,327.7612 L 31.908636,327.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 31.908636,327.7612 l 0,-8.58984 l 5.794921,0 l 0,1.01367 l -4.658203,0 l 0,2.66015 l 4.03125,0 l 0,1.01368 l -4.03125,0 l 0,3.90234 l -1.136718,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11328"
inkscape:connector-curvature="0" />
<path
d="M 39.039495,327.7612 L 39.039495,321.53854 L 39.988714,321.53854 L 39.988714,322.4819 C 40.230899,322.0405 40.453555,321.74949 40.656682,321.60886 C 40.863711,321.46824 41.090273,321.39793 41.33637,321.39792 C 41.691835,321.39793 42.053163,321.51121 42.420354,321.73776 L 42.057073,322.71628 C 41.799257,322.56394 41.541445,322.48777 41.283636,322.48776 C 41.053164,322.48777 40.846133,322.55808 40.662542,322.6987 C 40.478946,322.83542 40.348087,323.02683 40.269964,323.27292 C 40.152774,323.64792 40.094181,324.05808 40.094182,324.50339 L 40.094182,327.7612 L 39.039495,327.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 39.039495,327.7612 l 0,-6.22266 l 0.949219,0 l 0,0.94336 c 0.242185,-0.4414 0.464841,-0.73241 0.667968,-0.87304 c 0.207029,-0.14062 0.433591,-0.21093 0.679688,-0.21094 c 0.355465,10e-6 0.716793,0.11329 1.083984,0.33984 l -0.363281,0.97852 c -0.257816,-0.15234 -0.515628,-0.22851 -0.773437,-0.22852 c -0.230472,1e-5 -0.437503,0.0703 -0.621094,0.21094 c -0.183596,0.13672 -0.314455,0.32813 -0.392578,0.57422 c -0.11719,0.375 -0.175783,0.78516 -0.175782,1.23047 l 0,3.25781 l -1.054687,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11330"
inkscape:connector-curvature="0" />
<path
d="M 47.318792,325.75729 L 48.408636,325.89206 C 48.236755,326.52878 47.918396,327.02292 47.453557,327.37448 C 46.988709,327.72604 46.39496,327.90182 45.672307,327.90182 C 44.762149,327.90182 44.039493,327.62253 43.504339,327.06393 C 42.973088,326.50144 42.707463,325.71433 42.707464,324.70261 C 42.707463,323.65574 42.976994,322.84324 43.516057,322.26511 C 44.055118,321.68699 44.754336,321.39793 45.613714,321.39792 C 46.445741,321.39793 47.125428,321.68113 47.652776,322.24753 C 48.180114,322.81394 48.443786,323.61081 48.443792,324.63815 C 48.443786,324.70066 48.441833,324.79441 48.437932,324.9194 L 43.797307,324.9194 C 43.836368,325.603 44.029728,326.12644 44.377386,326.48972 C 44.725039,326.853 45.158633,327.03464 45.678167,327.03464 C 46.064882,327.03464 46.39496,326.93308 46.668401,326.72995 C 46.941834,326.52683 47.158631,326.20261 47.318792,325.75729 M 43.855901,324.05222 L 47.330511,324.05222 C 47.283631,323.52878 47.150818,323.1362 46.932073,322.87448 C 46.596131,322.46824 46.160585,322.26511 45.625432,322.26511 C 45.141055,322.26511 44.732852,322.42722 44.400823,322.75143 C 44.072696,323.07566 43.891056,323.50925 43.855901,324.05222"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 47.318792,325.75729 l 1.089844,0.13477 c -0.171881,0.63672 -0.49024,1.13086 -0.955079,1.48242 c -0.464848,0.35156 -1.058597,0.52734 -1.78125,0.52734 c -0.910158,0 -1.632814,-0.27929 -2.167968,-0.83789 c -0.531251,-0.56249 -0.796876,-1.3496 -0.796875,-2.36132 c -1e-6,-1.04687 0.26953,-1.85937 0.808593,-2.4375 c 0.539061,-0.57812 1.238279,-0.86718 2.097657,-0.86719 c 0.832027,10e-6 1.511714,0.28321 2.039062,0.84961 c 0.527338,0.56641 0.79101,1.36328 0.791016,2.39062 c -6e-6,0.0625 -0.002,0.15626 -0.0059,0.28125 l -4.640625,0 c 0.03906,0.6836 0.232421,1.20704 0.580079,1.57032 c 0.347653,0.36328 0.781247,0.54492 1.300781,0.54492 c 0.386715,0 0.716793,-0.10156 0.990234,-0.30469 c 0.273433,-0.20312 0.49023,-0.52734 0.650391,-0.97266 m -3.462891,-1.70507 l 3.47461,0 c -0.04688,-0.52344 -0.179693,-0.91602 -0.398438,-1.17774 c -0.335942,-0.40624 -0.771488,-0.60937 -1.306641,-0.60937 c -0.484377,0 -0.89258,0.16211 -1.224609,0.48632 c -0.328127,0.32423 -0.509767,0.75782 -0.544922,1.30079"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11332"
inkscape:connector-curvature="0" />
<path
d="M 53.998479,325.75729 L 55.088323,325.89206 C 54.916442,326.52878 54.598083,327.02292 54.133245,327.37448 C 53.668397,327.72604 53.074647,327.90182 52.351995,327.90182 C 51.441836,327.90182 50.719181,327.62253 50.184026,327.06393 C 49.652776,326.50144 49.387151,325.71433 49.387151,324.70261 C 49.387151,323.65574 49.656682,322.84324 50.195745,322.26511 C 50.734806,321.68699 51.434024,321.39793 52.293401,321.39792 C 53.125428,321.39793 53.805115,321.68113 54.332464,322.24753 C 54.859802,322.81394 55.123473,323.61081 55.123479,324.63815 C 55.123473,324.70066 55.12152,324.79441 55.11762,324.9194 L 50.476995,324.9194 C 50.516056,325.603 50.709415,326.12644 51.057073,326.48972 C 51.404727,326.853 51.83832,327.03464 52.357854,327.03464 C 52.744569,327.03464 53.074647,326.93308 53.348089,326.72995 C 53.621522,326.52683 53.838318,326.20261 53.998479,325.75729 M 50.535589,324.05222 L 54.010198,324.05222 C 53.963318,323.52878 53.830506,323.1362 53.611761,322.87448 C 53.275819,322.46824 52.840272,322.26511 52.30512,322.26511 C 51.820742,322.26511 51.412539,322.42722 51.080511,322.75143 C 50.752384,323.07566 50.570743,323.50925 50.535589,324.05222"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 53.998479,325.75729 l 1.089844,0.13477 c -0.171881,0.63672 -0.49024,1.13086 -0.955078,1.48242 c -0.464848,0.35156 -1.058598,0.52734 -1.78125,0.52734 c -0.910159,0 -1.632814,-0.27929 -2.167969,-0.83789 c -0.53125,-0.56249 -0.796875,-1.3496 -0.796875,-2.36132 c 0,-1.04687 0.269531,-1.85937 0.808594,-2.4375 c 0.539061,-0.57812 1.238279,-0.86718 2.097656,-0.86719 c 0.832027,10e-6 1.511714,0.28321 2.039063,0.84961 c 0.527338,0.56641 0.791009,1.36328 0.791015,2.39062 c -6e-6,0.0625 -0.002,0.15626 -0.0059,0.28125 l -4.640625,0 c 0.03906,0.6836 0.23242,1.20704 0.580078,1.57032 c 0.347654,0.36328 0.781247,0.54492 1.300781,0.54492 c 0.386715,0 0.716793,-0.10156 0.990235,-0.30469 c 0.273433,-0.20312 0.490229,-0.52734 0.65039,-0.97266 m -3.46289,-1.70507 l 3.474609,0 c -0.04688,-0.52344 -0.179692,-0.91602 -0.398437,-1.17774 c -0.335942,-0.40624 -0.771489,-0.60937 -1.306641,-0.60937 c -0.484378,0 -0.892581,0.16211 -1.224609,0.48632 c -0.328127,0.32423 -0.509768,0.75782 -0.544922,1.30079"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11334"
inkscape:connector-curvature="0" />
<path
d="M 60,322.73972 L 60,321.53854 L 61.201172,321.53854 L 61.201172,322.73972 L 60,322.73972 M 60,327.7612 L 60,326.56003 L 61.201172,326.56003 L 61.201172,327.7612 L 60,327.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 60,322.73972 l 0,-1.20118 l 1.201172,0 l 0,1.20118 l -1.201172,0 m 0,5.02148 l 0,-1.20117 l 1.201172,0 l 0,1.20117 l -1.201172,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11336"
inkscape:connector-curvature="0" />
</g>
@ -2230,58 +2268,58 @@
id="fusionalgo-label"
transform="translate(0.18099223,-37.43501)">
<path
d="M 4.1879325,402.7612 L 7.4867606,394.17136 L 8.71137,394.17136 L 12.226995,402.7612 L 10.932073,402.7612 L 9.93012,400.15964 L 6.3383231,400.15964 L 5.3949637,402.7612 L 4.1879325,402.7612 M 6.6664481,399.23386 L 9.5785575,399.23386 L 8.6820731,396.85495 C 8.4086314,396.1323 8.2055066,395.53855 8.0726981,395.0737 C 7.9633194,395.62449 7.8090226,396.17136 7.6098075,396.71432 L 6.6664481,399.23386"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 4.1879325,402.7612 l 3.2988281,-8.58984 l 1.2246094,0 l 3.515625,8.58984 l -1.294922,0 L 9.93012,400.15964 l -3.5917969,0 l -0.9433594,2.60156 l -1.2070312,0 m 2.4785156,-3.52734 l 2.9121094,0 l -0.8964844,-2.37891 c -0.2734417,-0.72265 -0.4765665,-1.3164 -0.609375,-1.78125 c -0.1093787,0.55079 -0.2636755,1.09766 -0.4628906,1.64062 l -0.9433594,2.51954"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11346"
inkscape:connector-curvature="0" />
<path
d="M 15.314886,401.81784 L 15.467229,402.74948 C 15.170351,402.81198 14.904727,402.84323 14.670354,402.84323 C 14.28754,402.84323 13.990665,402.78268 13.779729,402.66159 C 13.568791,402.5405 13.420353,402.38229 13.334417,402.18698 C 13.248478,401.98776 13.20551,401.57175 13.205511,400.93893 L 13.205511,397.35886 L 12.432073,397.35886 L 12.432073,396.53854 L 13.205511,396.53854 L 13.205511,394.99753 L 14.254339,394.36472 L 14.254339,396.53854 L 15.314886,396.53854 L 15.314886,397.35886 L 14.254339,397.35886 L 14.254339,400.99753 C 14.254337,401.29831 14.271915,401.49167 14.307073,401.57761 C 14.346133,401.66354 14.40668,401.7319 14.488714,401.78268 C 14.574649,401.83347 14.695743,401.85886 14.851995,401.85886 C 14.96918,401.85886 15.123476,401.84519 15.314886,401.81784"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 15.314886,401.81784 l 0.152343,0.93164 c -0.296878,0.0625 -0.562502,0.0937 -0.796875,0.0937 c -0.382814,0 -0.679689,-0.0605 -0.890625,-0.18164 c -0.210938,-0.12109 -0.359376,-0.2793 -0.445312,-0.47461 c -0.08594,-0.19922 -0.128907,-0.61523 -0.128906,-1.24805 l 0,-3.58007 l -0.773438,0 l 0,-0.82032 l 0.773438,0 l 0,-1.54101 l 1.048828,-0.63281 l 0,2.17382 l 1.060547,0 l 0,0.82032 l -1.060547,0 l 0,3.63867 c -2e-6,0.30078 0.01758,0.49414 0.05273,0.58008 c 0.03906,0.0859 0.09961,0.15429 0.181641,0.20507 c 0.08594,0.0508 0.207029,0.0762 0.363281,0.0762 c 0.117185,0 0.271481,-0.0137 0.462891,-0.041"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11348"
inkscape:connector-curvature="0" />
<path
d="M 18.643011,401.81784 L 18.795354,402.74948 C 18.498476,402.81198 18.232852,402.84323 17.998479,402.84323 C 17.615665,402.84323 17.31879,402.78268 17.107854,402.66159 C 16.896916,402.5405 16.748478,402.38229 16.662542,402.18698 C 16.576603,401.98776 16.533635,401.57175 16.533636,400.93893 L 16.533636,397.35886 L 15.760198,397.35886 L 15.760198,396.53854 L 16.533636,396.53854 L 16.533636,394.99753 L 17.582464,394.36472 L 17.582464,396.53854 L 18.643011,396.53854 L 18.643011,397.35886 L 17.582464,397.35886 L 17.582464,400.99753 C 17.582462,401.29831 17.60004,401.49167 17.635198,401.57761 C 17.674258,401.66354 17.734805,401.7319 17.816839,401.78268 C 17.902774,401.83347 18.023868,401.85886 18.18012,401.85886 C 18.297305,401.85886 18.451601,401.84519 18.643011,401.81784"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 18.643011,401.81784 l 0.152343,0.93164 c -0.296878,0.0625 -0.562502,0.0937 -0.796875,0.0937 c -0.382814,0 -0.679689,-0.0605 -0.890625,-0.18164 c -0.210938,-0.12109 -0.359376,-0.2793 -0.445312,-0.47461 c -0.08594,-0.19922 -0.128907,-0.61523 -0.128906,-1.24805 l 0,-3.58007 l -0.773438,0 l 0,-0.82032 l 0.773438,0 l 0,-1.54101 l 1.048828,-0.63281 l 0,2.17382 l 1.060547,0 l 0,0.82032 l -1.060547,0 l 0,3.63867 c -2e-6,0.30078 0.01758,0.49414 0.05273,0.58008 c 0.03906,0.0859 0.09961,0.15429 0.181641,0.20507 c 0.08593,0.0508 0.207029,0.0762 0.363281,0.0762 c 0.117185,0 0.271481,-0.0137 0.462891,-0.041"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11350"
inkscape:connector-curvature="0" />
<path
d="M 19.826604,402.7612 L 19.826604,394.17136 L 26.037542,394.17136 L 26.037542,395.18503 L 20.963323,395.18503 L 20.963323,397.81589 L 25.715276,397.81589 L 25.715276,398.8237 L 20.963323,398.8237 L 20.963323,401.74753 L 26.236761,401.74753 L 26.236761,402.7612 L 19.826604,402.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 19.826604,402.7612 l 0,-8.58984 l 6.210938,0 l 0,1.01367 l -5.074219,0 l 0,2.63086 l 4.751953,0 l 0,1.00781 l -4.751953,0 l 0,2.92383 l 5.273438,0 l 0,1.01367 l -6.410157,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11352"
inkscape:connector-curvature="0" />
<path
d="M 27.262151,400.90378 L 28.30512,400.73972 C 28.363712,401.15769 28.525821,401.478 28.791448,401.70065 C 29.060977,401.92331 29.435977,402.03464 29.916448,402.03464 C 30.40082,402.03464 30.760194,401.93698 30.994573,401.74167 C 31.228944,401.54245 31.346131,401.31003 31.346136,401.0444 C 31.346131,400.80612 31.242616,400.61862 31.035589,400.4819 C 30.891053,400.38816 30.531679,400.26901 29.957464,400.12448 C 29.184024,399.92917 28.646915,399.7612 28.346136,399.62057 C 28.049259,399.47605 27.822697,399.27878 27.666448,399.02878 C 27.514104,398.77488 27.437932,398.49558 27.437932,398.19089 C 27.437932,397.91355 27.500432,397.65769 27.625432,397.42331 C 27.754338,397.18503 27.928166,396.98777 28.146917,396.83151 C 28.310978,396.71042 28.533634,396.60886 28.814886,396.52682 C 29.10004,396.44089 29.404727,396.39793 29.728948,396.39792 C 30.217226,396.39793 30.64496,396.46824 31.012151,396.60886 C 31.383241,396.74949 31.656678,396.94089 31.832464,397.18307 C 32.00824,397.42136 32.129334,397.74167 32.195745,398.14401 L 31.164495,398.28464 C 31.117616,397.96433 30.980897,397.71433 30.754339,397.53464 C 30.531679,397.35496 30.215273,397.26511 29.80512,397.26511 C 29.320743,397.26511 28.97504,397.34519 28.768011,397.50534 C 28.560978,397.6655 28.457462,397.853 28.457464,398.06784 C 28.457462,398.20456 28.500431,398.32761 28.58637,398.43698 C 28.672306,398.55027 28.807071,398.64402 28.990667,398.71823 C 29.096133,398.7573 29.40668,398.84714 29.922307,398.98776 C 30.668397,399.18698 31.187928,399.35105 31.480901,399.47995 C 31.777771,399.60495 32.010193,399.78855 32.178167,400.03073 C 32.34613,400.27292 32.430114,400.5737 32.43012,400.93307 C 32.430114,401.28464 32.326599,401.61667 32.119573,401.92917 C 31.916443,402.23776 31.621522,402.478 31.234807,402.64987 C 30.848085,402.81784 30.410585,402.90182 29.922307,402.90182 C 29.113712,402.90182 28.496525,402.73386 28.070745,402.39792 C 27.648869,402.06198 27.379338,401.56394 27.262151,400.90378"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 27.262151,400.90378 l 1.042969,-0.16406 c 0.05859,0.41797 0.220701,0.73828 0.486328,0.96093 c 0.269529,0.22266 0.644529,0.33399 1.125,0.33399 c 0.484372,0 0.843746,-0.0977 1.078125,-0.29297 c 0.234371,-0.19922 0.351558,-0.43164 0.351563,-0.69727 c -5e-6,-0.23828 -0.10352,-0.42578 -0.310547,-0.5625 c -0.144536,-0.0937 -0.50391,-0.21289 -1.078125,-0.35742 c -0.77344,-0.19531 -1.310549,-0.36328 -1.611328,-0.50391 c -0.296877,-0.14452 -0.523439,-0.34179 -0.679688,-0.59179 c -0.152344,-0.2539 -0.228516,-0.5332 -0.228516,-0.83789 c 0,-0.27734 0.0625,-0.5332 0.1875,-0.76758 c 0.128906,-0.23828 0.302734,-0.43554 0.521485,-0.5918 c 0.164061,-0.12109 0.386717,-0.22265 0.667969,-0.30469 c 0.285154,-0.0859 0.589841,-0.12889 0.914062,-0.1289 c 0.488278,10e-6 0.916012,0.0703 1.283203,0.21094 c 0.37109,0.14063 0.644527,0.33203 0.820313,0.57421 c 0.175776,0.23829 0.29687,0.5586 0.363281,0.96094 l -1.03125,0.14063 c -0.04688,-0.32031 -0.183598,-0.57031 -0.410156,-0.75 c -0.22266,-0.17968 -0.539066,-0.26953 -0.949219,-0.26953 c -0.484377,0 -0.83008,0.0801 -1.037109,0.24023 c -0.207033,0.16016 -0.310549,0.34766 -0.310547,0.5625 c -2e-6,0.13672 0.04297,0.25977 0.128906,0.36914 c 0.08594,0.11329 0.220701,0.20704 0.404297,0.28125 c 0.105466,0.0391 0.416013,0.12891 0.93164,0.26953 c 0.74609,0.19922 1.265621,0.36329 1.558594,0.49219 c 0.29687,0.125 0.529292,0.3086 0.697266,0.55078 c 0.167963,0.24219 0.251947,0.54297 0.251953,0.90234 c -6e-6,0.35157 -0.103521,0.6836 -0.310547,0.9961 c -0.20313,0.30859 -0.498051,0.54883 -0.884766,0.7207 c -0.386722,0.16797 -0.824222,0.25195 -1.3125,0.25195 c -0.808595,0 -1.425782,-0.16796 -1.851562,-0.5039 c -0.421876,-0.33594 -0.691407,-0.83398 -0.808594,-1.49414"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11354"
inkscape:connector-curvature="0" />
<path
d="M 35.986761,401.81784 L 36.139104,402.74948 C 35.842226,402.81198 35.576602,402.84323 35.342229,402.84323 C 34.959415,402.84323 34.66254,402.78268 34.451604,402.66159 C 34.240666,402.5405 34.092228,402.38229 34.006292,402.18698 C 33.920353,401.98776 33.877385,401.57175 33.877386,400.93893 L 33.877386,397.35886 L 33.103948,397.35886 L 33.103948,396.53854 L 33.877386,396.53854 L 33.877386,394.99753 L 34.926214,394.36472 L 34.926214,396.53854 L 35.986761,396.53854 L 35.986761,397.35886 L 34.926214,397.35886 L 34.926214,400.99753 C 34.926212,401.29831 34.94379,401.49167 34.978948,401.57761 C 35.018008,401.66354 35.078555,401.7319 35.160589,401.78268 C 35.246524,401.83347 35.367618,401.85886 35.52387,401.85886 C 35.641055,401.85886 35.795351,401.84519 35.986761,401.81784"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 35.986761,401.81784 l 0.152343,0.93164 c -0.296878,0.0625 -0.562502,0.0937 -0.796875,0.0937 c -0.382814,0 -0.679689,-0.0605 -0.890625,-0.18164 c -0.210938,-0.12109 -0.359376,-0.2793 -0.445312,-0.47461 c -0.08594,-0.19922 -0.128907,-0.61523 -0.128906,-1.24805 l 0,-3.58007 l -0.773438,0 l 0,-0.82032 l 0.773438,0 l 0,-1.54101 l 1.048828,-0.63281 l 0,2.17382 l 1.060547,0 l 0,0.82032 l -1.060547,0 l 0,3.63867 c -2e-6,0.30078 0.01758,0.49414 0.05273,0.58008 c 0.03906,0.0859 0.09961,0.15429 0.181641,0.20507 c 0.08593,0.0508 0.207029,0.0762 0.363281,0.0762 c 0.117185,0 0.271481,-0.0137 0.462891,-0.041"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11356"
inkscape:connector-curvature="0" />
<path
d="M 36.203557,402.7612 L 39.502386,394.17136 L 40.726995,394.17136 L 44.24262,402.7612 L 42.947698,402.7612 L 41.945745,400.15964 L 38.353948,400.15964 L 37.410589,402.7612 L 36.203557,402.7612 M 38.682073,399.23386 L 41.594182,399.23386 L 40.697698,396.85495 C 40.424256,396.1323 40.221132,395.53855 40.088323,395.0737 C 39.978944,395.62449 39.824648,396.17136 39.625432,396.71432 L 38.682073,399.23386"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 36.203557,402.7612 l 3.298829,-8.58984 l 1.224609,0 l 3.515625,8.58984 l -1.294922,0 l -1.001953,-2.60156 l -3.591797,0 l -0.943359,2.60156 l -1.207032,0 m 2.478516,-3.52734 l 2.912109,0 l -0.896484,-2.37891 c -0.273442,-0.72265 -0.476566,-1.3164 -0.609375,-1.78125 c -0.109379,0.55079 -0.263675,1.09766 -0.462891,1.64062 l -0.943359,2.51954"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11358"
inkscape:connector-curvature="0" />
<path
d="M 45.004339,402.7612 L 45.004339,394.17136 L 46.059026,394.17136 L 46.059026,402.7612 L 45.004339,402.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 45.004339,402.7612 l 0,-8.58984 l 1.054687,0 l 0,8.58984 l -1.054687,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11360"
inkscape:connector-curvature="0" />
<path
d="M 47.506292,403.27682 L 48.531682,403.42917 C 48.57465,403.74557 48.69379,403.97604 48.889104,404.12057 C 49.150821,404.31589 49.508242,404.41354 49.96137,404.41354 C 50.449648,404.41354 50.8266,404.31589 51.092229,404.12057 C 51.35785,403.92526 51.537537,403.65182 51.631292,403.30026 C 51.685975,403.08542 51.711365,402.63425 51.707464,401.94675 C 51.246522,402.48972 50.672304,402.7612 49.984807,402.7612 C 49.129337,402.7612 48.467228,402.45261 47.998479,401.83542 C 47.529729,401.21823 47.295354,400.478 47.295354,399.61472 C 47.295354,399.02097 47.402776,398.47409 47.61762,397.97409 C 47.832463,397.47019 48.143009,397.08152 48.549261,396.80807 C 48.959415,396.53464 49.439883,396.39793 49.990667,396.39792 C 50.725038,396.39793 51.330506,396.6948 51.807073,397.28854 L 51.807073,396.53854 L 52.779729,396.53854 L 52.779729,401.91745 C 52.779723,402.8862 52.680114,403.57175 52.480901,403.97409 C 52.285583,404.38034 51.973084,404.70065 51.543401,404.93503 C 51.117616,405.1694 50.592226,405.28659 49.967229,405.28659 C 49.22504,405.28659 48.625431,405.11862 48.168401,404.78268 C 47.711369,404.45065 47.490666,403.9487 47.506292,403.27682 M 48.379339,399.53854 C 48.379337,400.35495 48.541446,400.95065 48.865667,401.32565 C 49.189883,401.70065 49.596133,401.88815 50.084417,401.88815 C 50.568788,401.88815 50.975038,401.70261 51.303167,401.33151 C 51.631287,400.95651 51.795349,400.37058 51.795354,399.5737 C 51.795349,398.81199 51.625428,398.23777 51.285589,397.85104 C 50.949647,397.46433 50.543398,397.27097 50.066839,397.27097 C 49.598086,397.27097 49.199649,397.46238 48.871526,397.84518 C 48.5434,398.2241 48.379337,398.78855 48.379339,399.53854"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 47.506292,403.27682 l 1.02539,0.15235 c 0.04297,0.3164 0.162108,0.54687 0.357422,0.6914 c 0.261717,0.19532 0.619138,0.29297 1.072266,0.29297 c 0.488278,0 0.86523,-0.0976 1.130859,-0.29297 c 0.265621,-0.19531 0.445308,-0.46875 0.539063,-0.82031 c 0.05468,-0.21484 0.08007,-0.66601 0.07617,-1.35351 c -0.460942,0.54297 -1.03516,0.81445 -1.722657,0.81445 c -0.85547,0 -1.517579,-0.30859 -1.986328,-0.92578 c -0.46875,-0.61719 -0.703125,-1.35742 -0.703125,-2.2207 c 0,-0.59375 0.107422,-1.14063 0.322266,-1.64063 c 0.214843,-0.5039 0.525389,-0.89257 0.931641,-1.16602 c 0.410154,-0.27343 0.890622,-0.41014 1.441406,-0.41015 c 0.734371,10e-6 1.339839,0.29688 1.816406,0.89062 l 0,-0.75 l 0.972656,0 l 0,5.37891 c -6e-6,0.96875 -0.09962,1.6543 -0.298828,2.05664 c -0.195318,0.40625 -0.507817,0.72656 -0.9375,0.96094 c -0.425785,0.23437 -0.951175,0.35156 -1.576172,0.35156 c -0.742189,0 -1.341798,-0.16797 -1.798828,-0.50391 c -0.457032,-0.33203 -0.677735,-0.83398 -0.662109,-1.50586 m 0.873047,-3.73828 c -2e-6,0.81641 0.162107,1.41211 0.486328,1.78711 c 0.324216,0.375 0.730466,0.5625 1.21875,0.5625 c 0.484371,0 0.890621,-0.18554 1.21875,-0.55664 c 0.32812,-0.375 0.492182,-0.96093 0.492187,-1.75781 c -5e-6,-0.76171 -0.169926,-1.33593 -0.509765,-1.72266 c -0.335942,-0.38671 -0.742191,-0.58007 -1.21875,-0.58007 c -0.468753,0 -0.86719,0.19141 -1.195313,0.57421 c -0.328126,0.37892 -0.492189,0.94337 -0.492187,1.69336"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11362"
inkscape:connector-curvature="0" />
<path
d="M 53.986761,399.64987 C 53.98676,398.49753 54.307072,397.64402 54.947698,397.08932 C 55.482852,396.62839 56.135196,396.39793 56.904729,396.39792 C 57.760194,396.39793 58.459412,396.67917 59.002386,397.24167 C 59.545348,397.80027 59.816833,398.5737 59.816839,399.56198 C 59.816833,400.36276 59.695739,400.99362 59.453557,401.45456 C 59.215271,401.91159 58.865662,402.26706 58.404729,402.52097 C 57.947694,402.77487 57.447694,402.90182 56.904729,402.90182 C 56.033633,402.90182 55.328556,402.62253 54.789495,402.06393 C 54.254338,401.50534 53.98676,400.70066 53.986761,399.64987 M 55.070745,399.64987 C 55.070744,400.44675 55.244571,401.0444 55.592229,401.44284 C 55.939883,401.83737 56.377383,402.03464 56.904729,402.03464 C 57.428163,402.03464 57.863709,401.83542 58.21137,401.43698 C 58.559021,401.03855 58.732849,400.43112 58.732854,399.61472 C 58.732849,398.84519 58.557068,398.26316 58.205511,397.86862 C 57.85785,397.47019 57.424257,397.27097 56.904729,397.27097 C 56.377383,397.27097 55.939883,397.46824 55.592229,397.86276 C 55.244571,398.2573 55.070744,398.853 55.070745,399.64987"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 53.986761,399.64987 c -1e-6,-1.15234 0.320311,-2.00585 0.960937,-2.56055 c 0.535154,-0.46093 1.187498,-0.69139 1.957031,-0.6914 c 0.855465,10e-6 1.554683,0.28125 2.097657,0.84375 c 0.542962,0.5586 0.814447,1.33203 0.814453,2.32031 c -6e-6,0.80078 -0.1211,1.43164 -0.363282,1.89258 c -0.238286,0.45703 -0.587895,0.8125 -1.048828,1.06641 c -0.457035,0.2539 -0.957035,0.38085 -1.5,0.38085 c -0.871096,0 -1.576173,-0.27929 -2.115234,-0.83789 c -0.535157,-0.55859 -0.802735,-1.36327 -0.802734,-2.41406 m 1.083984,0 c -1e-6,0.79688 0.173826,1.39453 0.521484,1.79297 c 0.347654,0.39453 0.785154,0.5918 1.3125,0.5918 c 0.523434,0 0.95898,-0.19922 1.306641,-0.59766 c 0.347651,-0.39843 0.521479,-1.00586 0.521484,-1.82226 c -5e-6,-0.76953 -0.175786,-1.35156 -0.527343,-1.7461 c -0.347661,-0.39843 -0.781254,-0.59765 -1.300782,-0.59765 c -0.527346,0 -0.964846,0.19727 -1.3125,0.59179 c -0.347658,0.39454 -0.521485,0.99024 -0.521484,1.78711"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11364"
inkscape:connector-curvature="0" />
<path
d="M 62.811442,397.73972 L 62.811442,396.53854 L 64.012614,396.53854 L 64.012614,397.73972 L 62.811442,397.73972 M 62.811442,402.7612 L 62.811442,401.56003 L 64.012614,401.56003 L 64.012614,402.7612 L 62.811442,402.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 62.811442,397.73972 l 0,-1.20118 l 1.201172,0 l 0,1.20118 l -1.201172,0 m 0,5.02148 l 0,-1.20117 l 1.201172,0 l 0,1.20117 l -1.201172,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11366"
inkscape:connector-curvature="0" />
</g>
@ -2289,67 +2327,67 @@
id="mag-used"
transform="translate(-0.72721087,-37.781958)">
<path
d="M 5.0961356,417.7612 L 5.0961356,409.17136 L 6.8070731,409.17136 L 8.8402762,415.25339 C 9.0277714,415.8198 9.16449,416.24362 9.2504325,416.52487 C 9.3480836,416.21237 9.5004272,415.75339 9.7074637,415.14792 L 11.764104,409.17136 L 13.293401,409.17136 L 13.293401,417.7612 L 12.197698,417.7612 L 12.197698,410.57175 L 9.7016044,417.7612 L 8.6762137,417.7612 L 6.1918387,410.4487 L 6.1918387,417.7612 L 5.0961356,417.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 5.0961356,417.7612 l 0,-8.58984 l 1.7109375,0 l 2.0332031,6.08203 c 0.1874952,0.56641 0.3242138,0.99023 0.4101563,1.27148 c 0.097651,-0.3125 0.2499947,-0.77148 0.4570312,-1.37695 l 2.0566403,-5.97656 l 1.529297,0 l 0,8.58984 l -1.095703,0 l 0,-7.18945 l -2.4960936,7.18945 l -1.0253907,0 l -2.484375,-7.3125 l 0,7.3125 l -1.0957031,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11392"
inkscape:connector-curvature="0" />
<path
d="M 19.064886,416.99362 C 18.674256,417.32565 18.297303,417.56003 17.934026,417.69675 C 17.574648,417.83347 17.18793,417.90182 16.77387,417.90182 C 16.090274,417.90182 15.564884,417.73581 15.197698,417.40378 C 14.83051,417.06784 14.646916,416.64011 14.646917,416.12057 C 14.646916,415.81589 14.715276,415.53855 14.851995,415.28854 C 14.992619,415.03464 15.17426,414.83152 15.396917,414.67917 C 15.623478,414.52683 15.877384,414.41159 16.158636,414.33347 C 16.365665,414.27878 16.678164,414.22605 17.096136,414.17526 C 17.947694,414.0737 18.574647,413.95261 18.976995,413.81198 C 18.980896,413.66745 18.98285,413.57566 18.982854,413.53659 C 18.98285,413.10691 18.88324,412.80417 18.684026,412.62839 C 18.414491,412.39011 18.014101,412.27097 17.482854,412.27097 C 16.986758,412.27097 16.619571,412.35886 16.381292,412.53464 C 16.146915,412.70652 15.973087,413.01316 15.859807,413.45456 L 14.828557,413.31393 C 14.922307,412.87253 15.076604,412.51706 15.291448,412.24753 C 15.506291,411.9741 15.816837,411.76511 16.223089,411.62057 C 16.629336,411.47214 17.100039,411.39793 17.635198,411.39792 C 18.166444,411.39793 18.598084,411.46043 18.93012,411.58542 C 19.262146,411.71042 19.506287,411.86863 19.662542,412.06003 C 19.818786,412.24753 19.928161,412.48581 19.990667,412.77487 C 20.025817,412.95456 20.043395,413.27878 20.043401,413.74753 L 20.043401,415.15378 C 20.043395,416.13425 20.06488,416.75534 20.107854,417.01706 C 20.154723,417.27487 20.244567,417.52292 20.377386,417.7612 L 19.275823,417.7612 C 19.166443,417.54245 19.096131,417.28659 19.064886,416.99362 M 18.976995,414.63815 C 18.594178,414.79441 18.01996,414.92722 17.254339,415.03659 C 16.820742,415.09909 16.514102,415.16941 16.334417,415.24753 C 16.154727,415.32566 16.016056,415.44089 15.918401,415.59323 C 15.820743,415.74167 15.771915,415.90769 15.771917,416.09128 C 15.771915,416.37253 15.877384,416.6069 16.088323,416.7944 C 16.303165,416.9819 16.615664,417.07565 17.025823,417.07565 C 17.43207,417.07565 17.793398,416.98776 18.109807,416.81198 C 18.42621,416.63229 18.658631,416.38815 18.807073,416.07956 C 18.92035,415.84128 18.97699,415.48972 18.976995,415.02487 L 18.976995,414.63815"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 19.064886,416.99362 c -0.39063,0.33203 -0.767583,0.56641 -1.13086,0.70313 c -0.359378,0.13672 -0.746096,0.20507 -1.160156,0.20507 c -0.683596,0 -1.208986,-0.16601 -1.576172,-0.49804 c -0.367188,-0.33594 -0.550782,-0.76367 -0.550781,-1.28321 c -1e-6,-0.30468 0.06836,-0.58202 0.205078,-0.83203 c 0.140624,-0.2539 0.322265,-0.45702 0.544922,-0.60937 c 0.226561,-0.15234 0.480467,-0.26758 0.761719,-0.3457 c 0.207029,-0.0547 0.519528,-0.10742 0.9375,-0.15821 c 0.851558,-0.10156 1.478511,-0.22265 1.880859,-0.36328 c 0.0039,-0.14453 0.0059,-0.23632 0.0059,-0.27539 c -4e-6,-0.42968 -0.09961,-0.73242 -0.298828,-0.9082 c -0.269535,-0.23828 -0.669925,-0.35742 -1.201172,-0.35742 c -0.496096,0 -0.863283,0.0879 -1.101562,0.26367 c -0.234377,0.17188 -0.408205,0.47852 -0.521485,0.91992 l -1.03125,-0.14063 c 0.09375,-0.4414 0.248047,-0.79687 0.462891,-1.0664 c 0.214843,-0.27343 0.525389,-0.48242 0.931641,-0.62696 c 0.406247,-0.14843 0.87695,-0.22264 1.412109,-0.22265 c 0.531246,10e-6 0.962886,0.0625 1.294922,0.1875 c 0.332026,0.125 0.576167,0.28321 0.732422,0.47461 c 0.156244,0.1875 0.265619,0.42578 0.328125,0.71484 c 0.03515,0.17969 0.05273,0.50391 0.05273,0.97266 l 0,1.40625 c -6e-6,0.98047 0.02148,1.60156 0.06445,1.86328 c 0.04687,0.25781 0.136713,0.50586 0.269532,0.74414 l -1.101563,0 c -0.10938,-0.21875 -0.179692,-0.47461 -0.210937,-0.76758 m -0.08789,-2.35547 c -0.382817,0.15626 -0.957035,0.28907 -1.722656,0.39844 c -0.433597,0.0625 -0.740237,0.13282 -0.919922,0.21094 c -0.17969,0.0781 -0.318361,0.19336 -0.416016,0.3457 c -0.09766,0.14844 -0.146486,0.31446 -0.146484,0.49805 c -2e-6,0.28125 0.105467,0.51562 0.316406,0.70312 c 0.214842,0.1875 0.527341,0.28125 0.9375,0.28125 c 0.406247,0 0.767575,-0.0879 1.083984,-0.26367 c 0.316403,-0.17969 0.548824,-0.42383 0.697266,-0.73242 c 0.113277,-0.23828 0.169917,-0.58984 0.169922,-1.05469 l 0,-0.38672"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11394"
inkscape:connector-curvature="0" />
<path
d="M 21.490667,418.27682 L 22.516057,418.42917 C 22.559025,418.74557 22.678165,418.97604 22.873479,419.12057 C 23.135196,419.31589 23.492617,419.41354 23.945745,419.41354 C 24.434023,419.41354 24.810975,419.31589 25.076604,419.12057 C 25.342225,418.92526 25.521912,418.65182 25.615667,418.30026 C 25.67035,418.08542 25.69574,417.63425 25.691839,416.94675 C 25.230897,417.48972 24.656679,417.7612 23.969182,417.7612 C 23.113712,417.7612 22.451603,417.45261 21.982854,416.83542 C 21.514104,416.21823 21.279729,415.478 21.279729,414.61472 C 21.279729,414.02097 21.387151,413.47409 21.601995,412.97409 C 21.816838,412.47019 22.127384,412.08152 22.533636,411.80807 C 22.94379,411.53464 23.424258,411.39793 23.975042,411.39792 C 24.709413,411.39793 25.314881,411.6948 25.791448,412.28854 L 25.791448,411.53854 L 26.764104,411.53854 L 26.764104,416.91745 C 26.764098,417.8862 26.664489,418.57175 26.465276,418.97409 C 26.269958,419.38034 25.957459,419.70065 25.527776,419.93503 C 25.101991,420.1694 24.576601,420.28659 23.951604,420.28659 C 23.209415,420.28659 22.609806,420.11862 22.152776,419.78268 C 21.695744,419.45065 21.475041,418.9487 21.490667,418.27682 M 22.363714,414.53854 C 22.363712,415.35495 22.525821,415.95065 22.850042,416.32565 C 23.174258,416.70065 23.580508,416.88815 24.068792,416.88815 C 24.553163,416.88815 24.959413,416.70261 25.287542,416.33151 C 25.615662,415.95651 25.779724,415.37058 25.779729,414.5737 C 25.779724,413.81199 25.609803,413.23777 25.269964,412.85104 C 24.934022,412.46433 24.527773,412.27097 24.051214,412.27097 C 23.582461,412.27097 23.184024,412.46238 22.855901,412.84518 C 22.527775,413.2241 22.363712,413.78855 22.363714,414.53854"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 21.490667,418.27682 l 1.02539,0.15235 c 0.04297,0.3164 0.162108,0.54687 0.357422,0.6914 c 0.261717,0.19532 0.619138,0.29297 1.072266,0.29297 c 0.488278,0 0.86523,-0.0976 1.130859,-0.29297 c 0.265621,-0.19531 0.445308,-0.46875 0.539063,-0.82031 c 0.05468,-0.21484 0.08007,-0.66601 0.07617,-1.35351 c -0.460942,0.54297 -1.03516,0.81445 -1.722657,0.81445 c -0.85547,0 -1.517579,-0.30859 -1.986328,-0.92578 c -0.46875,-0.61719 -0.703125,-1.35742 -0.703125,-2.2207 c 0,-0.59375 0.107422,-1.14063 0.322266,-1.64063 c 0.214843,-0.5039 0.525389,-0.89257 0.931641,-1.16602 c 0.410154,-0.27343 0.890622,-0.41014 1.441406,-0.41015 c 0.734371,10e-6 1.339839,0.29688 1.816406,0.89062 l 0,-0.75 l 0.972656,0 l 0,5.37891 c -6e-6,0.96875 -0.09962,1.6543 -0.298828,2.05664 c -0.195318,0.40625 -0.507817,0.72656 -0.9375,0.96094 c -0.425785,0.23437 -0.951175,0.35156 -1.576172,0.35156 c -0.742189,0 -1.341798,-0.16797 -1.798828,-0.50391 c -0.457032,-0.33203 -0.677735,-0.83398 -0.662109,-1.50586 m 0.873047,-3.73828 c -2e-6,0.81641 0.162107,1.41211 0.486328,1.78711 c 0.324216,0.375 0.730466,0.5625 1.21875,0.5625 c 0.484371,0 0.890621,-0.18554 1.21875,-0.55664 c 0.32812,-0.375 0.492182,-0.96093 0.492187,-1.75781 c -5e-6,-0.76171 -0.169926,-1.33593 -0.509765,-1.72266 c -0.335942,-0.38671 -0.742191,-0.58007 -1.21875,-0.58007 c -0.468753,0 -0.86719,0.19141 -1.195313,0.57421 c -0.328126,0.37892 -0.492189,0.94337 -0.492187,1.69336"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11396"
inkscape:connector-curvature="0" />
<path
d="M 63.719645,412.73972 L 63.719645,411.53854 L 64.920817,411.53854 L 64.920817,412.73972 L 63.719645,412.73972 M 63.719645,417.7612 L 63.719645,416.56003 L 64.920817,416.56003 L 64.920817,417.7612 L 63.719645,417.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 63.719645,412.73972 l 0,-1.20118 l 1.201172,0 l 0,1.20118 l -1.201172,0 m 0,5.02148 l 0,-1.20117 l 1.201172,0 l 0,1.20117 l -1.201172,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11398"
inkscape:connector-curvature="0" />
<path
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.34432793px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;display:inline;fill:#e6e6e6;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0"
id="path4995"
d="M 35.617,417.76968 L 35.617,416.91237 C 35.162604,417.57184 34.545146,417.90158 33.764621,417.90158 C 33.42016,417.90158 33.09769,417.83563 32.797208,417.70374 C 32.500385,417.57184 32.278686,417.40697 32.13211,417.20914 C 31.989195,417.00763 31.888423,416.76216 31.829793,416.47272 C 31.789483,416.27855 31.769329,415.97079 31.76933,415.54946 L 31.76933,411.93334 L 32.75873,411.93334 L 32.75873,415.17026 C 32.758728,415.68685 32.778884,416.0349 32.819193,416.21443 C 32.881488,416.47456 33.013407,416.67972 33.214954,416.82993 C 33.416496,416.97648 33.665679,417.04976 33.962501,417.04976 C 34.259319,417.04976 34.537816,416.97465 34.797995,416.82444 C 35.058168,416.67057 35.24139,416.46356 35.347662,416.20343 C 35.457592,415.93965 35.512559,415.55862 35.512563,415.06035 L 35.512563,411.93334 L 36.501964,411.93334 L 36.501964,417.76968 L 35.617,417.76968" />
d="m 35.617,417.76968 l 0,-0.85731 c -0.454396,0.65947 -1.071854,0.98921 -1.852379,0.98921 c -0.344461,0 -0.666931,-0.066 -0.967413,-0.19784 c -0.296823,-0.1319 -0.518522,-0.29677 -0.665098,-0.4946 c -0.142915,-0.20151 -0.243687,-0.44698 -0.302317,-0.73642 c -0.04031,-0.19417 -0.06046,-0.50193 -0.06046,-0.92326 l 0,-3.61612 l 0.9894,0 l 0,3.23692 c -2e-6,0.51659 0.02015,0.86464 0.06046,1.04417 c 0.06229,0.26013 0.194214,0.46529 0.395761,0.6155 c 0.201542,0.14655 0.450725,0.21983 0.747547,0.21983 c 0.296818,0 0.575315,-0.0751 0.835494,-0.22532 c 0.260173,-0.15387 0.443395,-0.36088 0.549667,-0.62101 c 0.10993,-0.26378 0.164897,-0.64481 0.164901,-1.14308 l 0,-3.12701 l 0.989401,0 l 0,5.83634 l -0.884964,0" />
<path
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.34432793px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;display:inline;fill:#e6e6e6;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0"
id="path4997"
d="M 37.661762,416.02757 L 38.64017,415.8737 C 38.695135,416.26572 38.847209,416.56615 39.096394,416.77498 C 39.349238,416.98381 39.701025,417.08823 40.151754,417.08823 C 40.606143,417.08823 40.943272,416.99663 41.163142,416.81345 C 41.383005,416.6266 41.492938,416.4086 41.492942,416.15947 C 41.492938,415.93598 41.39583,415.76012 41.201618,415.6319 C 41.06603,415.54396 40.728901,415.43222 40.190231,415.29666 C 39.464668,415.11348 38.960807,414.95593 38.678646,414.82404 C 38.400147,414.68848 38.187609,414.50346 38.041032,414.26898 C 37.898118,414.03084 37.826662,413.76888 37.826662,413.48311 C 37.826662,413.22299 37.885292,412.98301 38.002555,412.76319 C 38.123481,412.5397 38.28655,412.35468 38.491759,412.20813 C 38.645665,412.09456 38.854538,411.9993 39.118379,411.92235 C 39.385883,411.84176 39.67171,411.80146 39.97586,411.80145 C 40.433913,411.80146 40.835171,411.86741 41.179631,411.99929 C 41.52775,412.13119 41.78426,412.31072 41.949166,412.53787 C 42.114061,412.76136 42.227658,413.06178 42.28996,413.43914 L 41.322545,413.57103 C 41.278567,413.27062 41.150313,413.03613 40.937778,412.8676 C 40.728901,412.69907 40.432082,412.6148 40.047317,412.6148 C 39.592924,412.6148 39.268621,412.68991 39.074407,412.84012 C 38.880189,412.99034 38.783082,413.1662 38.783083,413.3677 C 38.783082,413.49594 38.823391,413.61135 38.90401,413.71393 C 38.984626,413.82017 39.111049,413.90811 39.28328,413.97771 C 39.382218,414.01435 39.673541,414.09862 40.157251,414.23051 C 40.857157,414.41736 41.344528,414.57124 41.619366,414.69215 C 41.897858,414.80938 42.115894,414.98158 42.273469,415.20873 C 42.431036,415.43589 42.50982,415.71799 42.509826,416.05506 C 42.50982,416.3848 42.412712,416.69621 42.218501,416.98931 C 42.027946,417.27875 41.75128,417.50406 41.388505,417.66527 C 41.025722,417.82281 40.615303,417.90158 40.157251,417.90158 C 39.398708,417.90158 38.819726,417.74404 38.420303,417.42895 C 38.024541,417.11388 37.771694,416.64675 37.661762,416.02757" />
d="m 37.661762,416.02757 l 0.978408,-0.15387 c 0.05497,0.39202 0.207039,0.69245 0.456224,0.90128 c 0.252844,0.20883 0.604631,0.31325 1.05536,0.31325 c 0.454389,0 0.791518,-0.0916 1.011388,-0.27478 c 0.219863,-0.18685 0.329796,-0.40485 0.3298,-0.65398 c -4e-6,-0.22349 -0.09711,-0.39935 -0.291324,-0.52757 c -0.135588,-0.0879 -0.472717,-0.19968 -1.011387,-0.33524 c -0.725563,-0.18318 -1.229424,-0.34073 -1.511585,-0.47262 c -0.278499,-0.13556 -0.491037,-0.32058 -0.637614,-0.55506 c -0.142914,-0.23814 -0.21437,-0.5001 -0.21437,-0.78587 c 0,-0.26012 0.05863,-0.5001 0.175893,-0.71992 c 0.120926,-0.22349 0.283995,-0.40851 0.489204,-0.55506 c 0.153906,-0.11357 0.362779,-0.20883 0.62662,-0.28578 c 0.267504,-0.0806 0.553331,-0.12089 0.857481,-0.1209 c 0.458053,1e-5 0.859311,0.066 1.203771,0.19784 c 0.348119,0.1319 0.604629,0.31143 0.769535,0.53858 c 0.164895,0.22349 0.278492,0.52391 0.340794,0.90127 l -0.967415,0.13189 c -0.04398,-0.30041 -0.172232,-0.5349 -0.384767,-0.70343 c -0.208877,-0.16853 -0.505696,-0.2528 -0.890461,-0.2528 c -0.454393,0 -0.778696,0.0751 -0.97291,0.22532 c -0.194218,0.15022 -0.291325,0.32608 -0.291324,0.52758 c -10e-7,0.12824 0.04031,0.24365 0.120927,0.34623 c 0.08062,0.10624 0.207039,0.19418 0.37927,0.26378 c 0.09894,0.0366 0.390261,0.12091 0.873971,0.2528 c 0.699906,0.18685 1.187277,0.34073 1.462115,0.46164 c 0.278492,0.11723 0.496528,0.28943 0.654103,0.51658 c 0.157567,0.22716 0.236351,0.50926 0.236357,0.84633 c -6e-6,0.32974 -0.09711,0.64115 -0.291325,0.93425 c -0.190555,0.28944 -0.467221,0.51475 -0.829996,0.67596 c -0.362783,0.15754 -0.773202,0.23631 -1.231254,0.23631 c -0.758543,0 -1.337525,-0.15754 -1.736948,-0.47263 c -0.395762,-0.31507 -0.648609,-0.7822 -0.758541,-1.40138" />
<path
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.34432793px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;display:inline;fill:#e6e6e6;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0"
id="path4999"
d="M 47.682194,415.89018 L 48.704574,416.01658 C 48.543334,416.61377 48.244681,417.07724 47.808617,417.40697 C 47.372544,417.73671 46.815547,417.90158 46.137628,417.90158 C 45.28381,417.90158 44.605888,417.63962 44.103861,417.11571 C 43.605495,416.58813 43.356313,415.84988 43.356314,414.90097 C 43.356313,413.9191 43.609159,413.15704 44.114854,412.6148 C 44.620547,412.07258 45.276482,411.80146 46.082663,411.80145 C 46.863186,411.80146 47.500798,412.06707 47.995503,412.59832 C 48.490199,413.12956 48.737548,413.87697 48.737554,414.84052 C 48.737548,414.89915 48.735716,414.98708 48.732058,415.10432 L 44.378695,415.10432 C 44.415336,415.74547 44.596727,416.23641 44.922865,416.57714 C 45.248998,416.91787 45.65575,417.08823 46.143125,417.08823 C 46.505902,417.08823 46.815547,416.99298 47.072062,416.80246 C 47.32857,416.61195 47.531946,416.30785 47.682194,415.89018 M 44.43366,414.29097 L 47.693187,414.29097 C 47.64921,413.80002 47.524618,413.43182 47.319413,413.18635 C 47.004267,412.80532 46.595681,412.6148 46.093656,412.6148 C 45.639261,412.6148 45.256327,412.76685 44.944851,413.07094 C 44.637036,413.37503 44.466639,413.78171 44.43366,414.29097" />
d="m 47.682194,415.89018 l 1.02238,0.1264 c -0.16124,0.59719 -0.459893,1.06066 -0.895957,1.39039 c -0.436073,0.32974 -0.99307,0.49461 -1.670989,0.49461 c -0.853818,0 -1.53174,-0.26196 -2.033767,-0.78587 c -0.498366,-0.52758 -0.747548,-1.26583 -0.747547,-2.21474 c -10e-7,-0.98187 0.252845,-1.74393 0.75854,-2.28617 c 0.505693,-0.54222 1.161628,-0.81334 1.967809,-0.81335 c 0.780523,1e-5 1.418135,0.26562 1.91284,0.79687 c 0.494696,0.53124 0.742045,1.27865 0.742051,2.2422 c -6e-6,0.0586 -0.0018,0.14656 -0.0055,0.2638 l -4.353363,0 c 0.03664,0.64115 0.218032,1.13209 0.54417,1.47282 c 0.326133,0.34073 0.732885,0.51109 1.22026,0.51109 c 0.362777,0 0.672422,-0.0953 0.928937,-0.28577 c 0.256508,-0.19051 0.459884,-0.49461 0.610132,-0.91228 m -3.248534,-1.59921 l 3.259527,0 c -0.04398,-0.49095 -0.168569,-0.85915 -0.373774,-1.10462 c -0.315146,-0.38103 -0.723732,-0.57155 -1.225757,-0.57155 c -0.454395,0 -0.837329,0.15205 -1.148805,0.45614 c -0.307815,0.30409 -0.478212,0.71077 -0.511191,1.22003" />
<path
style="font-size:10.34432793px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.34432793px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;display:inline;fill:#e6e6e6;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0"
id="path5001"
d="M 53.739527,417.76968 L 53.739527,417.03328 C 53.369413,417.61215 52.825242,417.90158 52.107016,417.90158 C 51.641628,417.90158 51.212887,417.77335 50.820794,417.51689 C 50.432361,417.26043 50.130045,416.90321 49.913843,416.44525 C 49.701304,415.98361 49.595035,415.45421 49.595036,414.85701 C 49.595035,414.27448 49.692143,413.7469 49.88636,413.27427 C 50.080576,412.79799 50.371898,412.43345 50.76033,412.18065 C 51.148761,411.92786 51.582996,411.80146 52.063042,411.80145 C 52.414825,411.80146 52.728135,411.87657 53.002973,412.02677 C 53.277803,412.17333 53.501334,412.36567 53.673567,412.60381 L 53.673567,409.71311 L 54.65747,409.71311 L 54.65747,417.76968 L 53.739527,417.76968 M 50.61192,414.85701 C 50.61192,415.60441 50.769489,416.16314 51.084635,416.53317 C 51.399775,416.90321 51.771716,417.08823 52.200459,417.08823 C 52.632861,417.08823 52.999304,416.91237 53.299793,416.56066 C 53.603938,416.20527 53.756011,415.66486 53.756016,414.93945 C 53.756011,414.14075 53.602106,413.55455 53.294295,413.18085 C 52.986479,412.80716 52.60721,412.62031 52.156484,412.6203 C 51.716749,412.62031 51.348472,412.79982 51.051654,413.15886 C 50.758496,413.51792 50.61192,414.08397 50.61192,414.85701" />
d="m 53.739527,417.76968 l 0,-0.7364 c -0.370114,0.57887 -0.914285,0.8683 -1.632511,0.8683 c -0.465388,0 -0.894129,-0.12823 -1.286222,-0.38469 c -0.388433,-0.25646 -0.690749,-0.61368 -0.906951,-1.07164 c -0.212539,-0.46164 -0.318808,-0.99104 -0.318807,-1.58824 c -10e-7,-0.58253 0.09711,-1.11011 0.291324,-1.58274 c 0.194216,-0.47628 0.485538,-0.84082 0.87397,-1.09362 c 0.388431,-0.25279 0.822666,-0.37919 1.302712,-0.3792 c 0.351783,1e-5 0.665093,0.0751 0.939931,0.22532 c 0.27483,0.14656 0.498361,0.3389 0.670594,0.57704 l 0,-2.8907 l 0.983903,0 l 0,8.05657 l -0.917943,0 m -3.127607,-2.91267 c 0,0.7474 0.157569,1.30613 0.472715,1.67616 c 0.31514,0.37004 0.687081,0.55506 1.115824,0.55506 c 0.432402,0 0.798845,-0.17586 1.099334,-0.52757 c 0.304145,-0.35539 0.456218,-0.8958 0.456223,-1.62121 c -5e-6,-0.7987 -0.15391,-1.3849 -0.461721,-1.7586 c -0.307816,-0.37369 -0.687085,-0.56054 -1.137811,-0.56055 c -0.439735,1e-5 -0.808012,0.17952 -1.10483,0.53856 c -0.293158,0.35906 -0.439734,0.92511 -0.439734,1.69815" />
</g>
<g
id="gps-type"
transform="translate(-0.47525777,-37.473886)">
<path
d="M 9.1508231,429.39206 L 9.1508231,428.38425 L 12.789495,428.37839 L 12.789495,431.56589 C 12.230893,432.0112 11.654722,432.34714 11.060979,432.5737 C 10.467223,432.79636 9.8578487,432.90768 9.2328544,432.90768 C 8.3891002,432.90768 7.6215228,432.728 6.93012,432.36862 C 6.242618,432.00534 5.7230872,431.4819 5.3715262,430.79831 C 5.0199629,430.11472 4.8441819,429.35105 4.8441825,428.50729 C 4.8441819,427.67136 5.0180098,426.89207 5.3656669,426.1694 C 5.7172279,425.44285 6.2211336,424.90379 6.8773856,424.55222 C 7.5336323,424.20066 8.2894909,424.02488 9.1449637,424.02487 C 9.7660519,424.02488 10.326598,424.12644 10.826604,424.32956 C 11.330503,424.52879 11.725034,424.80808 12.010198,425.16745 C 12.295346,425.52683 12.512143,425.99558 12.660589,426.5737 L 11.635198,426.85495 C 11.506285,426.41746 11.346128,426.07371 11.154729,425.8237 C 10.963316,425.57371 10.689879,425.37449 10.334417,425.22604 C 9.9789423,425.07371 9.5844115,424.99754 9.1508231,424.99753 C 8.6312874,424.99754 8.1820691,425.07761 7.8031669,425.23776 C 7.4242574,425.39402 7.1176171,425.60105 6.883245,425.85886 C 6.6527738,426.11668 6.4730865,426.39988 6.3441825,426.70847 C 6.1254306,427.23972 6.0160557,427.81589 6.0160575,428.43698 C 6.0160557,429.20261 6.1469149,429.84323 6.4086356,430.35886 C 6.6742581,430.87448 7.0590234,431.2573 7.5629325,431.50729 C 8.0668349,431.75729 8.6019906,431.88229 9.1684012,431.88229 C 9.6605833,431.88229 10.141052,431.78854 10.609807,431.60104 C 11.078551,431.40964 11.434019,431.20651 11.676214,430.99167 L 11.676214,429.39206 L 9.1508231,429.39206"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 9.1508231,429.39206 l 0,-1.00781 l 3.6386719,-0.006 l 0,3.1875 c -0.558602,0.44531 -1.134773,0.78125 -1.728516,1.00781 c -0.593756,0.22266 -1.2031303,0.33398 -1.8281246,0.33398 c -0.8437542,0 -1.6113316,-0.17968 -2.3027344,-0.53906 C 6.242618,432.00534 5.7230872,431.4819 5.3715262,430.79831 c -0.3515633,-0.68359 -0.5273443,-1.44726 -0.5273437,-2.29102 c -6e-7,-0.83593 0.1738273,-1.61522 0.5214844,-2.33789 c 0.351561,-0.72655 0.8554667,-1.26561 1.5117187,-1.61718 c 0.6562467,-0.35156 1.4121053,-0.52734 2.2675781,-0.52735 c 0.6210882,10e-6 1.1816343,0.10157 1.6816403,0.30469 c 0.503899,0.19923 0.89843,0.47852 1.183594,0.83789 c 0.285148,0.35938 0.501945,0.82813 0.650391,1.40625 l -1.025391,0.28125 c -0.128913,-0.43749 -0.28907,-0.78124 -0.480469,-1.03125 c -0.191413,-0.24999 -0.46485,-0.44921 -0.820312,-0.59766 c -0.3554747,-0.15233 -0.7500055,-0.2285 -1.1835939,-0.22851 c -0.5195357,1e-5 -0.968754,0.0801 -1.3476562,0.24023 c -0.3789095,0.15626 -0.6855498,0.36329 -0.9199219,0.6211 c -0.2304712,0.25782 -0.4101585,0.54102 -0.5390625,0.84961 c -0.2187519,0.53125 -0.3281268,1.10742 -0.328125,1.72851 c -1.8e-6,0.76563 0.1308574,1.40625 0.3925781,1.92188 c 0.2656225,0.51562 0.6503878,0.89844 1.1542969,1.14843 c 0.5039024,0.25 1.0390581,0.375 1.6054687,0.375 c 0.4921821,0 0.9726508,-0.0937 1.4414058,-0.28125 c 0.468744,-0.1914 0.824212,-0.39453 1.066407,-0.60937 l 0,-1.59961 l -2.5253909,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11414"
inkscape:connector-curvature="0" />
<path
d="M 14.459417,432.7612 L 14.459417,424.17136 L 17.699651,424.17136 C 18.269959,424.17136 18.705505,424.19871 19.006292,424.25339 C 19.428161,424.32371 19.781676,424.45847 20.066839,424.65768 C 20.351988,424.853 20.580504,425.1284 20.752386,425.48386 C 20.928159,425.83933 21.01605,426.22996 21.016057,426.65573 C 21.01605,427.38621 20.783628,428.00535 20.318792,428.51315 C 19.853942,429.01706 19.014099,429.26902 17.799261,429.26901 L 15.596136,429.26901 L 15.596136,432.7612 L 14.459417,432.7612 M 15.596136,428.25534 L 17.816839,428.25534 C 18.551209,428.25535 19.072693,428.11863 19.381292,427.84518 C 19.689879,427.57175 19.844176,427.18699 19.844182,426.69089 C 19.844176,426.33152 19.752379,426.02488 19.568792,425.77097 C 19.389099,425.51316 19.150817,425.34324 18.853948,425.2612 C 18.662537,425.21043 18.309021,425.18504 17.793401,425.18503 L 15.596136,425.18503 L 15.596136,428.25534"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 14.459417,432.7612 l 0,-8.58984 l 3.240234,0 c 0.570308,0 1.005854,0.0274 1.306641,0.082 c 0.421869,0.0703 0.775384,0.20508 1.060547,0.40429 c 0.285149,0.19532 0.513665,0.47072 0.685547,0.82618 c 0.175773,0.35547 0.263664,0.7461 0.263671,1.17187 c -7e-6,0.73048 -0.232429,1.34962 -0.697265,1.85742 c -0.46485,0.50391 -1.304693,0.75587 -2.519531,0.75586 l -2.203125,0 l 0,3.49219 l -1.136719,0 m 1.136719,-4.50586 l 2.220703,0 c 0.73437,10e-6 1.255854,-0.13671 1.564453,-0.41016 c 0.308587,-0.27343 0.462884,-0.65819 0.46289,-1.15429 c -6e-6,-0.35937 -0.0918,-0.66601 -0.27539,-0.91992 c -0.179693,-0.25781 -0.417975,-0.42773 -0.714844,-0.50977 c -0.191411,-0.0508 -0.544927,-0.0762 -1.060547,-0.0762 l -2.197265,0 l 0,3.07031"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11416"
inkscape:connector-curvature="0" />
<path
d="M 22.088323,430.00143 L 23.160589,429.90768 C 23.211368,430.33737 23.328556,430.69089 23.512151,430.96823 C 23.699649,431.24167 23.988711,431.46433 24.379339,431.6362 C 24.769961,431.80417 25.209413,431.88815 25.697698,431.88815 C 26.131287,431.88815 26.514099,431.8237 26.846136,431.69479 C 27.178161,431.56589 27.424255,431.39011 27.584417,431.16745 C 27.748473,430.94089 27.830504,430.6948 27.830511,430.42917 C 27.830504,430.15964 27.752379,429.92527 27.596136,429.72604 C 27.43988,429.52292 27.182067,429.353 26.822698,429.21628 C 26.592224,429.12644 26.082459,428.98777 25.293401,428.80026 C 24.504336,428.60886 23.951602,428.42917 23.635198,428.2612 C 23.22504,428.04636 22.9184,427.78074 22.715276,427.46432 C 22.516057,427.14402 22.416447,426.7866 22.416448,426.39206 C 22.416447,425.95847 22.539494,425.55418 22.785589,425.17917 C 23.031681,424.80027 23.391056,424.51316 23.863714,424.31784 C 24.336367,424.12254 24.861757,424.02488 25.439886,424.02487 C 26.0766,424.02488 26.637146,424.1284 27.121526,424.33542 C 27.609801,424.53855 27.984801,424.83933 28.246526,425.23776 C 28.508238,425.63621 28.648863,426.08738 28.668401,426.59128 L 27.578557,426.67331 C 27.519958,426.13035 27.320739,425.72019 26.980901,425.44284 C 26.644959,425.1655 26.146912,425.02683 25.486761,425.02682 C 24.799257,425.02683 24.297305,425.15379 23.980901,425.40768 C 23.668399,425.65769 23.512149,425.96043 23.512151,426.31589 C 23.512149,426.62449 23.623477,426.87839 23.846136,427.07761 C 24.064883,427.27683 24.635195,427.48191 25.557073,427.69284 C 26.482849,427.89988 27.117614,428.08152 27.46137,428.23776 C 27.961364,428.46824 28.330504,428.7612 28.568792,429.11667 C 28.807066,429.46823 28.926206,429.87448 28.926214,430.33542 C 28.926206,430.79245 28.795347,431.22409 28.533636,431.63034 C 28.27191,432.03269 27.894957,432.34714 27.402776,432.5737 C 26.91449,432.79636 26.363709,432.90768 25.750432,432.90768 C 24.973085,432.90768 24.320742,432.7944 23.793401,432.56784 C 23.269962,432.34128 22.857853,432.00144 22.557073,431.54831 C 22.260197,431.09128 22.103948,430.57566 22.088323,430.00143"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 22.088323,430.00143 l 1.072266,-0.0937 c 0.05078,0.42969 0.167967,0.78321 0.351562,1.06055 c 0.187498,0.27344 0.47656,0.4961 0.867188,0.66797 c 0.390622,0.16797 0.830074,0.25195 1.318359,0.25195 c 0.433589,0 0.816401,-0.0645 1.148438,-0.19336 c 0.332025,-0.1289 0.578119,-0.30468 0.738281,-0.52734 c 0.164056,-0.22656 0.246087,-0.47265 0.246094,-0.73828 c -7e-6,-0.26953 -0.07813,-0.5039 -0.234375,-0.70313 c -0.156256,-0.20312 -0.414069,-0.37304 -0.773438,-0.50976 c -0.230474,-0.0898 -0.740239,-0.22851 -1.529297,-0.41602 c -0.789065,-0.1914 -1.341799,-0.37109 -1.658203,-0.53906 c -0.410158,-0.21484 -0.716798,-0.48046 -0.919922,-0.79688 c -0.199219,-0.3203 -0.298829,-0.67772 -0.298828,-1.07226 c -10e-7,-0.43359 0.123046,-0.83788 0.369141,-1.21289 c 0.246092,-0.3789 0.605467,-0.66601 1.078125,-0.86133 c 0.472653,-0.1953 0.998043,-0.29296 1.576172,-0.29297 c 0.636714,10e-6 1.19726,0.10353 1.68164,0.31055 c 0.488275,0.20313 0.863275,0.50391 1.125,0.90234 c 0.261712,0.39845 0.402337,0.84962 0.421875,1.35352 l -1.089844,0.082 c -0.0586,-0.54296 -0.257818,-0.95312 -0.597656,-1.23047 c -0.335942,-0.27734 -0.833989,-0.41601 -1.49414,-0.41602 c -0.687504,1e-5 -1.189456,0.12697 -1.50586,0.38086 c -0.312502,0.25001 -0.468752,0.55275 -0.46875,0.90821 c -2e-6,0.3086 0.111326,0.5625 0.333985,0.76172 c 0.218747,0.19922 0.789059,0.4043 1.710937,0.61523 c 0.925776,0.20704 1.560541,0.38868 1.904297,0.54492 c 0.499994,0.23048 0.869134,0.52344 1.107422,0.87891 c 0.238274,0.35156 0.357414,0.75781 0.357422,1.21875 c -8e-6,0.45703 -0.130867,0.88867 -0.392578,1.29492 c -0.261726,0.40235 -0.638679,0.7168 -1.13086,0.94336 c -0.488286,0.22266 -1.039067,0.33398 -1.652344,0.33398 c -0.777347,0 -1.42969,-0.11328 -1.957031,-0.33984 c -0.523439,-0.22656 -0.935548,-0.5664 -1.236328,-1.01953 c -0.296876,-0.45703 -0.453125,-0.97265 -0.46875,-1.54688"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11418"
inkscape:connector-curvature="0" />
<path
d="M 63.467692,427.73972 L 63.467692,426.53854 L 64.668864,426.53854 L 64.668864,427.73972 L 63.467692,427.73972 M 63.467692,432.7612 L 63.467692,431.56003 L 64.668864,431.56003 L 64.668864,432.7612 L 63.467692,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 63.467692,427.73972 l 0,-1.20118 l 1.201172,0 l 0,1.20118 l -1.201172,0 m 0,5.02148 l 0,-1.20117 l 1.201172,0 l 0,1.20117 l -1.201172,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11420"
inkscape:connector-curvature="0" />
</g>
@ -2359,259 +2397,258 @@
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"
d="m 105.00043,296.84128 c 0.52734,0.36328 1.01367,0.6289 1.45899,0.79687 l -0.33399,0.79102 c -0.61719,-0.22266 -1.23243,-0.57422 -1.8457,-1.05469 c -0.63672,0.35547 -1.33985,0.5332 -2.10938,0.5332 c -0.77734,0 -1.48242,-0.1875 -2.11523,-0.5625 c -0.632814,-0.37499 -1.121095,-0.90234 -1.464844,-1.58203 c -0.339844,-0.67968 -0.509766,-1.44531 -0.509765,-2.29687 c -10e-7,-0.84765 0.171874,-1.61914 0.515625,-2.31446 c 0.343748,-0.6953 0.832029,-1.2246 1.464844,-1.58789 c 0.63671,-0.36327 1.34765,-0.54491 2.13281,-0.54492 c 0.79297,1e-5 1.50781,0.18946 2.14453,0.56836 c 0.63671,0.37501 1.12109,0.90235 1.45313,1.58203 c 0.33593,0.67579 0.5039,1.43946 0.5039,2.29102 c 0,0.70703 -0.10743,1.34375 -0.32226,1.91015 c -0.21485,0.56251 -0.53907,1.05274 -0.97266,1.47071 m -2.50195,-1.45313 c 0.65624,0.1836 1.19726,0.45704 1.62305,0.82032 c 0.66796,-0.60938 1.00194,-1.52539 1.00195,-2.74805 c -1e-5,-0.69531 -0.11915,-1.30273 -0.35742,-1.82227 c -0.23438,-0.51952 -0.58009,-0.92186 -1.03711,-1.20703 c -0.45313,-0.28905 -0.9629,-0.43358 -1.5293,-0.43359 c -0.84766,1e-5 -1.55078,0.29102 -2.10937,0.87304 c -0.558599,0.57814 -0.837896,1.44337 -0.837894,2.59571 c -2e-6,1.11719 0.275388,1.97461 0.826174,2.57226 c 0.55468,0.59766 1.26171,0.89649 2.12109,0.89649 c 0.40625,0 0.78906,-0.0762 1.14844,-0.22852 c -0.35547,-0.23047 -0.73047,-0.39453 -1.125,-0.49219 l 0.27539,-0.82617"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11288"
inkscape:connector-curvature="0" />
<path
d="M 111.76215,297.7612 L 111.76215,296.84714 C 111.27777,297.55026 110.61957,297.90182 109.78754,297.90182 C 109.42035,297.90182 109.0766,297.83151 108.75629,297.69089 C 108.43988,297.55026 108.20356,297.37448 108.04731,297.16354 C 107.89496,296.9487 107.78754,296.68698 107.72504,296.37839 C 107.68207,296.17136 107.66059,295.84323 107.66059,295.39401 L 107.66059,291.53854 L 108.71528,291.53854 L 108.71528,294.98972 C 108.71527,295.5405 108.73676,295.91159 108.77973,296.103 C 108.84613,296.38034 108.98676,296.59909 109.2016,296.75925 C 109.41645,296.9155 109.68207,296.99362 109.99848,296.99362 C 110.31488,296.99362 110.61176,296.91354 110.8891,296.75339 C 111.16644,296.58933 111.36176,296.36862 111.47504,296.09128 C 111.59223,295.81003 111.65082,295.40378 111.65082,294.87253 L 111.65082,291.53854 L 112.70551,291.53854 L 112.70551,297.7612 L 111.76215,297.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 111.76215,297.7612 l 0,-0.91406 c -0.48438,0.70312 -1.14258,1.05468 -1.97461,1.05468 c -0.36719,0 -0.71094,-0.0703 -1.03125,-0.21093 c -0.31641,-0.14063 -0.55273,-0.31641 -0.70898,-0.52735 c -0.15235,-0.21484 -0.25977,-0.47656 -0.32227,-0.78515 c -0.043,-0.20703 -0.0645,-0.53516 -0.0645,-0.98438 l 0,-3.85547 l 1.05469,0 l 0,3.45118 c -1e-5,0.55078 0.0215,0.92187 0.0644,1.11328 c 0.0664,0.27734 0.20703,0.49609 0.42187,0.65625 c 0.21485,0.15625 0.48047,0.23437 0.79688,0.23437 c 0.3164,0 0.61328,-0.0801 0.89062,-0.24023 c 0.27734,-0.16406 0.47266,-0.38477 0.58594,-0.66211 c 0.11719,-0.28125 0.17578,-0.6875 0.17578,-1.21875 l 0,-3.33399 l 1.05469,0 l 0,6.22266 l -0.94336,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11290"
inkscape:connector-curvature="0" />
<path
d="M 118.42426,296.99362 C 118.03363,297.32565 117.65668,297.56003 117.2934,297.69675 C 116.93402,297.83347 116.5473,297.90182 116.13325,297.90182 C 115.44965,297.90182 114.92426,297.73581 114.55707,297.40378 C 114.18989,297.06784 114.00629,296.64011 114.00629,296.12057 C 114.00629,295.81589 114.07465,295.53855 114.21137,295.28854 C 114.35199,295.03464 114.53364,294.83152 114.75629,294.67917 C 114.98285,294.52683 115.23676,294.41159 115.51801,294.33347 C 115.72504,294.27878 116.03754,294.22605 116.45551,294.17526 C 117.30707,294.0737 117.93402,293.95261 118.33637,293.81198 C 118.34027,293.66745 118.34223,293.57566 118.34223,293.53659 C 118.34223,293.10691 118.24262,292.80417 118.0434,292.62839 C 117.77387,292.39011 117.37348,292.27097 116.84223,292.27097 C 116.34613,292.27097 115.97895,292.35886 115.74067,292.53464 C 115.50629,292.70652 115.33246,293.01316 115.21918,293.45456 L 114.18793,293.31393 C 114.28168,292.87253 114.43598,292.51706 114.65082,292.24753 C 114.86567,291.9741 115.17621,291.76511 115.58246,291.62057 C 115.98871,291.47214 116.45941,291.39793 116.99457,291.39792 C 117.52582,291.39793 117.95746,291.46043 118.2895,291.58542 C 118.62152,291.71042 118.86566,291.86863 119.02192,292.06003 C 119.17816,292.24753 119.28754,292.48581 119.35004,292.77487 C 119.38519,292.95456 119.40277,293.27878 119.40278,293.74753 L 119.40278,295.15378 C 119.40277,296.13425 119.42426,296.75534 119.46723,297.01706 C 119.5141,297.27487 119.60394,297.52292 119.73676,297.7612 L 118.6352,297.7612 C 118.52582,297.54245 118.45551,297.28659 118.42426,296.99362 M 118.33637,294.63815 C 117.95355,294.79441 117.37933,294.92722 116.61371,295.03659 C 116.18012,295.09909 115.87348,295.16941 115.69379,295.24753 C 115.5141,295.32566 115.37543,295.44089 115.27778,295.59323 C 115.18012,295.74167 115.13129,295.90769 115.13129,296.09128 C 115.13129,296.37253 115.23676,296.6069 115.4477,296.7944 C 115.66254,296.9819 115.97504,297.07565 116.3852,297.07565 C 116.79144,297.07565 117.15277,296.98776 117.46918,296.81198 C 117.78558,296.63229 118.01801,296.38815 118.16645,296.07956 C 118.27973,295.84128 118.33637,295.48972 118.33637,295.02487 L 118.33637,294.63815"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 118.42426,296.99362 c -0.39063,0.33203 -0.76758,0.56641 -1.13086,0.70313 c -0.35938,0.13672 -0.7461,0.20507 -1.16015,0.20507 c -0.6836,0 -1.20899,-0.16601 -1.57618,-0.49804 c -0.36718,-0.33594 -0.55078,-0.76367 -0.55078,-1.28321 c 0,-0.30468 0.0684,-0.58202 0.20508,-0.83203 c 0.14062,-0.2539 0.32227,-0.45702 0.54492,-0.60937 c 0.22656,-0.15234 0.48047,-0.26758 0.76172,-0.3457 c 0.20703,-0.0547 0.51953,-0.10742 0.9375,-0.15821 c 0.85156,-0.10156 1.47851,-0.22265 1.88086,-0.36328 c 0.004,-0.14453 0.006,-0.23632 0.006,-0.27539 c 0,-0.42968 -0.0996,-0.73242 -0.29883,-0.9082 c -0.26953,-0.23828 -0.66992,-0.35742 -1.20117,-0.35742 c -0.4961,0 -0.86328,0.0879 -1.10156,0.26367 c -0.23438,0.17188 -0.40821,0.47852 -0.52149,0.91992 l -1.03125,-0.14063 c 0.0937,-0.4414 0.24805,-0.79687 0.46289,-1.0664 c 0.21485,-0.27343 0.52539,-0.48242 0.93164,-0.62696 c 0.40625,-0.14843 0.87695,-0.22264 1.41211,-0.22265 c 0.53125,10e-6 0.96289,0.0625 1.29493,0.1875 c 0.33202,0.125 0.57616,0.28321 0.73242,0.47461 c 0.15624,0.1875 0.26562,0.42578 0.32812,0.71484 c 0.0351,0.17969 0.0527,0.50391 0.0527,0.97266 l 0,1.40625 c -1e-5,0.98047 0.0215,1.60156 0.0644,1.86328 c 0.0469,0.25781 0.13671,0.50586 0.26953,0.74414 l -1.10156,0 c -0.10938,-0.21875 -0.17969,-0.47461 -0.21094,-0.76758 m -0.0879,-2.35547 c -0.38282,0.15626 -0.95704,0.28907 -1.72266,0.39844 c -0.43359,0.0625 -0.74023,0.13282 -0.91992,0.21094 c -0.17969,0.0781 -0.31836,0.19336 -0.41601,0.3457 c -0.0977,0.14844 -0.14649,0.31446 -0.14649,0.49805 c 0,0.28125 0.10547,0.51562 0.31641,0.70312 c 0.21484,0.1875 0.52734,0.28125 0.9375,0.28125 c 0.40624,0 0.76757,-0.0879 1.08398,-0.26367 c 0.3164,-0.17969 0.54883,-0.42383 0.69727,-0.73242 c 0.11328,-0.23828 0.16992,-0.58984 0.16992,-1.05469 l 0,-0.38672"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11292"
inkscape:connector-curvature="0" />
<path
d="M 125.08051,297.7612 L 125.08051,296.97604 C 124.68598,297.59323 124.1059,297.90182 123.34028,297.90182 C 122.84418,297.90182 122.38715,297.76511 121.96918,297.49167 C 121.55512,297.21823 121.23285,296.83737 121.00239,296.34909 C 120.77582,295.8569 120.66254,295.29245 120.66254,294.65573 C 120.66254,294.03464 120.76606,293.47214 120.97309,292.96823 C 121.18012,292.46042 121.49067,292.07175 121.90473,291.80222 C 122.31879,291.53269 122.78168,291.39793 123.2934,291.39792 C 123.6684,291.39793 124.00238,291.478 124.29535,291.63815 C 124.58832,291.79441 124.8266,291.99949 125.0102,292.25339 L 125.0102,289.17136 L 126.05903,289.17136 L 126.05903,297.7612 L 125.08051,297.7612 M 121.74653,294.65573 C 121.74653,295.45261 121.91449,296.04831 122.25043,296.44284 C 122.58637,296.83737 122.98285,297.03464 123.43989,297.03464 C 123.90082,297.03464 124.29144,296.84714 124.61176,296.47214 C 124.93598,296.09323 125.09808,295.51706 125.09809,294.74362 C 125.09808,293.89206 124.93402,293.26706 124.6059,292.86862 C 124.27777,292.47019 123.87348,292.27097 123.39301,292.27097 C 122.92426,292.27097 122.53168,292.46238 122.21528,292.84518 C 121.90278,293.228 121.74653,293.83152 121.74653,294.65573"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 125.08051,297.7612 l 0,-0.78516 c -0.39453,0.61719 -0.97461,0.92578 -1.74023,0.92578 c -0.4961,0 -0.95313,-0.13671 -1.3711,-0.41015 c -0.41406,-0.27344 -0.73633,-0.6543 -0.96679,-1.14258 c -0.22657,-0.49219 -0.33985,-1.05664 -0.33985,-1.69336 c 0,-0.62109 0.10352,-1.18359 0.31055,-1.6875 c 0.20703,-0.50781 0.51758,-0.89648 0.93164,-1.16601 c 0.41406,-0.26953 0.87695,-0.40429 1.38867,-0.4043 c 0.375,10e-6 0.70898,0.0801 1.00195,0.24023 c 0.29297,0.15626 0.53125,0.36134 0.71485,0.61524 l 0,-3.08203 l 1.04883,0 l 0,8.58984 l -0.97852,0 m -3.33398,-3.10547 c 0,0.79688 0.16796,1.39258 0.5039,1.78711 c 0.33594,0.39453 0.73242,0.5918 1.18946,0.5918 c 0.46093,0 0.85155,-0.1875 1.17187,-0.5625 c 0.32422,-0.37891 0.48632,-0.95508 0.48633,-1.72852 c -1e-5,-0.85156 -0.16407,-1.47656 -0.49219,-1.875 c -0.32813,-0.39843 -0.73242,-0.59765 -1.21289,-0.59765 c -0.46875,0 -0.86133,0.19141 -1.17773,0.57421 c -0.3125,0.38282 -0.46875,0.98634 -0.46875,1.81055"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11294"
inkscape:connector-curvature="0" />
<path
d="M 126.98481,297.7612 L 130.30707,293.28464 L 127.37739,289.17136 L 128.7309,289.17136 L 130.2895,291.37448 C 130.61371,291.83152 130.84418,292.18308 130.9809,292.42917 C 131.1723,292.11667 131.39887,291.7905 131.66059,291.45065 L 133.3891,289.17136 L 134.62543,289.17136 L 131.60785,293.22018 L 134.85981,297.7612 L 133.45356,297.7612 L 131.29145,294.69675 C 131.17035,294.52097 131.04535,294.32956 130.91645,294.12253 C 130.72504,294.43503 130.58832,294.64987 130.50629,294.76706 L 128.35004,297.7612 L 126.98481,297.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 126.98481,297.7612 l 3.32226,-4.47656 l -2.92968,-4.11328 l 1.35351,0 l 1.5586,2.20312 c 0.32421,0.45704 0.55468,0.8086 0.6914,1.05469 c 0.1914,-0.3125 0.41797,-0.63867 0.67969,-0.97852 l 1.72851,-2.27929 l 1.23633,0 l -3.01758,4.04882 l 3.25196,4.54102 l -1.40625,0 l -2.16211,-3.06445 c -0.1211,-0.17578 -0.2461,-0.36719 -0.375,-0.57422 c -0.19141,0.3125 -0.32813,0.52734 -0.41016,0.64453 l -2.15625,2.99414 l -1.36523,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11296"
inkscape:connector-curvature="0" />
</g>
<g
id="system-cpu-load-temp"
transform="matrix(1.049406,0,0,1.049406,11.986624,-17.045522)">
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"
d="m 94.144964,306.27487 l -1.048828,0.082 c -0.09376,-0.41405 -0.226568,-0.71483 -0.398438,-0.90234 c -0.28516,-0.30077 -0.636723,-0.45116 -1.054687,-0.45117 c -0.335941,1e-5 -0.630863,0.0938 -0.884766,0.28125 c -0.332034,0.24219 -0.593752,0.59571 -0.785156,1.06054 c -0.191408,0.46485 -0.291017,1.12696 -0.298828,1.98633 c 0.253904,-0.38671 0.564451,-0.67382 0.93164,-0.86133 c 0.367185,-0.18749 0.75195,-0.28124 1.154297,-0.28125 c 0.703121,1e-5 1.300776,0.25978 1.792969,0.7793 c 0.496088,0.51563 0.744134,1.1836 0.74414,2.00391 c -6e-6,0.53906 -0.117193,1.04101 -0.351562,1.50586 c -0.230474,0.46094 -0.548833,0.81445 -0.955078,1.06054 c -0.406255,0.2461 -0.867192,0.36914 -1.382813,0.36914 c -0.878908,0 -1.595705,-0.32226 -2.15039,-0.96679 c -0.554688,-0.64844 -0.832032,-1.71484 -0.832032,-3.19922 c 0,-1.66015 0.30664,-2.86718 0.919922,-3.6211 c 0.535155,-0.65624 1.255857,-0.98436 2.16211,-0.98437 c 0.675777,1e-5 1.228511,0.18946 1.658203,0.56836 c 0.433588,0.37891 0.693353,0.90235 0.779297,1.57031 m -4.306641,3.70313 c -2e-6,0.36328 0.07617,0.71094 0.228516,1.04297 c 0.156248,0.33203 0.373044,0.58593 0.65039,0.76171 c 0.277341,0.17188 0.568357,0.25782 0.873047,0.25782 c 0.445309,0 0.828121,-0.17969 1.148438,-0.53907 c 0.320307,-0.35937 0.480463,-0.84765 0.480468,-1.46484 c -5e-6,-0.59375 -0.158208,-1.06054 -0.474609,-1.40039 c -0.31641,-0.34375 -0.714847,-0.51562 -1.195312,-0.51563 c -0.476566,10e-6 -0.880862,0.17188 -1.212891,0.51563 c -0.332033,0.33985 -0.498049,0.78711 -0.498047,1.3418"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11306"
inkscape:connector-curvature="0" />
<path
d="M 95.351995,308.52487 C 95.351994,307.50925 95.45551,306.69285 95.662542,306.07565 C 95.873478,305.45457 96.184025,304.97605 96.594182,304.64011 C 97.008243,304.30418 97.527774,304.13621 98.152776,304.1362 C 98.61371,304.13621 99.018006,304.22996 99.365667,304.41745 C 99.713318,304.60105 100.00043,304.86863 100.227,305.22018 C 100.45355,305.56785 100.63129,305.99363 100.7602,306.49753 C 100.8891,306.99753 100.95355,307.67331 100.95356,308.52487 C 100.95355,309.53269 100.85004,310.34714 100.64301,310.96823 C 100.43597,311.58542 100.12543,312.06394 99.71137,312.40378 C 99.301209,312.73972 98.781679,312.90768 98.152776,312.90768 C 97.324649,312.90768 96.674259,312.61081 96.201604,312.01706 C 95.635197,311.30222 95.351994,310.13816 95.351995,308.52487 M 96.435979,308.52487 C 96.435978,309.93503 96.60004,310.87448 96.928167,311.34323 C 97.260196,311.80808 97.668398,312.0405 98.152776,312.0405 C 98.637147,312.0405 99.043397,311.80612 99.371526,311.33737 C 99.703553,310.86862 99.869568,309.93112 99.869573,308.52487 C 99.869568,307.11081 99.703553,306.17136 99.371526,305.70651 C 99.043397,305.24168 98.633241,305.00925 98.141057,305.00925 C 97.65668,305.00925 97.269961,305.21433 96.980901,305.62448 C 96.617618,306.14793 96.435978,307.11472 96.435979,308.52487"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 95.351995,308.52487 c -10e-7,-1.01562 0.103515,-1.83202 0.310547,-2.44922 c 0.210936,-0.62108 0.521483,-1.0996 0.93164,-1.43554 c 0.414061,-0.33593 0.933592,-0.5039 1.558594,-0.50391 c 0.460934,1e-5 0.86523,0.0938 1.212891,0.28125 c 0.347651,0.1836 0.634763,0.45118 0.861333,0.80273 c 0.22655,0.34767 0.40429,0.77345 0.5332,1.27735 c 0.1289,0.5 0.19335,1.17578 0.19336,2.02734 c -10e-6,1.00782 -0.10352,1.82227 -0.31055,2.44336 c -0.20704,0.61719 -0.51758,1.09571 -0.93164,1.43555 c -0.410161,0.33594 -0.929691,0.5039 -1.558594,0.5039 c -0.828127,0 -1.478517,-0.29687 -1.951172,-0.89062 c -0.566407,-0.71484 -0.84961,-1.8789 -0.849609,-3.49219 m 1.083984,0 c -10e-7,1.41016 0.164061,2.34961 0.492188,2.81836 c 0.332029,0.46485 0.740231,0.69727 1.224609,0.69727 c 0.484371,0 0.890621,-0.23438 1.21875,-0.70313 c 0.332027,-0.46875 0.498042,-1.40625 0.498047,-2.8125 c -5e-6,-1.41406 -0.16602,-2.35351 -0.498047,-2.81836 c -0.328129,-0.46483 -0.738285,-0.69726 -1.230469,-0.69726 c -0.484377,0 -0.871096,0.20508 -1.160156,0.61523 c -0.363283,0.52345 -0.544923,1.49024 -0.544922,2.90039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11308"
inkscape:connector-curvature="0" />
<path
d="M 102.2309,306.23386 C 102.2309,305.62058 102.3852,305.0991 102.69379,304.6694 C 103.00238,304.23972 103.44965,304.02488 104.03559,304.02487 C 104.57465,304.02488 105.01996,304.21824 105.37153,304.60495 C 105.72699,304.98777 105.90473,305.55222 105.90473,306.29831 C 105.90473,307.02488 105.72504,307.58542 105.36567,307.97995 C 105.01019,308.37058 104.57074,308.56589 104.04731,308.56589 C 103.52777,308.56589 103.09418,308.37253 102.74653,307.98581 C 102.40278,307.5991 102.2309,307.01511 102.2309,306.23386 M 104.06489,304.75143 C 103.80317,304.75144 103.58442,304.86472 103.40864,305.09128 C 103.23676,305.31785 103.15082,305.73386 103.15082,306.33932 C 103.15082,306.89011 103.23871,307.27878 103.4145,307.50534 C 103.59027,307.728 103.80707,307.83933 104.06489,307.83932 C 104.33051,307.83933 104.54926,307.72605 104.72114,307.49948 C 104.89691,307.27292 104.9848,306.85886 104.98481,306.25729 C 104.9848,305.70261 104.89691,305.31394 104.72114,305.09128 C 104.54535,304.86472 104.3266,304.75144 104.06489,304.75143 M 104.07075,313.07761 L 108.76996,304.02487 L 109.62543,304.02487 L 104.94379,313.07761 L 104.07075,313.07761 M 107.78559,310.74557 C 107.78558,310.12839 107.93988,309.60691 108.24848,309.18112 C 108.55707,308.75144 109.00628,308.53659 109.59614,308.53659 C 110.13519,308.53659 110.5805,308.72995 110.93207,309.11667 C 111.28753,309.49948 111.46527,310.06394 111.46528,310.81003 C 111.46527,311.53659 111.28558,312.09714 110.92621,312.49167 C 110.57074,312.88229 110.12933,313.07761 109.602,313.07761 C 109.08246,313.07761 108.64886,312.88425 108.30121,312.49753 C 107.95746,312.1069 107.78558,311.52292 107.78559,310.74557 M 109.62543,309.26315 C 109.3598,309.26316 109.1391,309.37644 108.96332,309.603 C 108.79144,309.82956 108.7055,310.24558 108.70551,310.85104 C 108.7055,311.39792 108.79339,311.78464 108.96918,312.0112 C 109.14496,312.23776 109.36175,312.35104 109.61957,312.35104 C 109.8891,312.35104 110.1098,312.23776 110.28168,312.0112 C 110.45745,311.78464 110.54534,311.37058 110.54535,310.76901 C 110.54534,310.21433 110.45745,309.82566 110.28168,309.603 C 110.10589,309.37644 109.88714,309.26316 109.62543,309.26315"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 102.2309,306.23386 c 0,-0.61328 0.1543,-1.13476 0.46289,-1.56446 c 0.30859,-0.42968 0.75586,-0.64452 1.3418,-0.64453 c 0.53906,10e-6 0.98437,0.19337 1.33594,0.58008 c 0.35546,0.38282 0.5332,0.94727 0.5332,1.69336 c 0,0.72657 -0.17969,1.28711 -0.53906,1.68164 c -0.35548,0.39063 -0.79493,0.58594 -1.31836,0.58594 c -0.51954,0 -0.95313,-0.19336 -1.30078,-0.58008 c -0.34375,-0.38671 -0.51563,-0.9707 -0.51563,-1.75195 m 1.83399,-1.48243 c -0.26172,10e-6 -0.48047,0.11329 -0.65625,0.33985 c -0.17188,0.22657 -0.25782,0.64258 -0.25782,1.24804 c 0,0.55079 0.0879,0.93946 0.26368,1.16602 c 0.17577,0.22266 0.39257,0.33399 0.65039,0.33398 c 0.26562,1e-5 0.48437,-0.11327 0.65625,-0.33984 c 0.17577,-0.22656 0.26366,-0.64062 0.26367,-1.24219 c -10e-6,-0.55468 -0.0879,-0.94335 -0.26367,-1.16601 c -0.17579,-0.22656 -0.39454,-0.33984 -0.65625,-0.33985 m 0.006,8.32618 l 4.69921,-9.05274 l 0.85547,0 l -4.68164,9.05274 l -0.87304,0 m 3.71484,-2.33204 c -1e-5,-0.61718 0.15429,-1.13866 0.46289,-1.56445 c 0.30859,-0.42968 0.7578,-0.64453 1.34766,-0.64453 c 0.53905,0 0.98436,0.19336 1.33593,0.58008 c 0.35546,0.38281 0.5332,0.94727 0.53321,1.69336 c -10e-6,0.72656 -0.1797,1.28711 -0.53907,1.68164 c -0.35547,0.39062 -0.79688,0.58594 -1.32421,0.58594 c -0.51954,0 -0.95314,-0.19336 -1.30079,-0.58008 c -0.34375,-0.39063 -0.51563,-0.97461 -0.51562,-1.75196 m 1.83984,-1.48242 c -0.26563,1e-5 -0.48633,0.11329 -0.66211,0.33985 c -0.17188,0.22656 -0.25782,0.64258 -0.25781,1.24804 c -1e-5,0.54688 0.0879,0.9336 0.26367,1.16016 c 0.17578,0.22656 0.39257,0.33984 0.65039,0.33984 c 0.26953,0 0.49023,-0.11328 0.66211,-0.33984 c 0.17577,-0.22656 0.26366,-0.64062 0.26367,-1.24219 c -1e-5,-0.55468 -0.0879,-0.94335 -0.26367,-1.16601 c -0.17579,-0.22656 -0.39454,-0.33984 -0.65625,-0.33985"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11310"
inkscape:connector-curvature="0" />
<path
d="M 115.90668,310.18307 L 115.90668,309.12253 L 119.14692,309.12253 L 119.14692,310.18307 L 115.90668,310.18307"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 115.90668,310.18307 l 0,-1.06054 l 3.24024,0 l 0,1.06054 l -3.24024,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11312"
inkscape:connector-curvature="0" />
<path
d="M 123.35981,310.5112 L 124.46723,310.41745 C 124.54926,310.95651 124.73871,311.36276 125.03559,311.6362 C 125.33637,311.90573 125.6977,312.0405 126.11957,312.0405 C 126.62738,312.0405 127.05707,311.84909 127.40864,311.46628 C 127.76019,311.08347 127.93597,310.57566 127.93598,309.94284 C 127.93597,309.34128 127.76605,308.86667 127.42621,308.51901 C 127.09027,308.17136 126.64887,307.99753 126.10199,307.99753 C 125.76215,307.99753 125.45551,308.07566 125.18207,308.2319 C 124.90863,308.38425 124.69379,308.58347 124.53754,308.82956 L 123.54731,308.70065 L 124.37934,304.28854 L 128.65082,304.28854 L 128.65082,305.29636 L 125.22309,305.29636 L 124.7602,307.60495 C 125.27582,307.24558 125.81684,307.06589 126.38324,307.06589 C 127.13324,307.06589 127.76605,307.32566 128.28168,307.84518 C 128.7973,308.36472 129.05511,309.03269 129.05512,309.84909 C 129.05511,310.62644 128.82855,311.29831 128.37543,311.86472 C 127.82465,312.56003 127.07269,312.90768 126.11957,312.90768 C 125.33832,312.90768 124.69965,312.68893 124.20356,312.25143 C 123.71137,311.81394 123.43012,311.23386 123.35981,310.5112"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 123.35981,310.5112 l 1.10742,-0.0937 c 0.082,0.53906 0.27148,0.94531 0.56836,1.21875 c 0.30078,0.26953 0.66211,0.4043 1.08398,0.4043 c 0.50781,0 0.9375,-0.19141 1.28907,-0.57422 c 0.35155,-0.38281 0.52733,-0.89062 0.52734,-1.52344 c -1e-5,-0.60156 -0.16993,-1.07617 -0.50977,-1.42383 c -0.33594,-0.34765 -0.77734,-0.52148 -1.32422,-0.52148 c -0.33984,0 -0.64648,0.0781 -0.91992,0.23437 c -0.27344,0.15235 -0.48828,0.35157 -0.64453,0.59766 l -0.99023,-0.12891 l 0.83203,-4.41211 l 4.27148,0 l 0,1.00782 l -3.42773,0 l -0.46289,2.30859 c 0.51562,-0.35937 1.05664,-0.53906 1.62304,-0.53906 c 0.75,0 1.38281,0.25977 1.89844,0.77929 c 0.51562,0.51954 0.77343,1.18751 0.77344,2.00391 c -10e-6,0.77735 -0.22657,1.44922 -0.67969,2.01563 c -0.55078,0.69531 -1.30274,1.04296 -2.25586,1.04296 c -0.78125,0 -1.41992,-0.21875 -1.91601,-0.65625 c -0.49219,-0.43749 -0.77344,-1.01757 -0.84375,-1.74023"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11314"
inkscape:connector-curvature="0" />
<path
d="M 130.03949,308.52487 C 130.03949,307.50925 130.14301,306.69285 130.35004,306.07565 C 130.56098,305.45457 130.87152,304.97605 131.28168,304.64011 C 131.69574,304.30418 132.21527,304.13621 132.84028,304.1362 C 133.30121,304.13621 133.70551,304.22996 134.05317,304.41745 C 134.40082,304.60105 134.68793,304.86863 134.91449,305.22018 C 135.14105,305.56785 135.31879,305.99363 135.4477,306.49753 C 135.5766,306.99753 135.64105,307.67331 135.64106,308.52487 C 135.64105,309.53269 135.53754,310.34714 135.33051,310.96823 C 135.12347,311.58542 134.81293,312.06394 134.39887,312.40378 C 133.98871,312.73972 133.46918,312.90768 132.84028,312.90768 C 132.01215,312.90768 131.36176,312.61081 130.8891,312.01706 C 130.3227,311.30222 130.03949,310.13816 130.03949,308.52487 M 131.12348,308.52487 C 131.12348,309.93503 131.28754,310.87448 131.61567,311.34323 C 131.9477,311.80808 132.3559,312.0405 132.84028,312.0405 C 133.32465,312.0405 133.7309,311.80612 134.05903,311.33737 C 134.39105,310.86862 134.55707,309.93112 134.55707,308.52487 C 134.55707,307.11081 134.39105,306.17136 134.05903,305.70651 C 133.7309,305.24168 133.32074,305.00925 132.82856,305.00925 C 132.34418,305.00925 131.95746,305.21433 131.6684,305.62448 C 131.30512,306.14793 131.12348,307.11472 131.12348,308.52487"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 130.03949,308.52487 c 0,-1.01562 0.10352,-1.83202 0.31055,-2.44922 c 0.21094,-0.62108 0.52148,-1.0996 0.93164,-1.43554 c 0.41406,-0.33593 0.93359,-0.5039 1.5586,-0.50391 c 0.46093,1e-5 0.86523,0.0938 1.21289,0.28125 c 0.34765,0.1836 0.63476,0.45118 0.86132,0.80273 c 0.22656,0.34767 0.4043,0.77345 0.53321,1.27735 c 0.1289,0.5 0.19335,1.17578 0.19336,2.02734 c -1e-5,1.00782 -0.10352,1.82227 -0.31055,2.44336 c -0.20704,0.61719 -0.51758,1.09571 -0.93164,1.43555 c -0.41016,0.33594 -0.92969,0.5039 -1.55859,0.5039 c -0.82813,0 -1.47852,-0.29687 -1.95118,-0.89062 c -0.5664,-0.71484 -0.84961,-1.8789 -0.84961,-3.49219 m 1.08399,0 c 0,1.41016 0.16406,2.34961 0.49219,2.81836 c 0.33203,0.46485 0.74023,0.69727 1.22461,0.69727 c 0.48437,0 0.89062,-0.23438 1.21875,-0.70313 c 0.33202,-0.46875 0.49804,-1.40625 0.49804,-2.8125 c 0,-1.41406 -0.16602,-2.35351 -0.49804,-2.81836 c -0.32813,-0.46483 -0.73829,-0.69726 -1.23047,-0.69726 c -0.48438,0 -0.8711,0.20508 -1.16016,0.61523 c -0.36328,0.52345 -0.54492,1.49024 -0.54492,2.90039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11316"
inkscape:connector-curvature="0" />
<path
d="M 136.97114,305.64792 C 136.97113,305.19871 137.12934,304.8159 137.44574,304.49948 C 137.76606,304.18308 138.14887,304.02488 138.59418,304.02487 C 139.0473,304.02488 139.43207,304.18308 139.74848,304.49948 C 140.06488,304.8159 140.22308,305.19871 140.22309,305.64792 C 140.22308,306.09714 140.06293,306.48191 139.74262,306.80222 C 139.42621,307.11863 139.0434,307.27683 138.59418,307.27682 C 138.14887,307.27683 137.76606,307.11863 137.44574,306.80222 C 137.12934,306.48582 136.97113,306.10105 136.97114,305.64792 M 137.60981,305.64792 C 137.60981,305.92136 137.70551,306.15574 137.89692,306.35104 C 138.09223,306.54246 138.3266,306.63816 138.60004,306.63815 C 138.86957,306.63816 139.10004,306.54246 139.29145,306.35104 C 139.48676,306.15574 139.58441,305.92136 139.58442,305.64792 C 139.58441,305.37449 139.48676,305.14207 139.29145,304.95065 C 139.10004,304.75535 138.86957,304.65769 138.60004,304.65768 C 138.3266,304.65769 138.09223,304.75535 137.89692,304.95065 C 137.70551,305.14207 137.60981,305.37449 137.60981,305.64792"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 136.97114,305.64792 c -1e-5,-0.44921 0.1582,-0.83202 0.4746,-1.14844 c 0.32032,-0.3164 0.70313,-0.4746 1.14844,-0.47461 c 0.45312,10e-6 0.83789,0.15821 1.1543,0.47461 c 0.3164,0.31642 0.4746,0.69923 0.47461,1.14844 c -1e-5,0.44922 -0.16016,0.83399 -0.48047,1.1543 c -0.31641,0.31641 -0.69922,0.47461 -1.14844,0.4746 c -0.44531,1e-5 -0.82812,-0.15819 -1.14844,-0.4746 c -0.3164,-0.3164 -0.47461,-0.70117 -0.4746,-1.1543 m 0.63867,0 c 0,0.27344 0.0957,0.50782 0.28711,0.70312 c 0.19531,0.19142 0.42968,0.28712 0.70312,0.28711 c 0.26953,1e-5 0.5,-0.0957 0.69141,-0.28711 c 0.19531,-0.1953 0.29296,-0.42968 0.29297,-0.70312 c -1e-5,-0.27343 -0.0977,-0.50585 -0.29297,-0.69727 c -0.19141,-0.1953 -0.42188,-0.29296 -0.69141,-0.29297 c -0.27344,10e-6 -0.50781,0.0977 -0.70312,0.29297 c -0.19141,0.19142 -0.28711,0.42384 -0.28711,0.69727"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11318"
inkscape:connector-curvature="0" />
<path
d="M 148.08051,309.74948 L 149.21723,310.03659 C 148.97894,310.97019 148.54925,311.68308 147.92817,312.17526 C 147.31097,312.66354 146.55511,312.90768 145.66059,312.90768 C 144.7348,312.90768 143.9809,312.72018 143.39887,312.34518 C 142.82074,311.96628 142.37934,311.4194 142.07465,310.70456 C 141.77387,309.98972 141.62348,309.22214 141.62348,308.40182 C 141.62348,307.5073 141.7934,306.728 142.13324,306.06393 C 142.47699,305.39597 142.96332,304.89011 143.59223,304.54636 C 144.22504,304.19871 144.92035,304.02488 145.67817,304.02487 C 146.53754,304.02488 147.26019,304.24363 147.84614,304.68112 C 148.43207,305.11863 148.84027,305.73386 149.07074,306.52682 L 147.9516,306.7905 C 147.75238,306.1655 147.46332,305.71043 147.08442,305.42526 C 146.7055,305.14011 146.22894,304.99754 145.65473,304.99753 C 144.99457,304.99754 144.44184,305.15574 143.99653,305.47214 C 143.55512,305.78855 143.24457,306.21433 143.06489,306.74948 C 142.8852,307.28074 142.79535,307.82956 142.79535,308.39597 C 142.79535,309.12644 142.90082,309.76511 143.11176,310.31198 C 143.3266,310.85495 143.65863,311.2612 144.10785,311.53073 C 144.55707,311.80026 145.0434,311.93503 145.56684,311.93503 C 146.20355,311.93503 146.74261,311.75144 147.18403,311.38425 C 147.62543,311.01706 147.92425,310.47214 148.08051,309.74948"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 148.08051,309.74948 l 1.13672,0.28711 c -0.23829,0.9336 -0.66798,1.64649 -1.28906,2.13867 c -0.6172,0.48828 -1.37306,0.73242 -2.26758,0.73242 c -0.92579,0 -1.67969,-0.1875 -2.26172,-0.5625 c -0.57813,-0.3789 -1.01953,-0.92578 -1.32422,-1.64062 c -0.30078,-0.71484 -0.45117,-1.48242 -0.45117,-2.30274 c 0,-0.89452 0.16992,-1.67382 0.50976,-2.33789 c 0.34375,-0.66796 0.83008,-1.17382 1.45899,-1.51757 c 0.63281,-0.34765 1.32812,-0.52148 2.08594,-0.52149 c 0.85937,10e-6 1.58202,0.21876 2.16797,0.65625 c 0.58593,0.43751 0.99413,1.05274 1.2246,1.8457 l -1.11914,0.26368 c -0.19922,-0.625 -0.48828,-1.08007 -0.86718,-1.36524 c -0.37892,-0.28515 -0.85548,-0.42772 -1.42969,-0.42773 c -0.66016,1e-5 -1.21289,0.15821 -1.6582,0.47461 c -0.44141,0.31641 -0.75196,0.74219 -0.93164,1.27734 c -0.17969,0.53126 -0.26954,1.08008 -0.26954,1.64649 c 0,0.73047 0.10547,1.36914 0.31641,1.91601 c 0.21484,0.54297 0.54687,0.94922 0.99609,1.21875 c 0.44922,0.26953 0.93555,0.4043 1.45899,0.4043 c 0.63671,0 1.17577,-0.18359 1.61719,-0.55078 c 0.4414,-0.36719 0.74022,-0.91211 0.89648,-1.63477"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11320"
inkscape:connector-curvature="0" />
</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"
d="m 106.08246,327.7612 l -1.05468,0 l 0,-6.7207 c -0.25391,0.24219 -0.5879,0.48438 -1.00196,0.72656 c -0.41015,0.24219 -0.77929,0.42383 -1.10742,0.54492 l 0,-1.01953 c 0.58984,-0.27734 1.10547,-0.61327 1.54688,-1.00781 c 0.4414,-0.39453 0.7539,-0.77734 0.9375,-1.14844 l 0.67968,0 l 0,8.625"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11338"
inkscape:connector-curvature="0" />
<path
d="M 112.17035,327.7612 L 112.17035,325.70456 L 108.44379,325.70456 L 108.44379,324.73776 L 112.36371,319.17136 L 113.22504,319.17136 L 113.22504,324.73776 L 114.3852,324.73776 L 114.3852,325.70456 L 113.22504,325.70456 L 113.22504,327.7612 L 112.17035,327.7612 M 112.17035,324.73776 L 112.17035,320.86472 L 109.4809,324.73776 L 112.17035,324.73776"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 112.17035,327.7612 l 0,-2.05664 l -3.72656,0 l 0,-0.9668 l 3.91992,-5.5664 l 0.86133,0 l 0,5.5664 l 1.16016,0 l 0,0.9668 l -1.16016,0 l 0,2.05664 l -1.05469,0 m 0,-3.02344 l 0,-3.87304 l -2.68945,3.87304 l 2.68945,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11340"
inkscape:connector-curvature="0" />
<path
d="M 115.46918,323.52487 C 115.46918,322.50925 115.5727,321.69285 115.77973,321.07565 C 115.99067,320.45457 116.30121,319.97605 116.71137,319.64011 C 117.12543,319.30418 117.64496,319.13621 118.26996,319.1362 C 118.7309,319.13621 119.13519,319.22996 119.48285,319.41745 C 119.83051,319.60105 120.11762,319.86863 120.34418,320.22018 C 120.57074,320.56785 120.74847,320.99363 120.87739,321.49753 C 121.00629,321.99753 121.07074,322.67331 121.07075,323.52487 C 121.07074,324.53269 120.96722,325.34714 120.7602,325.96823 C 120.55316,326.58542 120.24262,327.06394 119.82856,327.40378 C 119.4184,327.73972 118.89887,327.90768 118.26996,327.90768 C 117.44184,327.90768 116.79145,327.61081 116.31879,327.01706 C 115.75239,326.30222 115.46918,325.13816 115.46918,323.52487 M 116.55317,323.52487 C 116.55317,324.93503 116.71723,325.87448 117.04535,326.34323 C 117.37738,326.80808 117.78559,327.0405 118.26996,327.0405 C 118.75433,327.0405 119.16058,326.80612 119.48871,326.33737 C 119.82074,325.86862 119.98676,324.93112 119.98676,323.52487 C 119.98676,322.11081 119.82074,321.17136 119.48871,320.70651 C 119.16058,320.24168 118.75043,320.00925 118.25825,320.00925 C 117.77387,320.00925 117.38715,320.21433 117.09809,320.62448 C 116.73481,321.14793 116.55317,322.11472 116.55317,323.52487"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 115.46918,323.52487 c 0,-1.01562 0.10352,-1.83202 0.31055,-2.44922 c 0.21094,-0.62108 0.52148,-1.0996 0.93164,-1.43554 c 0.41406,-0.33593 0.93359,-0.5039 1.55859,-0.50391 c 0.46094,1e-5 0.86523,0.0938 1.21289,0.28125 c 0.34766,0.1836 0.63477,0.45118 0.86133,0.80273 c 0.22656,0.34767 0.40429,0.77345 0.53321,1.27735 c 0.1289,0.5 0.19335,1.17578 0.19336,2.02734 c -1e-5,1.00782 -0.10353,1.82227 -0.31055,2.44336 c -0.20704,0.61719 -0.51758,1.09571 -0.93164,1.43555 c -0.41016,0.33594 -0.92969,0.5039 -1.5586,0.5039 c -0.82812,0 -1.47851,-0.29687 -1.95117,-0.89062 c -0.5664,-0.71484 -0.84961,-1.8789 -0.84961,-3.49219 m 1.08399,0 c 0,1.41016 0.16406,2.34961 0.49218,2.81836 c 0.33203,0.46485 0.74024,0.69727 1.22461,0.69727 c 0.48437,0 0.89062,-0.23438 1.21875,-0.70313 c 0.33203,-0.46875 0.49805,-1.40625 0.49805,-2.8125 c 0,-1.41406 -0.16602,-2.35351 -0.49805,-2.81836 c -0.32813,-0.46483 -0.73828,-0.69726 -1.23046,-0.69726 c -0.48438,0 -0.8711,0.20508 -1.16016,0.61523 c -0.36328,0.52345 -0.54492,1.49024 -0.54492,2.90039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11342"
inkscape:connector-curvature="0" />
<path
d="M 122.4477,327.7612 L 122.4477,319.17136 L 123.50239,319.17136 L 123.50239,324.06979 L 125.99848,321.53854 L 127.36371,321.53854 L 124.98481,323.84714 L 127.60395,327.7612 L 126.30317,327.7612 L 124.24653,324.57956 L 123.50239,325.2944 L 123.50239,327.7612 L 122.4477,327.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 122.4477,327.7612 l 0,-8.58984 l 1.05469,0 l 0,4.89843 l 2.49609,-2.53125 l 1.36523,0 l -2.3789,2.3086 l 2.61914,3.91406 l -1.30078,0 l -2.05664,-3.18164 l -0.74414,0.71484 l 0,2.4668 l -1.05469,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11344"
inkscape:connector-curvature="0" />
</g>
<g
id="system-attitude-estimation-algo"
transform="matrix(1.0257274,0,0,1.0257274,0.13365182,-65.562105)">
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"
d="m 79.307073,399.74948 l 1.136719,0.28711 c -0.238289,0.9336 -0.667976,1.64649 -1.289063,2.13867 c -0.617193,0.48828 -1.373052,0.73242 -2.267578,0.73242 c -0.925785,0 -1.67969,-0.1875 -2.261719,-0.5625 c -0.578126,-0.3789 -1.019532,-0.92578 -1.324218,-1.64062 c -0.300782,-0.71484 -0.451173,-1.48242 -0.451172,-2.30274 c -10e-7,-0.89452 0.169921,-1.67382 0.509765,-2.33789 c 0.343749,-0.66796 0.830077,-1.17382 1.458985,-1.51757 c 0.632809,-0.34765 1.328121,-0.52148 2.085937,-0.52149 c 0.85937,10e-6 1.582025,0.21876 2.167969,0.65625 c 0.58593,0.43751 0.994133,1.05274 1.224609,1.8457 l -1.11914,0.26368 c -0.199226,-0.625 -0.488288,-1.08007 -0.867188,-1.36524 c -0.378912,-0.28515 -0.855474,-0.42772 -1.429687,-0.42773 c -0.66016,1e-5 -1.212894,0.15821 -1.658203,0.47461 c -0.441409,0.31641 -0.751956,0.74219 -0.931641,1.27734 c -0.179689,0.53126 -0.269533,1.08008 -0.269531,1.64649 c -2e-6,0.73047 0.105467,1.36914 0.316406,1.91601 c 0.214842,0.54297 0.546872,0.94922 0.996094,1.21875 c 0.449215,0.26953 0.935543,0.4043 1.458984,0.4043 c 0.636714,0 1.175776,-0.18359 1.617188,-0.55078 c 0.441399,-0.36719 0.740227,-0.91211 0.896484,-1.63477"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11368"
inkscape:connector-curvature="0" />
<path
d="M 81.322698,399.64987 C 81.322698,398.49753 81.64301,397.64402 82.283636,397.08932 C 82.81879,396.62839 83.471133,396.39793 84.240667,396.39792 C 85.096131,396.39793 85.795349,396.67917 86.338323,397.24167 C 86.881286,397.80027 87.15277,398.5737 87.152776,399.56198 C 87.15277,400.36276 87.031676,400.99362 86.789495,401.45456 C 86.551208,401.91159 86.201599,402.26706 85.740667,402.52097 C 85.283631,402.77487 84.783632,402.90182 84.240667,402.90182 C 83.369571,402.90182 82.664493,402.62253 82.125432,402.06393 C 81.590276,401.50534 81.322698,400.70066 81.322698,399.64987 M 82.406682,399.64987 C 82.406681,400.44675 82.580509,401.0444 82.928167,401.44284 C 83.275821,401.83737 83.71332,402.03464 84.240667,402.03464 C 84.764101,402.03464 85.199647,401.83542 85.547307,401.43698 C 85.894959,401.03855 86.068787,400.43112 86.068792,399.61472 C 86.068787,398.84519 85.893006,398.26316 85.541448,397.86862 C 85.193788,397.47019 84.760194,397.27097 84.240667,397.27097 C 83.71332,397.27097 83.275821,397.46824 82.928167,397.86276 C 82.580509,398.2573 82.406681,398.853 82.406682,399.64987"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 81.322698,399.64987 c 0,-1.15234 0.320312,-2.00585 0.960938,-2.56055 c 0.535154,-0.46093 1.187497,-0.69139 1.957031,-0.6914 c 0.855464,10e-6 1.554682,0.28125 2.097656,0.84375 c 0.542963,0.5586 0.814447,1.33203 0.814453,2.32031 c -6e-6,0.80078 -0.1211,1.43164 -0.363281,1.89258 c -0.238287,0.45703 -0.587896,0.8125 -1.048828,1.06641 c -0.457036,0.2539 -0.957035,0.38085 -1.5,0.38085 c -0.871096,0 -1.576174,-0.27929 -2.115235,-0.83789 c -0.535156,-0.55859 -0.802734,-1.36327 -0.802734,-2.41406 m 1.083984,0 c -10e-7,0.79688 0.173827,1.39453 0.521485,1.79297 c 0.347654,0.39453 0.785153,0.5918 1.3125,0.5918 c 0.523434,0 0.95898,-0.19922 1.30664,-0.59766 c 0.347652,-0.39843 0.52148,-1.00586 0.521485,-1.82226 c -5e-6,-0.76953 -0.175786,-1.35156 -0.527344,-1.7461 c -0.34766,-0.39843 -0.781254,-0.59765 -1.300781,-0.59765 c -0.527347,0 -0.964846,0.19727 -1.3125,0.59179 c -0.347658,0.39454 -0.521486,0.99024 -0.521485,1.78711"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11370"
inkscape:connector-curvature="0" />
<path
d="M 88.394964,402.7612 L 88.394964,396.53854 L 89.338323,396.53854 L 89.338323,397.41159 C 89.533634,397.10691 89.793399,396.86277 90.11762,396.67917 C 90.441836,396.49167 90.810976,396.39793 91.225042,396.39792 C 91.685975,396.39793 92.062928,396.49363 92.355901,396.68503 C 92.652771,396.87644 92.861755,397.14402 92.982854,397.48776 C 93.475036,396.76121 94.11566,396.39793 94.904729,396.39792 C 95.521909,396.39793 95.996518,396.5698 96.328557,396.91354 C 96.66058,397.25339 96.826595,397.77878 96.826604,398.48972 L 96.826604,402.7612 L 95.777776,402.7612 L 95.777776,398.84128 C 95.777768,398.41941 95.742612,398.11667 95.672307,397.93307 C 95.605893,397.74558 95.482846,397.59519 95.303167,397.4819 C 95.123472,397.36863 94.912535,397.31199 94.670354,397.31198 C 94.232848,397.31199 93.869567,397.45847 93.580511,397.75143 C 93.291442,398.0405 93.146911,398.50534 93.146917,399.14597 L 93.146917,402.7612 L 92.092229,402.7612 L 92.092229,398.71823 C 92.092225,398.24949 92.006287,397.89792 91.834417,397.66354 C 91.662538,397.42917 91.381288,397.31199 90.990667,397.31198 C 90.693789,397.31199 90.418398,397.39011 90.164495,397.54636 C 89.914493,397.70261 89.732852,397.93113 89.619573,398.2319 C 89.50629,398.53269 89.449649,398.96628 89.449651,399.53268 L 89.449651,402.7612 L 88.394964,402.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 88.394964,402.7612 l 0,-6.22266 l 0.943359,0 l 0,0.87305 c 0.195311,-0.30468 0.455076,-0.54882 0.779297,-0.73242 c 0.324216,-0.1875 0.693356,-0.28124 1.107422,-0.28125 c 0.460933,10e-6 0.837886,0.0957 1.130859,0.28711 c 0.29687,0.19141 0.505854,0.45899 0.626953,0.80273 c 0.492182,-0.72655 1.132806,-1.08983 1.921875,-1.08984 c 0.61718,10e-6 1.091789,0.17188 1.423828,0.51562 c 0.332023,0.33985 0.498038,0.86524 0.498047,1.57618 l 0,4.27148 l -1.048828,0 l 0,-3.91992 c -8e-6,-0.42187 -0.03516,-0.72461 -0.105469,-0.90821 c -0.06641,-0.18749 -0.189461,-0.33788 -0.36914,-0.45117 c -0.179695,-0.11327 -0.390632,-0.16991 -0.632813,-0.16992 c -0.437506,10e-6 -0.800787,0.14649 -1.089843,0.43945 c -0.289069,0.28907 -0.4336,0.75391 -0.433594,1.39454 l 0,3.61523 l -1.054688,0 l 0,-4.04297 c -4e-6,-0.46874 -0.08594,-0.82031 -0.257812,-1.05469 c -0.171879,-0.23437 -0.453129,-0.35155 -0.84375,-0.35156 c -0.296878,10e-6 -0.572269,0.0781 -0.826172,0.23438 c -0.250002,0.15625 -0.431643,0.38477 -0.544922,0.68554 c -0.113283,0.30079 -0.169924,0.73438 -0.169922,1.30078 l 0,3.22852 l -1.054687,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11372"
inkscape:connector-curvature="0" />
<path
d="M 98.426214,403.14597 L 98.426214,394.53854 L 99.387151,394.53854 L 99.387151,395.34714 C 99.613712,395.03074 99.869571,394.79441 100.15473,394.63815 C 100.43988,394.478 100.78559,394.39793 101.19184,394.39792 C 101.72308,394.39793 102.19183,394.53464 102.59809,394.80807 C 103.00433,395.08152 103.31097,395.46824 103.51801,395.96823 C 103.72504,396.46433 103.82855,397.00925 103.82856,397.603 C 103.82855,398.23972 103.71332,398.81394 103.48285,399.32565 C 103.25629,399.83347 102.92426,400.22409 102.48676,400.49753 C 102.05316,400.76706 101.59613,400.90182 101.11567,400.90182 C 100.7641,400.90182 100.44769,400.82761 100.16645,400.67917 C 99.889102,400.53073 99.660587,400.34323 99.480901,400.11667 L 99.480901,403.14597 L 98.426214,403.14597 M 99.381292,397.68503 C 99.38129,398.48581 99.543399,399.07761 99.86762,399.46042 C 100.19184,399.84323 100.58441,400.03464 101.04535,400.03464 C 101.5141,400.03464 101.91449,399.83737 102.24653,399.44284 C 102.58246,399.0444 102.75043,398.42917 102.75043,397.59714 C 102.75043,396.80417 102.58637,396.21042 102.25824,395.81589 C 101.93402,395.42136 101.54535,395.2241 101.09223,395.22409 C 100.64301,395.2241 100.24457,395.43503 99.896917,395.8569 C 99.553165,396.27488 99.38129,396.88425 99.381292,397.68503"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 98.426214,403.14597 l 0,-8.60743 l 0.960937,0 l 0,0.8086 c 0.226561,-0.3164 0.48242,-0.55273 0.767579,-0.70899 c 0.28515,-0.16015 0.63086,-0.24022 1.03711,-0.24023 c 0.53124,10e-6 0.99999,0.13672 1.40625,0.41015 c 0.40624,0.27345 0.71288,0.66017 0.91992,1.16016 c 0.20703,0.4961 0.31054,1.04102 0.31055,1.63477 c -10e-6,0.63672 -0.11524,1.21094 -0.34571,1.72265 c -0.22656,0.50782 -0.55859,0.89844 -0.99609,1.17188 c -0.4336,0.26953 -0.89063,0.40429 -1.37109,0.40429 c -0.35157,0 -0.66798,-0.0742 -0.94922,-0.22265 c -0.277348,-0.14844 -0.505863,-0.33594 -0.685549,-0.5625 l 0,3.0293 l -1.054687,0 m 0.955078,-5.46094 c -2e-6,0.80078 0.162107,1.39258 0.486328,1.77539 c 0.32422,0.38281 0.71679,0.57422 1.17773,0.57422 c 0.46875,0 0.86914,-0.19727 1.20118,-0.5918 c 0.33593,-0.39844 0.5039,-1.01367 0.5039,-1.8457 c 0,-0.79297 -0.16406,-1.38672 -0.49219,-1.78125 c -0.32422,-0.39453 -0.71289,-0.59179 -1.16601,-0.5918 c -0.44922,1e-5 -0.84766,0.21094 -1.195313,0.63281 c -0.343752,0.41798 -0.515627,1.02735 -0.515625,1.82813"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11374"
inkscape:connector-curvature="0" />
<path
d="M 107.32074,401.37253 L 107.32074,399.01706 L 104.98285,399.01706 L 104.98285,398.03268 L 107.32074,398.03268 L 107.32074,395.69479 L 108.31684,395.69479 L 108.31684,398.03268 L 110.65473,398.03268 L 110.65473,399.01706 L 108.31684,399.01706 L 108.31684,401.37253 L 107.32074,401.37253"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 107.32074,401.37253 l 0,-2.35547 l -2.33789,0 l 0,-0.98438 l 2.33789,0 l 0,-2.33789 l 0.9961,0 l 0,2.33789 l 2.33789,0 l 0,0.98438 l -2.33789,0 l 0,2.35547 l -0.9961,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11376"
inkscape:connector-curvature="0" />
<path
d="M 112.21332,402.7612 L 112.21332,394.17136 L 113.92426,394.17136 L 115.95746,400.25339 C 116.14496,400.8198 116.28168,401.24362 116.36762,401.52487 C 116.46527,401.21237 116.61761,400.75339 116.82465,400.14792 L 118.88129,394.17136 L 120.41059,394.17136 L 120.41059,402.7612 L 119.31489,402.7612 L 119.31489,395.57175 L 116.81879,402.7612 L 115.7934,402.7612 L 113.30903,395.4487 L 113.30903,402.7612 L 112.21332,402.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 112.21332,402.7612 l 0,-8.58984 l 1.71094,0 l 2.0332,6.08203 c 0.1875,0.56641 0.32422,0.99023 0.41016,1.27148 c 0.0977,-0.3125 0.24999,-0.77148 0.45703,-1.37695 l 2.05664,-5.97656 l 1.5293,0 l 0,8.58984 l -1.0957,0 l 0,-7.18945 l -2.4961,7.18945 l -1.02539,0 l -2.48437,-7.3125 l 0,7.3125 l -1.09571,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11378"
inkscape:connector-curvature="0" />
<path
d="M 126.18207,401.99362 C 125.79144,402.32565 125.41449,402.56003 125.05121,402.69675 C 124.69184,402.83347 124.30512,402.90182 123.89106,402.90182 C 123.20746,402.90182 122.68207,402.73581 122.31489,402.40378 C 121.9477,402.06784 121.7641,401.64011 121.7641,401.12057 C 121.7641,400.81589 121.83246,400.53855 121.96918,400.28854 C 122.10981,400.03464 122.29145,399.83152 122.5141,399.67917 C 122.74067,399.52683 122.99457,399.41159 123.27582,399.33347 C 123.48285,399.27878 123.79535,399.22605 124.21332,399.17526 C 125.06488,399.0737 125.69183,398.95261 126.09418,398.81198 C 126.09808,398.66745 126.10004,398.57566 126.10004,398.53659 C 126.10004,398.10691 126.00043,397.80417 125.80121,397.62839 C 125.53168,397.39011 125.13129,397.27097 124.60004,397.27097 C 124.10395,397.27097 123.73676,397.35886 123.49848,397.53464 C 123.2641,397.70652 123.09027,398.01316 122.97699,398.45456 L 121.94574,398.31393 C 122.03949,397.87253 122.19379,397.51706 122.40864,397.24753 C 122.62348,396.9741 122.93402,396.76511 123.34028,396.62057 C 123.74652,396.47214 124.21723,396.39793 124.75239,396.39792 C 125.28363,396.39793 125.71527,396.46043 126.04731,396.58542 C 126.37933,396.71042 126.62347,396.86863 126.77973,397.06003 C 126.93597,397.24753 127.04535,397.48581 127.10785,397.77487 C 127.143,397.95456 127.16058,398.27878 127.16059,398.74753 L 127.16059,400.15378 C 127.16058,401.13425 127.18207,401.75534 127.22504,402.01706 C 127.27191,402.27487 127.36175,402.52292 127.49457,402.7612 L 126.39301,402.7612 C 126.28363,402.54245 126.21332,402.28659 126.18207,401.99362 M 126.09418,399.63815 C 125.71137,399.79441 125.13715,399.92722 124.37153,400.03659 C 123.93793,400.09909 123.63129,400.16941 123.4516,400.24753 C 123.27191,400.32566 123.13324,400.44089 123.03559,400.59323 C 122.93793,400.74167 122.8891,400.90769 122.8891,401.09128 C 122.8891,401.37253 122.99457,401.6069 123.20551,401.7944 C 123.42035,401.9819 123.73285,402.07565 124.14301,402.07565 C 124.54926,402.07565 124.91059,401.98776 125.22699,401.81198 C 125.5434,401.63229 125.77582,401.38815 125.92426,401.07956 C 126.03754,400.84128 126.09418,400.48972 126.09418,400.02487 L 126.09418,399.63815"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 126.18207,401.99362 c -0.39063,0.33203 -0.76758,0.56641 -1.13086,0.70313 c -0.35937,0.13672 -0.74609,0.20507 -1.16015,0.20507 c -0.6836,0 -1.20899,-0.16601 -1.57617,-0.49804 c -0.36719,-0.33594 -0.55079,-0.76367 -0.55079,-1.28321 c 0,-0.30468 0.0684,-0.58202 0.20508,-0.83203 c 0.14063,-0.2539 0.32227,-0.45702 0.54492,-0.60937 c 0.22657,-0.15234 0.48047,-0.26758 0.76172,-0.3457 c 0.20703,-0.0547 0.51953,-0.10742 0.9375,-0.15821 c 0.85156,-0.10156 1.47851,-0.22265 1.88086,-0.36328 c 0.004,-0.14453 0.006,-0.23632 0.006,-0.27539 c 0,-0.42968 -0.0996,-0.73242 -0.29883,-0.9082 c -0.26953,-0.23828 -0.66992,-0.35742 -1.20117,-0.35742 c -0.49609,0 -0.86328,0.0879 -1.10156,0.26367 c -0.23438,0.17188 -0.40821,0.47852 -0.52149,0.91992 l -1.03125,-0.14063 c 0.0937,-0.4414 0.24805,-0.79687 0.4629,-1.0664 c 0.21484,-0.27343 0.52538,-0.48242 0.93164,-0.62696 c 0.40624,-0.14843 0.87695,-0.22264 1.41211,-0.22265 c 0.53124,10e-6 0.96288,0.0625 1.29492,0.1875 c 0.33202,0.125 0.57616,0.28321 0.73242,0.47461 c 0.15624,0.1875 0.26562,0.42578 0.32812,0.71484 c 0.0352,0.17969 0.0527,0.50391 0.0527,0.97266 l 0,1.40625 c -1e-5,0.98047 0.0215,1.60156 0.0645,1.86328 c 0.0469,0.25781 0.13671,0.50586 0.26953,0.74414 l -1.10156,0 c -0.10938,-0.21875 -0.17969,-0.47461 -0.21094,-0.76758 m -0.0879,-2.35547 c -0.38281,0.15626 -0.95703,0.28907 -1.72265,0.39844 c -0.4336,0.0625 -0.74024,0.13282 -0.91993,0.21094 c -0.17969,0.0781 -0.31836,0.19336 -0.41601,0.3457 c -0.0977,0.14844 -0.14649,0.31446 -0.14649,0.49805 c 0,0.28125 0.10547,0.51562 0.31641,0.70312 c 0.21484,0.1875 0.52734,0.28125 0.9375,0.28125 c 0.40625,0 0.76758,-0.0879 1.08398,-0.26367 c 0.31641,-0.17969 0.54883,-0.42383 0.69727,-0.73242 c 0.11328,-0.23828 0.16992,-0.58984 0.16992,-1.05469 l 0,-0.38672"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11380"
inkscape:connector-curvature="0" />
<path
d="M 128.60785,401.27682 L 129.63324,401.42917 C 129.67621,401.74557 129.79535,401.97604 129.99067,402.12057 C 130.25238,402.31589 130.6098,402.41354 131.06293,402.41354 C 131.55121,402.41354 131.92816,402.31589 132.19379,402.12057 C 132.45941,401.92526 132.6391,401.65182 132.73285,401.30026 C 132.78754,401.08542 132.81293,400.63425 132.80903,399.94675 C 132.34808,400.48972 131.77387,400.7612 131.08637,400.7612 C 130.2309,400.7612 129.56879,400.45261 129.10004,399.83542 C 128.63129,399.21823 128.39692,398.478 128.39692,397.61472 C 128.39692,397.02097 128.50434,396.47409 128.71918,395.97409 C 128.93403,395.47019 129.24457,395.08152 129.65082,394.80807 C 130.06098,394.53464 130.54145,394.39793 131.09223,394.39792 C 131.8266,394.39793 132.43207,394.6948 132.90864,395.28854 L 132.90864,394.53854 L 133.88129,394.53854 L 133.88129,399.91745 C 133.88129,400.8862 133.78168,401.57175 133.58246,401.97409 C 133.38715,402.38034 133.07465,402.70065 132.64496,402.93503 C 132.21918,403.1694 131.69379,403.28659 131.06879,403.28659 C 130.3266,403.28659 129.72699,403.11862 129.26996,402.78268 C 128.81293,402.45065 128.59223,401.9487 128.60785,401.27682 M 129.4809,397.53854 C 129.4809,398.35495 129.64301,398.95065 129.96723,399.32565 C 130.29145,399.70065 130.6977,399.88815 131.18598,399.88815 C 131.67035,399.88815 132.0766,399.70261 132.40473,399.33151 C 132.73285,398.95651 132.89691,398.37058 132.89692,397.5737 C 132.89691,396.81199 132.72699,396.23777 132.38715,395.85104 C 132.05121,395.46433 131.64496,395.27097 131.1684,395.27097 C 130.69965,395.27097 130.30121,395.46238 129.97309,395.84518 C 129.64496,396.2241 129.4809,396.78855 129.4809,397.53854"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 128.60785,401.27682 l 1.02539,0.15235 c 0.043,0.3164 0.16211,0.54687 0.35743,0.6914 c 0.26171,0.19532 0.61913,0.29297 1.07226,0.29297 c 0.48828,0 0.86523,-0.0976 1.13086,-0.29297 c 0.26562,-0.19531 0.44531,-0.46875 0.53906,-0.82031 c 0.0547,-0.21484 0.0801,-0.66601 0.0762,-1.35351 c -0.46095,0.54297 -1.03516,0.81445 -1.72266,0.81445 c -0.85547,0 -1.51758,-0.30859 -1.98633,-0.92578 c -0.46875,-0.61719 -0.70312,-1.35742 -0.70312,-2.2207 c 0,-0.59375 0.10742,-1.14063 0.32226,-1.64063 c 0.21485,-0.5039 0.52539,-0.89257 0.93164,-1.16602 c 0.41016,-0.27343 0.89063,-0.41014 1.44141,-0.41015 c 0.73437,10e-6 1.33984,0.29688 1.81641,0.89062 l 0,-0.75 l 0.97265,0 l 0,5.37891 c 0,0.96875 -0.0996,1.6543 -0.29883,2.05664 c -0.19531,0.40625 -0.50781,0.72656 -0.9375,0.96094 c -0.42578,0.23437 -0.95117,0.35156 -1.57617,0.35156 c -0.74219,0 -1.3418,-0.16797 -1.79883,-0.50391 c -0.45703,-0.33203 -0.67773,-0.83398 -0.66211,-1.50586 m 0.87305,-3.73828 c 0,0.81641 0.16211,1.41211 0.48633,1.78711 c 0.32422,0.375 0.73047,0.5625 1.21875,0.5625 c 0.48437,0 0.89062,-0.18554 1.21875,-0.55664 c 0.32812,-0.375 0.49218,-0.96093 0.49219,-1.75781 c -1e-5,-0.76171 -0.16993,-1.33593 -0.50977,-1.72266 c -0.33594,-0.38671 -0.74219,-0.58007 -1.21875,-0.58007 c -0.46875,0 -0.86719,0.19141 -1.19531,0.57421 c -0.32813,0.37892 -0.49219,0.94337 -0.49219,1.69336"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11382"
inkscape:connector-curvature="0" />
<path
d="M 137.69574,401.37253 L 137.69574,399.01706 L 135.35785,399.01706 L 135.35785,398.03268 L 137.69574,398.03268 L 137.69574,395.69479 L 138.69184,395.69479 L 138.69184,398.03268 L 141.02973,398.03268 L 141.02973,399.01706 L 138.69184,399.01706 L 138.69184,401.37253 L 137.69574,401.37253"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 137.69574,401.37253 l 0,-2.35547 l -2.33789,0 l 0,-0.98438 l 2.33789,0 l 0,-2.33789 l 0.9961,0 l 0,2.33789 l 2.33789,0 l 0,0.98438 l -2.33789,0 l 0,2.35547 l -0.9961,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11384"
inkscape:connector-curvature="0" />
<path
d="M 146.64301,399.39206 L 146.64301,398.38425 L 150.28168,398.37839 L 150.28168,401.56589 C 149.72308,402.0112 149.14691,402.34714 148.55317,402.5737 C 147.95941,402.79636 147.35004,402.90768 146.72504,402.90768 C 145.88129,402.90768 145.11371,402.728 144.42231,402.36862 C 143.73481,402.00534 143.21527,401.4819 142.86371,400.79831 C 142.51215,400.11472 142.33637,399.35105 142.33637,398.50729 C 142.33637,397.67136 142.5102,396.89207 142.85785,396.1694 C 143.20942,395.44285 143.71332,394.90379 144.36957,394.55222 C 145.02582,394.20066 145.78168,394.02488 146.63715,394.02487 C 147.25824,394.02488 147.81879,394.12644 148.31879,394.32956 C 148.82269,394.52879 149.21722,394.80808 149.50239,395.16745 C 149.78753,395.52683 150.00433,395.99558 150.15278,396.5737 L 149.12739,396.85495 C 148.99847,396.41746 148.83832,396.07371 148.64692,395.8237 C 148.4555,395.57371 148.18207,395.37449 147.8266,395.22604 C 147.47113,395.07371 147.0766,394.99754 146.64301,394.99753 C 146.12347,394.99754 145.67426,395.07761 145.29535,395.23776 C 144.91644,395.39402 144.6098,395.60105 144.37543,395.85886 C 144.14496,396.11668 143.96527,396.39988 143.83637,396.70847 C 143.61762,397.23972 143.50824,397.81589 143.50824,398.43698 C 143.50824,399.20261 143.6391,399.84323 143.90082,400.35886 C 144.16645,400.87448 144.55121,401.2573 145.05512,401.50729 C 145.55902,401.75729 146.09418,401.88229 146.66059,401.88229 C 147.15277,401.88229 147.63324,401.78854 148.10199,401.60104 C 148.57074,401.40964 148.92621,401.20651 149.1684,400.99167 L 149.1684,399.39206 L 146.64301,399.39206"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 146.64301,399.39206 l 0,-1.00781 l 3.63867,-0.006 l 0,3.1875 c -0.5586,0.44531 -1.13477,0.78125 -1.72851,1.00781 c -0.59376,0.22266 -1.20313,0.33398 -1.82813,0.33398 c -0.84375,0 -1.61133,-0.17968 -2.30273,-0.53906 c -0.6875,-0.36328 -1.20704,-0.88672 -1.5586,-1.57031 c -0.35156,-0.68359 -0.52734,-1.44726 -0.52734,-2.29102 c 0,-0.83593 0.17383,-1.61522 0.52148,-2.33789 c 0.35157,-0.72655 0.85547,-1.26561 1.51172,-1.61718 c 0.65625,-0.35156 1.41211,-0.52734 2.26758,-0.52735 c 0.62109,1e-5 1.18164,0.10157 1.68164,0.30469 c 0.5039,0.19923 0.89843,0.47852 1.1836,0.83789 c 0.28514,0.35938 0.50194,0.82813 0.65039,1.40625 l -1.02539,0.28125 c -0.12892,-0.43749 -0.28907,-0.78124 -0.48047,-1.03125 c -0.19142,-0.24999 -0.46485,-0.44921 -0.82032,-0.59766 c -0.35547,-0.15233 -0.75,-0.2285 -1.18359,-0.22851 c -0.51954,1e-5 -0.96875,0.0801 -1.34766,0.24023 c -0.37891,0.15626 -0.68555,0.36329 -0.91992,0.6211 c -0.23047,0.25782 -0.41016,0.54102 -0.53906,0.84961 c -0.21875,0.53125 -0.32813,1.10742 -0.32813,1.72851 c 0,0.76563 0.13086,1.40625 0.39258,1.92188 c 0.26563,0.51562 0.65039,0.89844 1.1543,1.14843 c 0.5039,0.25 1.03906,0.375 1.60547,0.375 c 0.49218,0 0.97265,-0.0937 1.4414,-0.28125 c 0.46875,-0.1914 0.82422,-0.39453 1.06641,-0.60937 l 0,-1.59961 l -2.52539,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11386"
inkscape:connector-curvature="0" />
<path
d="M 151.81684,403.14597 L 151.81684,394.53854 L 152.77778,394.53854 L 152.77778,395.34714 C 153.00434,395.03074 153.2602,394.79441 153.54535,394.63815 C 153.83051,394.478 154.17621,394.39793 154.58246,394.39792 C 155.11371,394.39793 155.58246,394.53464 155.98871,394.80807 C 156.39496,395.08152 156.7016,395.46824 156.90864,395.96823 C 157.11566,396.46433 157.21918,397.00925 157.21918,397.603 C 157.21918,398.23972 157.10394,398.81394 156.87348,399.32565 C 156.64691,399.83347 156.31488,400.22409 155.87739,400.49753 C 155.44379,400.76706 154.98676,400.90182 154.50629,400.90182 C 154.15473,400.90182 153.83832,400.82761 153.55707,400.67917 C 153.27973,400.53073 153.05121,400.34323 152.87153,400.11667 L 152.87153,403.14597 L 151.81684,403.14597 M 152.77192,397.68503 C 152.77192,398.48581 152.93402,399.07761 153.25824,399.46042 C 153.58246,399.84323 153.97504,400.03464 154.43598,400.03464 C 154.90473,400.03464 155.30512,399.83737 155.63715,399.44284 C 155.97308,399.0444 156.14105,398.42917 156.14106,397.59714 C 156.14105,396.80417 155.97699,396.21042 155.64887,395.81589 C 155.32465,395.42136 154.93598,395.2241 154.48285,395.22409 C 154.03363,395.2241 153.6352,395.43503 153.28754,395.8569 C 152.94379,396.27488 152.77192,396.88425 152.77192,397.68503"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 151.81684,403.14597 l 0,-8.60743 l 0.96094,0 l 0,0.8086 c 0.22656,-0.3164 0.48242,-0.55273 0.76757,-0.70899 c 0.28516,-0.16015 0.63086,-0.24022 1.03711,-0.24023 c 0.53125,10e-6 1,0.13672 1.40625,0.41015 c 0.40625,0.27345 0.71289,0.66017 0.91993,1.16016 c 0.20702,0.4961 0.31054,1.04102 0.31054,1.63477 c 0,0.63672 -0.11524,1.21094 -0.3457,1.72265 c -0.22657,0.50782 -0.5586,0.89844 -0.99609,1.17188 c -0.4336,0.26953 -0.89063,0.40429 -1.3711,0.40429 c -0.35156,0 -0.66797,-0.0742 -0.94922,-0.22265 c -0.27734,-0.14844 -0.50586,-0.33594 -0.68554,-0.5625 l 0,3.0293 l -1.05469,0 m 0.95508,-5.46094 c 0,0.80078 0.1621,1.39258 0.48632,1.77539 c 0.32422,0.38281 0.7168,0.57422 1.17774,0.57422 c 0.46875,0 0.86914,-0.19727 1.20117,-0.5918 c 0.33593,-0.39844 0.5039,-1.01367 0.50391,-1.8457 c -1e-5,-0.79297 -0.16407,-1.38672 -0.49219,-1.78125 c -0.32422,-0.39453 -0.71289,-0.59179 -1.16602,-0.5918 c -0.44922,1e-5 -0.84765,0.21094 -1.19531,0.63281 c -0.34375,0.41798 -0.51562,1.02735 -0.51562,1.82813"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11388"
inkscape:connector-curvature="0" />
<path
d="M 158.07465,400.90378 L 159.11762,400.73972 C 159.17621,401.15769 159.33832,401.478 159.60395,401.70065 C 159.87348,401.92331 160.24848,402.03464 160.72895,402.03464 C 161.21332,402.03464 161.57269,401.93698 161.80707,401.74167 C 162.04144,401.54245 162.15863,401.31003 162.15864,401.0444 C 162.15863,400.80612 162.05512,400.61862 161.84809,400.4819 C 161.70355,400.38816 161.34418,400.26901 160.76996,400.12448 C 159.99652,399.92917 159.45942,399.7612 159.15864,399.62057 C 158.86176,399.47605 158.6352,399.27878 158.47895,399.02878 C 158.3266,398.77488 158.25043,398.49558 158.25043,398.19089 C 158.25043,397.91355 158.31293,397.65769 158.43793,397.42331 C 158.56684,397.18503 158.74067,396.98777 158.95942,396.83151 C 159.12348,396.71042 159.34613,396.60886 159.62739,396.52682 C 159.91254,396.44089 160.21723,396.39793 160.54145,396.39792 C 161.02973,396.39793 161.45746,396.46824 161.82465,396.60886 C 162.19574,396.74949 162.46918,396.94089 162.64496,397.18307 C 162.82074,397.42136 162.94183,397.74167 163.00824,398.14401 L 161.97699,398.28464 C 161.93012,397.96433 161.7934,397.71433 161.56684,397.53464 C 161.34418,397.35496 161.02777,397.26511 160.61762,397.26511 C 160.13324,397.26511 159.78754,397.34519 159.58051,397.50534 C 159.37348,397.6655 159.26996,397.853 159.26996,398.06784 C 159.26996,398.20456 159.31293,398.32761 159.39887,398.43698 C 159.48481,398.55027 159.61957,398.64402 159.80317,398.71823 C 159.90863,398.7573 160.21918,398.84714 160.73481,398.98776 C 161.4809,399.18698 162.00043,399.35105 162.2934,399.47995 C 162.59027,399.60495 162.82269,399.78855 162.99067,400.03073 C 163.15863,400.27292 163.24261,400.5737 163.24262,400.93307 C 163.24261,401.28464 163.1391,401.61667 162.93207,401.92917 C 162.72894,402.23776 162.43402,402.478 162.04731,402.64987 C 161.66058,402.81784 161.22309,402.90182 160.73481,402.90182 C 159.92621,402.90182 159.30902,402.73386 158.88324,402.39792 C 158.46137,402.06198 158.19184,401.56394 158.07465,400.90378"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 158.07465,400.90378 l 1.04297,-0.16406 c 0.0586,0.41797 0.2207,0.73828 0.48633,0.96093 c 0.26953,0.22266 0.64453,0.33399 1.125,0.33399 c 0.48437,0 0.84374,-0.0977 1.07812,-0.29297 c 0.23437,-0.19922 0.35156,-0.43164 0.35157,-0.69727 c -1e-5,-0.23828 -0.10352,-0.42578 -0.31055,-0.5625 c -0.14454,-0.0937 -0.50391,-0.21289 -1.07813,-0.35742 c -0.77344,-0.19531 -1.31054,-0.36328 -1.61132,-0.50391 c -0.29688,-0.14452 -0.52344,-0.34179 -0.67969,-0.59179 c -0.15235,-0.2539 -0.22852,-0.5332 -0.22852,-0.83789 c 0,-0.27734 0.0625,-0.5332 0.1875,-0.76758 c 0.12891,-0.23828 0.30274,-0.43554 0.52149,-0.5918 c 0.16406,-0.12109 0.38671,-0.22265 0.66797,-0.30469 c 0.28515,-0.0859 0.58984,-0.12889 0.91406,-0.1289 c 0.48828,10e-6 0.91601,0.0703 1.2832,0.21094 c 0.37109,0.14063 0.64453,0.33203 0.82031,0.57421 c 0.17578,0.23829 0.29687,0.5586 0.36328,0.96094 l -1.03125,0.14063 c -0.0469,-0.32031 -0.18359,-0.57031 -0.41015,-0.75 c -0.22266,-0.17968 -0.53907,-0.26953 -0.94922,-0.26953 c -0.48438,0 -0.83008,0.0801 -1.03711,0.24023 c -0.20703,0.16016 -0.31055,0.34766 -0.31055,0.5625 c 0,0.13672 0.043,0.25977 0.12891,0.36914 c 0.0859,0.11329 0.2207,0.20704 0.4043,0.28125 c 0.10546,0.0391 0.41601,0.12891 0.93164,0.26953 c 0.74609,0.19922 1.26562,0.36329 1.55859,0.49219 c 0.29687,0.125 0.52929,0.3086 0.69727,0.55078 c 0.16796,0.24219 0.25194,0.54297 0.25195,0.90234 c -10e-6,0.35157 -0.10352,0.6836 -0.31055,0.9961 c -0.20313,0.30859 -0.49805,0.54883 -0.88476,0.7207 c -0.38673,0.16797 -0.82422,0.25195 -1.3125,0.25195 c -0.8086,0 -1.42579,-0.16796 -1.85157,-0.5039 c -0.42187,-0.33594 -0.6914,-0.83398 -0.80859,-1.49414"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11390"
inkscape:connector-curvature="0" />
</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"
d="m 91.418401,413.57761 c 0,-1.42578 0.382812,-2.54101 1.148438,-3.34571 c 0.765622,-0.80858 1.753903,-1.21288 2.964843,-1.21289 c 0.792964,1e-5 1.507807,0.18946 2.144532,0.56836 c 0.636711,0.37892 1.121086,0.90821 1.453125,1.58789 c 0.335929,0.67579 0.503897,1.44337 0.503906,2.30274 c -9e-6,0.87109 -0.17579,1.65039 -0.527344,2.33789 c -0.35157,0.6875 -0.849617,1.20898 -1.49414,1.56445 c -0.644538,0.35156 -1.33985,0.52734 -2.085938,0.52734 c -0.808598,0 -1.531253,-0.19531 -2.167969,-0.58593 c -0.63672,-0.39063 -1.119142,-0.92383 -1.447265,-1.59961 c -0.328126,-0.67578 -0.492188,-1.39062 -0.492188,-2.14453 m 1.171875,0.0176 c -2e-6,1.03516 0.277342,1.85157 0.832031,2.44922 c 0.558591,0.59375 1.257809,0.89063 2.097657,0.89063 c 0.855463,0 1.558587,-0.30078 2.109375,-0.90235 c 0.55468,-0.60156 0.832023,-1.45507 0.832031,-2.56054 c -8e-6,-0.69922 -0.119148,-1.30859 -0.357422,-1.82813 c -0.234382,-0.52343 -0.580085,-0.92772 -1.037109,-1.21289 c -0.453131,-0.28905 -0.962896,-0.43358 -1.529297,-0.43359 c -0.804692,10e-6 -1.49805,0.27735 -2.080078,0.83203 c -0.578127,0.55079 -0.86719,1.47266 -0.867188,2.76562"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11400"
inkscape:connector-curvature="0" />
<path
d="M 100.95746,417.7612 L 100.95746,411.53854 L 101.90668,411.53854 L 101.90668,412.42331 C 102.36371,411.73972 103.02387,411.39793 103.88715,411.39792 C 104.26215,411.39793 104.6059,411.46628 104.9184,411.603 C 105.2348,411.73582 105.47113,411.9116 105.62739,412.13034 C 105.78363,412.3491 105.89301,412.60886 105.95551,412.90964 C 105.99457,413.10495 106.0141,413.44675 106.0141,413.93503 L 106.0141,417.7612 L 104.95942,417.7612 L 104.95942,413.97604 C 104.95941,413.54636 104.9184,413.22605 104.83637,413.01511 C 104.75433,412.80027 104.60785,412.63035 104.39692,412.50534 C 104.18988,412.37644 103.94574,412.31199 103.6645,412.31198 C 103.21527,412.31199 102.8266,412.45456 102.49848,412.73972 C 102.17426,413.02488 102.01215,413.56589 102.01215,414.36276 L 102.01215,417.7612 L 100.95746,417.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 100.95746,417.7612 l 0,-6.22266 l 0.94922,0 l 0,0.88477 c 0.45703,-0.68359 1.11719,-1.02538 1.98047,-1.02539 c 0.375,10e-6 0.71875,0.0684 1.03125,0.20508 c 0.3164,0.13282 0.55273,0.3086 0.70899,0.52734 c 0.15624,0.21876 0.26562,0.47852 0.32812,0.7793 c 0.0391,0.19531 0.0586,0.53711 0.0586,1.02539 l 0,3.82617 l -1.05468,0 l 0,-3.78516 c -1e-5,-0.42968 -0.041,-0.74999 -0.12305,-0.96093 c -0.082,-0.21484 -0.22852,-0.38476 -0.43945,-0.50977 c -0.20704,-0.1289 -0.45118,-0.19335 -0.73242,-0.19336 c -0.44923,10e-6 -0.8379,0.14258 -1.16602,0.42774 c -0.32422,0.28516 -0.48633,0.82617 -0.48633,1.62304 l 0,3.39844 l -1.05469,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11402"
inkscape:connector-curvature="0" />
<path
d="M 107.72504,417.7612 L 107.72504,409.17136 L 110.9477,409.17136 C 111.60394,409.17136 112.12933,409.25926 112.52387,409.43503 C 112.9223,409.60691 113.23285,409.87449 113.45551,410.23776 C 113.68207,410.59714 113.79535,410.9741 113.79535,411.36862 C 113.79535,411.73582 113.69574,412.08152 113.49653,412.40573 C 113.2973,412.72995 112.99652,412.99167 112.59418,413.19089 C 113.11371,413.34324 113.51215,413.603 113.7895,413.97018 C 114.07074,414.33738 114.21136,414.77097 114.21137,415.27097 C 114.21136,415.67331 114.12543,416.04831 113.95356,416.39597 C 113.78558,416.73972 113.5766,417.00534 113.3266,417.19284 C 113.0766,417.38034 112.76215,417.52292 112.38325,417.62057 C 112.00824,417.71432 111.5473,417.7612 111.00043,417.7612 L 107.72504,417.7612 M 108.86176,412.78073 L 110.71918,412.78073 C 111.22308,412.78074 111.58441,412.74753 111.80317,412.68112 C 112.09222,412.59519 112.30902,412.45261 112.45356,412.25339 C 112.60199,412.05417 112.67621,411.80417 112.67621,411.50339 C 112.67621,411.21824 112.60785,410.96824 112.47114,410.75339 C 112.33441,410.53464 112.1391,410.38621 111.8852,410.30807 C 111.63129,410.22605 111.19574,410.18504 110.57856,410.18503 L 108.86176,410.18503 L 108.86176,412.78073 M 108.86176,416.74753 L 111.00043,416.74753 C 111.36762,416.74753 111.62543,416.73386 111.77387,416.70651 C 112.03558,416.65964 112.25433,416.58151 112.43012,416.47214 C 112.6059,416.36276 112.75043,416.20456 112.86371,415.99753 C 112.97699,415.78659 113.03363,415.54441 113.03364,415.27097 C 113.03363,414.95066 112.9516,414.67331 112.78754,414.43893 C 112.62347,414.20066 112.39496,414.03464 112.102,413.94089 C 111.81293,413.84324 111.39496,413.79441 110.84809,413.7944 L 108.86176,413.7944 L 108.86176,416.74753"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 107.72504,417.7612 l 0,-8.58984 l 3.22266,0 c 0.65624,0 1.18163,0.0879 1.57617,0.26367 c 0.39843,0.17188 0.70898,0.43946 0.93164,0.80273 c 0.22656,0.35938 0.33984,0.73634 0.33984,1.13086 c 0,0.3672 -0.0996,0.7129 -0.29882,1.03711 c -0.19923,0.32422 -0.50001,0.58594 -0.90235,0.78516 c 0.51953,0.15235 0.91797,0.41211 1.19532,0.77929 c 0.28124,0.3672 0.42186,0.80079 0.42187,1.30079 c -1e-5,0.40234 -0.0859,0.77734 -0.25781,1.125 c -0.16798,0.34375 -0.37696,0.60937 -0.62696,0.79687 c -0.25,0.1875 -0.56445,0.33008 -0.94335,0.42773 c -0.37501,0.0937 -0.83595,0.14063 -1.38282,0.14063 l -3.27539,0 m 1.13672,-4.98047 l 1.85742,0 c 0.5039,10e-6 0.86523,-0.0332 1.08399,-0.0996 c 0.28905,-0.0859 0.50585,-0.22851 0.65039,-0.42773 c 0.14843,-0.19922 0.22265,-0.44922 0.22265,-0.75 c 0,-0.28515 -0.0684,-0.53515 -0.20507,-0.75 c -0.13673,-0.21875 -0.33204,-0.36718 -0.58594,-0.44532 c -0.25391,-0.082 -0.68946,-0.12303 -1.30664,-0.12304 l -1.7168,0 l 0,2.5957 m 0,3.9668 l 2.13867,0 c 0.36719,0 0.625,-0.0137 0.77344,-0.041 c 0.26171,-0.0469 0.48046,-0.125 0.65625,-0.23437 c 0.17578,-0.10938 0.32031,-0.26758 0.43359,-0.47461 c 0.11328,-0.21094 0.16992,-0.45312 0.16993,-0.72656 c -1e-5,-0.32031 -0.082,-0.59766 -0.2461,-0.83204 c -0.16407,-0.23827 -0.39258,-0.40429 -0.68554,-0.49804 c -0.28907,-0.0977 -0.70704,-0.14648 -1.25391,-0.14649 l -1.98633,0 l 0,2.95313"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11404"
inkscape:connector-curvature="0" />
<path
d="M 115.2602,414.64987 C 115.2602,413.49753 115.58051,412.64402 116.22114,412.08932 C 116.75629,411.62839 117.40863,411.39793 118.17817,411.39792 C 119.03363,411.39793 119.73285,411.67917 120.27582,412.24167 C 120.81879,412.80027 121.09027,413.5737 121.09028,414.56198 C 121.09027,415.36276 120.96918,415.99362 120.72699,416.45456 C 120.48871,416.91159 120.1391,417.26706 119.67817,417.52097 C 119.22113,417.77487 118.72113,417.90182 118.17817,417.90182 C 117.30707,417.90182 116.60199,417.62253 116.06293,417.06393 C 115.52778,416.50534 115.2602,415.70066 115.2602,414.64987 M 116.34418,414.64987 C 116.34418,415.44675 116.51801,416.0444 116.86567,416.44284 C 117.21332,416.83737 117.65082,417.03464 118.17817,417.03464 C 118.7016,417.03464 119.13715,416.83542 119.48481,416.43698 C 119.83246,416.03855 120.00629,415.43112 120.00629,414.61472 C 120.00629,413.84519 119.83051,413.26316 119.47895,412.86862 C 119.13129,412.47019 118.69769,412.27097 118.17817,412.27097 C 117.65082,412.27097 117.21332,412.46824 116.86567,412.86276 C 116.51801,413.2573 116.34418,413.853 116.34418,414.64987"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 115.2602,414.64987 c 0,-1.15234 0.32031,-2.00585 0.96094,-2.56055 c 0.53515,-0.46093 1.18749,-0.69139 1.95703,-0.6914 c 0.85546,10e-6 1.55468,0.28125 2.09765,0.84375 c 0.54297,0.5586 0.81445,1.33203 0.81446,2.32031 c -1e-5,0.80078 -0.1211,1.43164 -0.36329,1.89258 c -0.23828,0.45703 -0.58789,0.8125 -1.04882,1.06641 c -0.45704,0.2539 -0.95704,0.38085 -1.5,0.38085 c -0.8711,0 -1.57618,-0.27929 -2.11524,-0.83789 c -0.53515,-0.55859 -0.80273,-1.36327 -0.80273,-2.41406 m 1.08398,0 c 0,0.79688 0.17383,1.39453 0.52149,1.79297 c 0.34765,0.39453 0.78515,0.5918 1.3125,0.5918 c 0.52343,0 0.95898,-0.19922 1.30664,-0.59766 c 0.34765,-0.39843 0.52148,-1.00586 0.52148,-1.82226 c 0,-0.76953 -0.17578,-1.35156 -0.52734,-1.7461 c -0.34766,-0.39843 -0.78126,-0.59765 -1.30078,-0.59765 c -0.52735,0 -0.96485,0.19727 -1.3125,0.59179 c -0.34766,0.39454 -0.52149,0.99024 -0.52149,1.78711"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11406"
inkscape:connector-curvature="0" />
<path
d="M 126.39301,416.99362 C 126.00238,417.32565 125.62543,417.56003 125.26215,417.69675 C 124.90277,417.83347 124.51605,417.90182 124.10199,417.90182 C 123.4184,417.90182 122.89301,417.73581 122.52582,417.40378 C 122.15863,417.06784 121.97504,416.64011 121.97504,416.12057 C 121.97504,415.81589 122.0434,415.53855 122.18012,415.28854 C 122.32074,415.03464 122.50238,414.83152 122.72504,414.67917 C 122.9516,414.52683 123.20551,414.41159 123.48676,414.33347 C 123.69379,414.27878 124.00629,414.22605 124.42426,414.17526 C 125.27582,414.0737 125.90277,413.95261 126.30512,413.81198 C 126.30902,413.66745 126.31097,413.57566 126.31098,413.53659 C 126.31097,413.10691 126.21137,412.80417 126.01215,412.62839 C 125.74262,412.39011 125.34223,412.27097 124.81098,412.27097 C 124.31488,412.27097 123.9477,412.35886 123.70942,412.53464 C 123.47504,412.70652 123.30121,413.01316 123.18793,413.45456 L 122.15668,413.31393 C 122.25043,412.87253 122.40473,412.51706 122.61957,412.24753 C 122.83442,411.9741 123.14496,411.76511 123.55121,411.62057 C 123.95746,411.47214 124.42816,411.39793 124.96332,411.39792 C 125.49457,411.39793 125.92621,411.46043 126.25824,411.58542 C 126.59027,411.71042 126.83441,411.86863 126.99067,412.06003 C 127.14691,412.24753 127.25629,412.48581 127.31879,412.77487 C 127.35394,412.95456 127.37152,413.27878 127.37153,413.74753 L 127.37153,415.15378 C 127.37152,416.13425 127.393,416.75534 127.43598,417.01706 C 127.48285,417.27487 127.57269,417.52292 127.70551,417.7612 L 126.60395,417.7612 C 126.49457,417.54245 126.42426,417.28659 126.39301,416.99362 M 126.30512,414.63815 C 125.9223,414.79441 125.34808,414.92722 124.58246,415.03659 C 124.14887,415.09909 123.84223,415.16941 123.66254,415.24753 C 123.48285,415.32566 123.34418,415.44089 123.24653,415.59323 C 123.14887,415.74167 123.10004,415.90769 123.10004,416.09128 C 123.10004,416.37253 123.20551,416.6069 123.41645,416.7944 C 123.63129,416.9819 123.94379,417.07565 124.35395,417.07565 C 124.76019,417.07565 125.12152,416.98776 125.43793,416.81198 C 125.75433,416.63229 125.98676,416.38815 126.1352,416.07956 C 126.24847,415.84128 126.30512,415.48972 126.30512,415.02487 L 126.30512,414.63815"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 126.39301,416.99362 c -0.39063,0.33203 -0.76758,0.56641 -1.13086,0.70313 c -0.35938,0.13672 -0.7461,0.20507 -1.16016,0.20507 c -0.68359,0 -1.20898,-0.16601 -1.57617,-0.49804 c -0.36719,-0.33594 -0.55078,-0.76367 -0.55078,-1.28321 c 0,-0.30468 0.0684,-0.58202 0.20508,-0.83203 c 0.14062,-0.2539 0.32226,-0.45702 0.54492,-0.60937 c 0.22656,-0.15234 0.48047,-0.26758 0.76172,-0.3457 c 0.20703,-0.0547 0.51953,-0.10742 0.9375,-0.15821 c 0.85156,-0.10156 1.47851,-0.22265 1.88086,-0.36328 c 0.004,-0.14453 0.006,-0.23632 0.006,-0.27539 c -1e-5,-0.42968 -0.0996,-0.73242 -0.29883,-0.9082 c -0.26953,-0.23828 -0.66992,-0.35742 -1.20117,-0.35742 c -0.4961,0 -0.86328,0.0879 -1.10156,0.26367 c -0.23438,0.17188 -0.40821,0.47852 -0.52149,0.91992 l -1.03125,-0.14063 c 0.0937,-0.4414 0.24805,-0.79687 0.46289,-1.0664 c 0.21485,-0.27343 0.52539,-0.48242 0.93164,-0.62696 c 0.40625,-0.14843 0.87695,-0.22264 1.41211,-0.22265 c 0.53125,10e-6 0.96289,0.0625 1.29492,0.1875 c 0.33203,0.125 0.57617,0.28321 0.73243,0.47461 c 0.15624,0.1875 0.26562,0.42578 0.32812,0.71484 c 0.0351,0.17969 0.0527,0.50391 0.0527,0.97266 l 0,1.40625 c -1e-5,0.98047 0.0215,1.60156 0.0644,1.86328 c 0.0469,0.25781 0.13671,0.50586 0.26953,0.74414 l -1.10156,0 c -0.10938,-0.21875 -0.17969,-0.47461 -0.21094,-0.76758 m -0.0879,-2.35547 c -0.38282,0.15626 -0.95704,0.28907 -1.72266,0.39844 c -0.43359,0.0625 -0.74023,0.13282 -0.91992,0.21094 c -0.17969,0.0781 -0.31836,0.19336 -0.41601,0.3457 c -0.0977,0.14844 -0.14649,0.31446 -0.14649,0.49805 c 0,0.28125 0.10547,0.51562 0.31641,0.70312 c 0.21484,0.1875 0.52734,0.28125 0.9375,0.28125 c 0.40624,0 0.76757,-0.0879 1.08398,-0.26367 c 0.3164,-0.17969 0.54883,-0.42383 0.69727,-0.73242 c 0.11327,-0.23828 0.16992,-0.58984 0.16992,-1.05469 l 0,-0.38672"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11408"
inkscape:connector-curvature="0" />
<path
d="M 129.00043,417.7612 L 129.00043,411.53854 L 129.94965,411.53854 L 129.94965,412.4819 C 130.19184,412.0405 130.41449,411.74949 130.61762,411.60886 C 130.82465,411.46824 131.05121,411.39793 131.29731,411.39792 C 131.65277,411.39793 132.0141,411.51121 132.38129,411.73776 L 132.01801,412.71628 C 131.76019,412.56394 131.50238,412.48777 131.24457,412.48776 C 131.0141,412.48777 130.80707,412.55808 130.62348,412.6987 C 130.43988,412.83542 130.30902,413.02683 130.2309,413.27292 C 130.11371,413.64792 130.05512,414.05808 130.05512,414.50339 L 130.05512,417.7612 L 129.00043,417.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 129.00043,417.7612 l 0,-6.22266 l 0.94922,0 l 0,0.94336 c 0.24219,-0.4414 0.46484,-0.73241 0.66797,-0.87304 c 0.20703,-0.14062 0.43359,-0.21093 0.67969,-0.21094 c 0.35546,10e-6 0.71679,0.11329 1.08398,0.33984 l -0.36328,0.97852 c -0.25782,-0.15234 -0.51563,-0.22851 -0.77344,-0.22852 c -0.23047,1e-5 -0.4375,0.0703 -0.62109,0.21094 c -0.1836,0.13672 -0.31446,0.32813 -0.39258,0.57422 c -0.11719,0.375 -0.17578,0.78516 -0.17578,1.23047 l 0,3.25781 l -1.05469,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11410"
inkscape:connector-curvature="0" />
<path
d="M 137.05707,417.7612 L 137.05707,416.97604 C 136.66254,417.59323 136.08246,417.90182 135.31684,417.90182 C 134.82074,417.90182 134.36371,417.76511 133.94574,417.49167 C 133.53168,417.21823 133.20942,416.83737 132.97895,416.34909 C 132.75239,415.8569 132.6391,415.29245 132.6391,414.65573 C 132.6391,414.03464 132.74262,413.47214 132.94965,412.96823 C 133.15668,412.46042 133.46723,412.07175 133.88129,411.80222 C 134.29535,411.53269 134.75824,411.39793 135.26996,411.39792 C 135.64496,411.39793 135.97894,411.478 136.27192,411.63815 C 136.56488,411.79441 136.80316,411.99949 136.98676,412.25339 L 136.98676,409.17136 L 138.03559,409.17136 L 138.03559,417.7612 L 137.05707,417.7612 M 133.72309,414.65573 C 133.72309,415.45261 133.89106,416.04831 134.22699,416.44284 C 134.56293,416.83737 134.95941,417.03464 135.41645,417.03464 C 135.87738,417.03464 136.26801,416.84714 136.58832,416.47214 C 136.91254,416.09323 137.07465,415.51706 137.07465,414.74362 C 137.07465,413.89206 136.91058,413.26706 136.58246,412.86862 C 136.25433,412.47019 135.85004,412.27097 135.36957,412.27097 C 134.90082,412.27097 134.50824,412.46238 134.19184,412.84518 C 133.87934,413.228 133.72309,413.83152 133.72309,414.65573"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 137.05707,417.7612 l 0,-0.78516 c -0.39453,0.61719 -0.97461,0.92578 -1.74023,0.92578 c -0.4961,0 -0.95313,-0.13671 -1.3711,-0.41015 c -0.41406,-0.27344 -0.73632,-0.6543 -0.96679,-1.14258 c -0.22656,-0.49219 -0.33985,-1.05664 -0.33985,-1.69336 c 0,-0.62109 0.10352,-1.18359 0.31055,-1.6875 c 0.20703,-0.50781 0.51758,-0.89648 0.93164,-1.16601 c 0.41406,-0.26953 0.87695,-0.40429 1.38867,-0.4043 c 0.375,10e-6 0.70898,0.0801 1.00196,0.24023 c 0.29296,0.15626 0.53124,0.36134 0.71484,0.61524 l 0,-3.08203 l 1.04883,0 l 0,8.58984 l -0.97852,0 m -3.33398,-3.10547 c 0,0.79688 0.16797,1.39258 0.5039,1.78711 c 0.33594,0.39453 0.73242,0.5918 1.18946,0.5918 c 0.46093,0 0.85156,-0.1875 1.17187,-0.5625 c 0.32422,-0.37891 0.48633,-0.95508 0.48633,-1.72852 c 0,-0.85156 -0.16407,-1.47656 -0.49219,-1.875 c -0.32813,-0.39843 -0.73242,-0.59765 -1.21289,-0.59765 c -0.46875,0 -0.86133,0.19141 -1.17773,0.57421 c -0.3125,0.38282 -0.46875,0.98634 -0.46875,1.81055"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11412"
inkscape:connector-curvature="0" />
</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"
d="m 83.756292,432.7612 l 0,-8.58984 l 3.240234,0 c 0.570308,0 1.005854,0.0274 1.306641,0.082 c 0.421869,0.0703 0.775384,0.20508 1.060547,0.40429 c 0.285149,0.19532 0.513665,0.47072 0.685547,0.82618 c 0.175773,0.35547 0.263664,0.7461 0.263671,1.17187 c -7e-6,0.73048 -0.232429,1.34962 -0.697265,1.85742 c -0.46485,0.50391 -1.304693,0.75587 -2.519531,0.75586 l -2.203125,0 l 0,3.49219 l -1.136719,0 m 1.136719,-4.50586 l 2.220703,0 c 0.73437,10e-6 1.255854,-0.13671 1.564453,-0.41016 c 0.308587,-0.27343 0.462884,-0.65819 0.46289,-1.15429 c -6e-6,-0.35937 -0.0918,-0.66601 -0.27539,-0.91992 c -0.179693,-0.25781 -0.417975,-0.42773 -0.714844,-0.50977 c -0.191411,-0.0508 -0.544927,-0.0762 -1.060547,-0.0762 l -2.197265,0 l 0,3.07031"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11422"
inkscape:connector-curvature="0" />
<path
d="M 91.613714,432.7612 L 91.613714,424.17136 L 92.668401,424.17136 L 92.668401,432.7612 L 91.613714,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 91.613714,432.7612 l 0,-8.58984 l 1.054687,0 l 0,8.58984 l -1.054687,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11424"
inkscape:connector-curvature="0" />
<path
d="M 98.369573,431.99362 C 97.978944,432.32565 97.601991,432.56003 97.238714,432.69675 C 96.879335,432.83347 96.492617,432.90182 96.078557,432.90182 C 95.394962,432.90182 94.869572,432.73581 94.502386,432.40378 C 94.135197,432.06784 93.951604,431.64011 93.951604,431.12057 C 93.951604,430.81589 94.019963,430.53855 94.156682,430.28854 C 94.297307,430.03464 94.478947,429.83152 94.701604,429.67917 C 94.928165,429.52683 95.182071,429.41159 95.463323,429.33347 C 95.670352,429.27878 95.982852,429.22605 96.400823,429.17526 C 97.252382,429.0737 97.879334,428.95261 98.281682,428.81198 C 98.285584,428.66745 98.287537,428.57566 98.287542,428.53659 C 98.287537,428.10691 98.187928,427.80417 97.988714,427.62839 C 97.719178,427.39011 97.318788,427.27097 96.787542,427.27097 C 96.291445,427.27097 95.924258,427.35886 95.685979,427.53464 C 95.451602,427.70652 95.277774,428.01316 95.164495,428.45456 L 94.133245,428.31393 C 94.226994,427.87253 94.381291,427.51706 94.596136,427.24753 C 94.810978,426.9741 95.121525,426.76511 95.527776,426.62057 C 95.934024,426.47214 96.404726,426.39793 96.939886,426.39792 C 97.471132,426.39793 97.902772,426.46043 98.234807,426.58542 C 98.566834,426.71042 98.810974,426.86863 98.967229,427.06003 C 99.123474,427.24753 99.232849,427.48581 99.295354,427.77487 C 99.330505,427.95456 99.348083,428.27878 99.348089,428.74753 L 99.348089,430.15378 C 99.348083,431.13425 99.369567,431.75534 99.412542,432.01706 C 99.459411,432.27487 99.549255,432.52292 99.682073,432.7612 L 98.580511,432.7612 C 98.471131,432.54245 98.400818,432.28659 98.369573,431.99362 M 98.281682,429.63815 C 97.898866,429.79441 97.324647,429.92722 96.559026,430.03659 C 96.12543,430.09909 95.81879,430.16941 95.639104,430.24753 C 95.459415,430.32566 95.320743,430.44089 95.223089,430.59323 C 95.125431,430.74167 95.076603,430.90769 95.076604,431.09128 C 95.076603,431.37253 95.182071,431.6069 95.393011,431.7944 C 95.607852,431.9819 95.920352,432.07565 96.330511,432.07565 C 96.736757,432.07565 97.098085,431.98776 97.414495,431.81198 C 97.730897,431.63229 97.963319,431.38815 98.111761,431.07956 C 98.225037,430.84128 98.281678,430.48972 98.281682,430.02487 L 98.281682,429.63815"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 98.369573,431.99362 c -0.390629,0.33203 -0.767582,0.56641 -1.130859,0.70313 c -0.359379,0.13672 -0.746097,0.20507 -1.160157,0.20507 c -0.683595,0 -1.208985,-0.16601 -1.576171,-0.49804 c -0.367189,-0.33594 -0.550782,-0.76367 -0.550782,-1.28321 c 0,-0.30468 0.06836,-0.58202 0.205078,-0.83203 c 0.140625,-0.2539 0.322265,-0.45702 0.544922,-0.60937 c 0.226561,-0.15234 0.480467,-0.26758 0.761719,-0.3457 c 0.207029,-0.0547 0.519529,-0.10742 0.9375,-0.15821 c 0.851559,-0.10156 1.478511,-0.22265 1.880859,-0.36328 c 0.0039,-0.14453 0.0059,-0.23632 0.0059,-0.27539 c -5e-6,-0.42968 -0.09961,-0.73242 -0.298828,-0.9082 c -0.269536,-0.23828 -0.669926,-0.35742 -1.201172,-0.35742 c -0.496097,0 -0.863284,0.0879 -1.101563,0.26367 c -0.234377,0.17188 -0.408205,0.47852 -0.521484,0.91992 l -1.03125,-0.14063 c 0.09375,-0.4414 0.248046,-0.79687 0.462891,-1.0664 c 0.214842,-0.27343 0.525389,-0.48242 0.93164,-0.62696 c 0.406248,-0.14843 0.87695,-0.22264 1.41211,-0.22265 c 0.531246,10e-6 0.962886,0.0625 1.294921,0.1875 c 0.332027,0.125 0.576167,0.28321 0.732422,0.47461 c 0.156245,0.1875 0.26562,0.42578 0.328125,0.71484 c 0.03515,0.17969 0.05273,0.50391 0.05273,0.97266 l 0,1.40625 c -6e-6,0.98047 0.02148,1.60156 0.06445,1.86328 c 0.04687,0.25781 0.136713,0.50586 0.269531,0.74414 l -1.101562,0 c -0.10938,-0.21875 -0.179693,-0.47461 -0.210938,-0.76758 m -0.08789,-2.35547 c -0.382816,0.15626 -0.957035,0.28907 -1.722656,0.39844 c -0.433596,0.0625 -0.740236,0.13282 -0.919922,0.21094 c -0.179689,0.0781 -0.318361,0.19336 -0.416015,0.3457 c -0.09766,0.14844 -0.146486,0.31446 -0.146485,0.49805 c -1e-6,0.28125 0.105467,0.51562 0.316407,0.70312 c 0.214841,0.1875 0.527341,0.28125 0.9375,0.28125 c 0.406246,0 0.767574,-0.0879 1.083984,-0.26367 c 0.316402,-0.17969 0.548824,-0.42383 0.697266,-0.73242 c 0.113276,-0.23828 0.169917,-0.58984 0.169921,-1.05469 l 0,-0.38672"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11426"
inkscape:connector-curvature="0" />
<path
d="M 103.29145,431.81784 L 103.44379,432.74948 C 103.14691,432.81198 102.88129,432.84323 102.64692,432.84323 C 102.2641,432.84323 101.96723,432.78268 101.75629,432.66159 C 101.54535,432.5405 101.39692,432.38229 101.31098,432.18698 C 101.22504,431.98776 101.18207,431.57175 101.18207,430.93893 L 101.18207,427.35886 L 100.40864,427.35886 L 100.40864,426.53854 L 101.18207,426.53854 L 101.18207,424.99753 L 102.2309,424.36472 L 102.2309,426.53854 L 103.29145,426.53854 L 103.29145,427.35886 L 102.2309,427.35886 L 102.2309,430.99753 C 102.2309,431.29831 102.24848,431.49167 102.28364,431.57761 C 102.3227,431.66354 102.38324,431.7319 102.46528,431.78268 C 102.55121,431.83347 102.6723,431.85886 102.82856,431.85886 C 102.94574,431.85886 103.10004,431.84519 103.29145,431.81784"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 103.29145,431.81784 l 0.15234,0.93164 c -0.29688,0.0625 -0.5625,0.0937 -0.79687,0.0937 c -0.38282,0 -0.67969,-0.0605 -0.89063,-0.18164 c -0.21094,-0.12109 -0.35937,-0.2793 -0.44531,-0.47461 c -0.0859,-0.19922 -0.12891,-0.61523 -0.12891,-1.24805 l 0,-3.58007 l -0.77343,0 l 0,-0.82032 l 0.77343,0 l 0,-1.54101 l 1.04883,-0.63281 l 0,2.17382 l 1.06055,0 l 0,0.82032 l -1.06055,0 l 0,3.63867 c 0,0.30078 0.0176,0.49414 0.0527,0.58008 c 0.0391,0.0859 0.0996,0.15429 0.18164,0.20507 c 0.0859,0.0508 0.20702,0.0762 0.36328,0.0762 c 0.11718,0 0.27148,-0.0137 0.46289,-0.041"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11428"
inkscape:connector-curvature="0" />
<path
d="M 104.3227,425.38425 L 104.3227,424.17136 L 105.37739,424.17136 L 105.37739,425.38425 L 104.3227,425.38425 M 104.3227,432.7612 L 104.3227,426.53854 L 105.37739,426.53854 L 105.37739,432.7612 L 104.3227,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 104.3227,425.38425 l 0,-1.21289 l 1.05469,0 l 0,1.21289 l -1.05469,0 m 0,7.37695 l 0,-6.22266 l 1.05469,0 l 0,6.22266 l -1.05469,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11430"
inkscape:connector-curvature="0" />
<path
d="M 106.98871,432.7612 L 106.98871,426.53854 L 107.93793,426.53854 L 107.93793,427.42331 C 108.39496,426.73972 109.05512,426.39793 109.9184,426.39792 C 110.2934,426.39793 110.63715,426.46628 110.94965,426.603 C 111.26605,426.73582 111.50238,426.9116 111.65864,427.13034 C 111.81488,427.3491 111.92425,427.60886 111.98676,427.90964 C 112.02582,428.10495 112.04535,428.44675 112.04535,428.93503 L 112.04535,432.7612 L 110.99067,432.7612 L 110.99067,428.97604 C 110.99066,428.54636 110.94965,428.22605 110.86762,428.01511 C 110.78558,427.80027 110.6391,427.63035 110.42817,427.50534 C 110.22113,427.37644 109.97699,427.31199 109.69575,427.31198 C 109.24652,427.31199 108.85785,427.45456 108.52973,427.73972 C 108.20551,428.02488 108.0434,428.56589 108.0434,429.36276 L 108.0434,432.7612 L 106.98871,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 106.98871,432.7612 l 0,-6.22266 l 0.94922,0 l 0,0.88477 c 0.45703,-0.68359 1.11719,-1.02538 1.98047,-1.02539 c 0.375,10e-6 0.71875,0.0684 1.03125,0.20508 c 0.3164,0.13282 0.55273,0.3086 0.70899,0.52734 c 0.15624,0.21876 0.26561,0.47852 0.32812,0.7793 c 0.0391,0.19531 0.0586,0.53711 0.0586,1.02539 l 0,3.82617 l -1.05468,0 l 0,-3.78516 c -1e-5,-0.42968 -0.041,-0.74999 -0.12305,-0.96093 c -0.082,-0.21484 -0.22852,-0.38476 -0.43945,-0.50977 c -0.20704,-0.1289 -0.45118,-0.19335 -0.73242,-0.19336 c -0.44923,10e-6 -0.8379,0.14258 -1.16602,0.42774 c -0.32422,0.28516 -0.48633,0.82617 -0.48633,1.62304 l 0,3.39844 l -1.05469,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11432"
inkscape:connector-curvature="0" />
<path
d="M 117.74653,432.7612 L 117.74653,431.84714 C 117.26215,432.55026 116.60394,432.90182 115.77192,432.90182 C 115.40473,432.90182 115.06098,432.83151 114.74067,432.69089 C 114.42426,432.55026 114.18793,432.37448 114.03168,432.16354 C 113.87934,431.9487 113.77192,431.68698 113.70942,431.37839 C 113.66645,431.17136 113.64496,430.84323 113.64496,430.39401 L 113.64496,426.53854 L 114.69965,426.53854 L 114.69965,429.98972 C 114.69965,430.5405 114.72113,430.91159 114.7641,431.103 C 114.83051,431.38034 114.97113,431.59909 115.18598,431.75925 C 115.40082,431.9155 115.66645,431.99362 115.98285,431.99362 C 116.29926,431.99362 116.59613,431.91354 116.87348,431.75339 C 117.15082,431.58933 117.34613,431.36862 117.45942,431.09128 C 117.5766,430.81003 117.63519,430.40378 117.6352,429.87253 L 117.6352,426.53854 L 118.68989,426.53854 L 118.68989,432.7612 L 117.74653,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 117.74653,432.7612 l 0,-0.91406 c -0.48438,0.70312 -1.14259,1.05468 -1.97461,1.05468 c -0.36719,0 -0.71094,-0.0703 -1.03125,-0.21093 c -0.31641,-0.14063 -0.55274,-0.31641 -0.70899,-0.52735 c -0.15234,-0.21484 -0.25976,-0.47656 -0.32226,-0.78515 c -0.043,-0.20703 -0.0645,-0.53516 -0.0645,-0.98438 l 0,-3.85547 l 1.05469,0 l 0,3.45118 c 0,0.55078 0.0215,0.92187 0.0644,1.11328 c 0.0664,0.27734 0.20703,0.49609 0.42188,0.65625 c 0.21484,0.15625 0.48047,0.23437 0.79687,0.23437 c 0.31641,0 0.61328,-0.0801 0.89063,-0.24023 c 0.27734,-0.16406 0.47265,-0.38477 0.58594,-0.66211 c 0.11718,-0.28125 0.17577,-0.6875 0.17578,-1.21875 l 0,-3.33399 l 1.05469,0 l 0,6.22266 l -0.94336,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11434"
inkscape:connector-curvature="0" />
<path
d="M 120.34809,432.7612 L 120.34809,426.53854 L 121.29145,426.53854 L 121.29145,427.41159 C 121.48676,427.10691 121.74652,426.86277 122.07074,426.67917 C 122.39496,426.49167 122.7641,426.39793 123.17817,426.39792 C 123.6391,426.39793 124.01605,426.49363 124.30903,426.68503 C 124.6059,426.87644 124.81488,427.14402 124.93598,427.48776 C 125.42816,426.76121 126.06879,426.39793 126.85785,426.39792 C 127.47503,426.39793 127.94964,426.5698 128.28168,426.91354 C 128.6137,427.25339 128.77972,427.77878 128.77973,428.48972 L 128.77973,432.7612 L 127.7309,432.7612 L 127.7309,428.84128 C 127.73089,428.41941 127.69574,428.11667 127.62543,427.93307 C 127.55902,427.74558 127.43597,427.59519 127.25629,427.4819 C 127.0766,427.36863 126.86566,427.31199 126.62348,427.31198 C 126.18597,427.31199 125.82269,427.45847 125.53364,427.75143 C 125.24457,428.0405 125.10004,428.50534 125.10004,429.14597 L 125.10004,432.7612 L 124.04535,432.7612 L 124.04535,428.71823 C 124.04535,428.24949 123.95941,427.89792 123.78754,427.66354 C 123.61566,427.42917 123.33441,427.31199 122.94379,427.31198 C 122.64691,427.31199 122.37152,427.39011 122.11762,427.54636 C 121.86762,427.70261 121.68598,427.93113 121.5727,428.2319 C 121.45941,428.53269 121.40277,428.96628 121.40278,429.53268 L 121.40278,432.7612 L 120.34809,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 120.34809,432.7612 l 0,-6.22266 l 0.94336,0 l 0,0.87305 c 0.19531,-0.30468 0.45507,-0.54882 0.77929,-0.73242 c 0.32422,-0.1875 0.69336,-0.28124 1.10743,-0.28125 c 0.46093,10e-6 0.83788,0.0957 1.13086,0.28711 c 0.29687,0.19141 0.50585,0.45899 0.62695,0.80273 c 0.49218,-0.72655 1.13281,-1.08983 1.92187,-1.08984 c 0.61718,10e-6 1.09179,0.17188 1.42383,0.51562 c 0.33202,0.33985 0.49804,0.86524 0.49805,1.57618 l 0,4.27148 l -1.04883,0 l 0,-3.91992 c -1e-5,-0.42187 -0.0352,-0.72461 -0.10547,-0.90821 c -0.0664,-0.18749 -0.18946,-0.33788 -0.36914,-0.45117 c -0.17969,-0.11327 -0.39063,-0.16991 -0.63281,-0.16992 c -0.43751,10e-6 -0.80079,0.14649 -1.08984,0.43945 c -0.28907,0.28907 -0.4336,0.75391 -0.4336,1.39454 l 0,3.61523 l -1.05469,0 l 0,-4.04297 c 0,-0.46874 -0.0859,-0.82031 -0.25781,-1.05469 c -0.17188,-0.23437 -0.45313,-0.35155 -0.84375,-0.35156 c -0.29688,10e-6 -0.57227,0.0781 -0.82617,0.23438 c -0.25,0.15625 -0.43164,0.38477 -0.54492,0.68554 c -0.11329,0.30079 -0.16993,0.73438 -0.16992,1.30078 l 0,3.22852 l -1.05469,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11436"
inkscape:connector-curvature="0" />
<path
d="M 138.78754,432.7612 L 136.42035,426.53854 L 137.53364,426.53854 L 138.86957,430.26511 C 139.0141,430.66745 139.14691,431.08542 139.26801,431.51901 C 139.36176,431.19089 139.49262,430.79636 139.66059,430.33542 L 141.0434,426.53854 L 142.12739,426.53854 L 139.77192,432.7612 L 138.78754,432.7612"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 138.78754,432.7612 l -2.36719,-6.22266 l 1.11329,0 l 1.33593,3.72657 c 0.14453,0.40234 0.27734,0.82031 0.39844,1.2539 c 0.0937,-0.32812 0.22461,-0.72265 0.39258,-1.18359 l 1.38281,-3.79688 l 1.08399,0 l -2.35547,6.22266 l -0.98438,0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11440"
inkscape:connector-curvature="0" />
<path
d="M 142.9477,430.77487 L 143.96137,430.68112 C 144.04731,431.15769 144.21137,431.50339 144.45356,431.71823 C 144.69574,431.93308 145.00629,432.0405 145.3852,432.0405 C 145.70941,432.0405 145.99262,431.96628 146.23481,431.81784 C 146.4809,431.6694 146.68207,431.47214 146.83832,431.22604 C 146.99457,430.97605 147.12543,430.64011 147.2309,430.21823 C 147.33636,429.79636 147.3891,429.36667 147.3891,428.92917 C 147.3891,428.8823 147.38715,428.81199 147.38324,428.71823 C 147.1723,429.05417 146.88324,429.32761 146.51606,429.53854 C 146.15277,429.74558 145.75824,429.84909 145.33246,429.84909 C 144.62152,429.84909 144.01996,429.59128 143.52778,429.07565 C 143.03559,428.56003 142.78949,427.88035 142.78949,427.03659 C 142.78949,426.1655 143.04535,425.46433 143.55707,424.93307 C 144.0727,424.40183 144.71723,424.13621 145.49067,424.1362 C 146.04926,424.13621 146.55902,424.2866 147.01996,424.58737 C 147.4848,424.88816 147.83636,425.31785 148.07465,425.87643 C 148.31683,426.43113 148.43793,427.23581 148.43793,428.2905 C 148.43793,429.38816 148.31879,430.26316 148.08051,430.9155 C 147.84222,431.56394 147.48676,432.05808 147.0141,432.39792 C 146.54535,432.73776 145.99457,432.90768 145.36176,432.90768 C 144.68988,432.90768 144.14106,432.72214 143.71528,432.35104 C 143.28949,431.97604 143.03363,431.45065 142.9477,430.77487 M 147.26606,426.98386 C 147.26605,426.37839 147.10394,425.89793 146.77973,425.54245 C 146.45941,425.18699 146.07269,425.00925 145.61957,425.00925 C 145.15082,425.00925 144.74262,425.20066 144.39496,425.58347 C 144.04731,425.96628 143.87348,426.46238 143.87348,427.07175 C 143.87348,427.61863 144.03754,428.06394 144.36567,428.40768 C 144.6977,428.74753 145.1059,428.91745 145.59028,428.91745 C 146.07855,428.91745 146.47894,428.74753 146.79145,428.40768 C 147.10785,428.06394 147.26605,427.58933 147.26606,426.98386"
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial"
d="m 142.9477,430.77487 l 1.01367,-0.0937 c 0.0859,0.47657 0.25,0.82227 0.49219,1.03711 c 0.24218,0.21485 0.55273,0.32227 0.93164,0.32227 c 0.32421,0 0.60742,-0.0742 0.84961,-0.22266 c 0.24609,-0.14844 0.44726,-0.3457 0.60351,-0.5918 c 0.15625,-0.24999 0.28711,-0.58593 0.39258,-1.00781 c 0.10546,-0.42187 0.1582,-0.85156 0.1582,-1.28906 c 0,-0.0469 -0.002,-0.11718 -0.006,-0.21094 c -0.21094,0.33594 -0.5,0.60938 -0.86718,0.82031 c -0.36329,0.20704 -0.75782,0.31055 -1.1836,0.31055 c -0.71094,0 -1.3125,-0.25781 -1.80468,-0.77344 c -0.49219,-0.51562 -0.73829,-1.1953 -0.73829,-2.03906 c 0,-0.87109 0.25586,-1.57226 0.76758,-2.10352 c 0.51563,-0.53124 1.16016,-0.79686 1.9336,-0.79687 c 0.55859,10e-6 1.06835,0.1504 1.52929,0.45117 c 0.46484,0.30079 0.8164,0.73048 1.05469,1.28906 c 0.24218,0.5547 0.36328,1.35938 0.36328,2.41407 c 0,1.09766 -0.11914,1.97266 -0.35742,2.625 c -0.23829,0.64844 -0.59375,1.14258 -1.06641,1.48242 c -0.46875,0.33984 -1.01953,0.50976 -1.65234,0.50976 c -0.67188,0 -1.2207,-0.18554 -1.64648,-0.55664 c -0.42579,-0.375 -0.68165,-0.90039 -0.76758,-1.57617 m 4.31836,-3.79101 c -1e-5,-0.60547 -0.16212,-1.08593 -0.48633,-1.44141 c -0.32032,-0.35546 -0.70704,-0.5332 -1.16016,-0.5332 c -0.46875,0 -0.87695,0.19141 -1.22461,0.57422 c -0.34765,0.38281 -0.52148,0.87891 -0.52148,1.48828 c 0,0.54688 0.16406,0.99219 0.49219,1.33593 c 0.33203,0.33985 0.74023,0.50977 1.22461,0.50977 c 0.48827,0 0.88866,-0.16992 1.20117,-0.50977 c 0.3164,-0.34374 0.4746,-0.81835 0.47461,-1.42382"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#e6e6e6;fill-opacity:1;stroke:none"
id="path11442"
inkscape:connector-curvature="0" />
</g>
@ -2619,17 +2656,16 @@
<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" />
style="display:none;fill:#191919;fill-opacity:0;fill-rule:nonzero;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
@ -2644,7 +2680,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 +2708,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 +2724,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"
@ -2696,12 +2732,12 @@
</g>
</g>
<rect
style="fill:#aaaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:#aaaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="smeter-bg"
width="155.25"
height="67.5"
x="7.0744791"
y="295.48413"
x="-164.92552"
y="289.91629"
rx="3.9999998"
ry="3.9999998" />
<text
@ -2717,13 +2753,13 @@
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,-232.42552,-108.3337)">
<path
sodipodi:open="true"
sodipodi:end="4.5727626"
sodipodi:start="3.6302848"
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.74006951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:0.74006951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4759"
sodipodi:cx="57.5"
sodipodi:cy="347.5"
@ -2733,26 +2769,26 @@
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-dasharray:none;stroke-opacity:1"
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"
id="path4781"
d="M 114.48102,306.62821 L 113.42035,315.28097"
d="m 114.48102,306.62821 l -1.06067,8.65276"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 124.20875,308.70221 L 121.6661,317.03801"
d="m 124.20875,308.70221 l -2.54265,8.3358"
id="path4783"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -2760,11 +2796,11 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4785"
d="M 133.42882,312.44292 L 129.4774,320.21777"
d="m 133.42882,312.44292 l -3.95142,7.77485"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 141.8612,317.73671 L 136.62101,324.70949"
d="m 141.8612,317.73671 l -5.24019,6.97278"
id="path4787"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -2772,30 +2808,30 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4789"
d="M 149.24954,324.42277 L 142.88094,330.37857"
d="m 149.24954,324.42277 l -6.3686,5.9558"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 155.36948,332.29788 L 148.04638,337.02786"
d="m 155.36948,332.29788 l -7.3231,4.72998"
id="path4791"
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-dasharray:none;stroke-opacity:1"
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
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 104.54096,306.2803 L 104.99562,314.9968"
d="m 104.54096,306.2803 l 0.45466,8.7165"
id="path4795"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -2803,11 +2839,11 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4797"
d="M 98.60121,306.91389 L 99.961998,315.5343"
d="m 98.60121,306.91389 l 1.360788,8.62041"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 92.75868,308.1648 L 95.010807,316.59496"
d="m 92.75868,308.1648 l 2.252127,8.43016"
id="path4799"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -2815,11 +2851,11 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4801"
d="M 87.076675,310.01949 L 90.195473,318.16739"
d="m 87.076675,310.01949 l 3.118798,8.1479"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 81.62074,312.46734 L 85.56851,320.23608"
d="m 81.62074,312.46734 l 3.94777,7.76874"
id="path4803"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -2827,36 +2863,36 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4805"
d="M 76.44715,315.47142 L 81.181543,322.78057"
d="m 76.44715,315.47142 l 4.734393,7.30915"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 71.613793,319.00235 L 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"
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="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"
id="path6380"
style="fill:none;stroke:#ff272f;stroke-width:3.46135497;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:type="arc"
sodipodi:start="3.7358463"
sodipodi:end="3.9403534"
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 5.470653,6.77253"
id="path4807"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4809"
d="M 67.173673,323.02142 L 73.323913,329.18642"
d="m 67.173673,323.02142 l 6.15024,6.165"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="M 63.175388,327.48461 L 69.941164,332.97603"
d="m 63.175388,327.48461 l 6.765776,5.49142"
id="path4811"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
@ -2864,7 +2900,7 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4813"
d="M 59.662758,332.34302 L 66.992525,337.06321"
d="m 59.662758,332.34302 l 7.329767,4.72019"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
sodipodi:open="true"
@ -2875,19 +2911,19 @@
sodipodi:cy="347.5"
sodipodi:cx="57.5"
id="path4815"
style="fill:none;stroke:#000000;stroke-width:0.80278951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:0.80278951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:type="arc"
sodipodi:start="3.6302848"
sodipodi:end="4.5727626" />
<path
sodipodi:type="arc"
style="fill:none;stroke:#000000;stroke-width:0.80278951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:0.80278951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4854"
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 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"
@ -2895,61 +2931,61 @@
<path
inkscape:connector-curvature="0"
id="path4856"
d="M 66.992525,337.06321 L 63.579078,334.86504"
d="m 66.992525,337.06321 l -3.413447,-2.19817"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4858"
d="M 105,315.00001 L 104.78598,310.93569"
d="m 105,315.00001 l -0.21402,-4.06432"
style="fill:none;stroke:#000000;stroke-width:0.74074072px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 57.090277,332.13336 L 57.385206,331.56105 C 57.844434,331.78402 58.185688,331.73 58.408961,331.39893 C 58.519582,331.2349 58.564113,331.07728 58.542463,330.92599 C 58.519343,330.77372 58.444413,330.65483 58.317659,330.56935 C 58.243109,330.51905 58.168671,330.49275 58.09436,330.49035 C 58.02012,330.48835 57.943808,330.50895 57.865803,330.55425 C 57.786413,330.59855 57.619954,330.72252 57.366943,330.92719 C 57.140994,331.11107 56.950749,331.22896 56.796348,331.28103 C 56.642013,331.33333 56.476677,331.34613 56.300771,331.32093 C 56.124333,331.29313 55.959315,331.22733 55.805727,331.12369 C 55.626794,331.003 55.492912,330.85412 55.404081,330.67705 C 55.316241,330.49848 55.284118,330.31297 55.307571,330.12056 C 55.331051,329.92812 55.41371,329.7268 55.555519,329.51655 C 55.768752,329.20045 56.020948,329.0115 56.312095,328.94972 C 56.603278,328.88792 56.911904,328.95972 57.238037,329.16423 L 56.900525,329.72735 C 56.708488,329.63255 56.550775,329.601 56.427382,329.63275 C 56.30401,329.66455 56.192967,329.75336 56.094477,329.8996 C 55.995877,330.04568 55.950554,330.17893 55.958369,330.29918 C 55.966269,330.41946 56.015599,330.51027 56.106552,330.57161 C 56.196032,330.63201 56.29546,330.64701 56.404867,330.61661 C 56.514217,330.58611 56.692528,330.46679 56.939562,330.25806 C 57.202676,330.03852 57.418916,329.89801 57.58833,329.83652 C 57.757273,329.77252 57.93272,329.75532 58.114633,329.78462 C 58.295072,329.81302 58.483694,329.89363 58.680515,330.02639 C 58.96532,330.2185 59.145296,330.46789 59.220448,330.77459 C 59.296618,331.0798 59.208978,331.41879 58.957541,331.79156 C 58.512993,332.45063 57.890431,332.56432 57.090243,332.13312"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 57.090277,332.13336 l 0.294929,-0.57231 c 0.459228,0.22297 0.800482,0.16895 1.023755,-0.16212 c 0.110621,-0.16403 0.155152,-0.32165 0.133502,-0.47294 c -0.02312,-0.15227 -0.09805,-0.27116 -0.224804,-0.35664 c -0.07455,-0.0503 -0.148988,-0.0766 -0.223299,-0.079 c -0.07424,-0.002 -0.150552,0.0186 -0.228557,0.0639 c -0.07939,0.0443 -0.245849,0.16827 -0.49886,0.37294 c -0.225949,0.18388 -0.416194,0.30177 -0.570595,0.35384 c -0.154335,0.0523 -0.319671,0.0651 -0.495577,0.0399 c -0.176438,-0.0278 -0.341456,-0.0936 -0.495044,-0.19724 c -0.178933,-0.12069 -0.312815,-0.26957 -0.401646,-0.44664 c -0.08784,-0.17857 -0.119963,-0.36408 -0.09651,-0.55649 c 0.02348,-0.19244 0.106139,-0.39376 0.247948,-0.60401 c 0.213233,-0.3161 0.465429,-0.50505 0.756576,-0.56683 c 0.291183,-0.0618 0.599809,0.01 0.925942,0.21451 l -0.337512,0.56312 c -0.192037,-0.0948 -0.34975,-0.12635 -0.473143,-0.0946 c -0.123372,0.0318 -0.234415,0.12061 -0.332905,0.26685 c -0.0986,0.14608 -0.143923,0.27933 -0.136108,0.39958 c 0.0079,0.12028 0.05723,0.21109 0.148183,0.27243 c 0.08948,0.0604 0.188908,0.0754 0.298315,0.045 c 0.10935,-0.0305 0.287661,-0.14982 0.534695,-0.35855 c 0.263114,-0.21954 0.479354,-0.36005 0.648768,-0.42154 c 0.168943,-0.064 0.34439,-0.0812 0.526303,-0.0519 c 0.180439,0.0284 0.369061,0.10901 0.565882,0.24177 c 0.284805,0.19211 0.464781,0.4415 0.539933,0.7482 c 0.07617,0.30521 -0.01147,0.6442 -0.262907,1.01697 c -0.444548,0.65907 -1.06711,0.77276 -1.867298,0.34156"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5127"
inkscape:connector-curvature="0" />
<path
d="M 62.731555,326.47947 L 62.154045,327.1677 L 58.98513,324.50866 C 59.05847,325.00874 59.02151,325.48425 58.874258,325.93521 L 58.111202,325.29494 C 58.194102,325.03815 58.222019,324.72332 58.194952,324.35046 C 58.165872,323.97592 58.054143,323.63909 57.8598,323.34001 L 58.326831,322.78343 L 62.731585,326.47946"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 62.731555,326.47947 l -0.57751,0.68823 l -3.168915,-2.65904 c 0.07334,0.50008 0.03638,0.97559 -0.110872,1.42655 l -0.763056,-0.64027 c 0.0829,-0.25679 0.110817,-0.57162 0.08375,-0.94448 c -0.02908,-0.37454 -0.140809,-0.71137 -0.335152,-1.01045 l 0.467031,-0.55658 l 4.404754,3.69603"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5129"
inkscape:connector-curvature="0" />
<path
d="M 67.130182,320.50533 L 67.838418,321.23873 L 65.567996,323.43124 C 65.32461,323.13048 65.144439,322.79582 65.027479,322.42727 C 64.910532,322.05507 64.835738,321.49202 64.802811,320.7382 C 64.774601,320.13915 64.738091,319.75084 64.693301,319.57324 C 64.629691,319.31248 64.516513,319.09778 64.353694,318.92917 C 64.180028,318.74935 64.008613,318.65244 63.839414,318.63843 C 63.670223,318.62443 63.520102,318.68103 63.388939,318.80738 C 63.102336,319.08416 63.154912,319.44789 63.546694,319.89858 L 62.827256,320.44131 C 62.461376,319.9837 62.279946,319.5634 62.282941,319.18038 C 62.287841,318.79554 62.451353,318.44755 62.773565,318.13641 C 63.127608,317.7945 63.505783,317.6519 63.908143,317.70867 C 64.31049,317.76547 64.655478,317.94272 64.94311,318.24057 C 65.105925,318.40918 65.240782,318.5957 65.347701,318.80017 C 65.454722,319.00093 65.538217,319.22801 65.598244,319.48137 C 65.656504,319.73284 65.694414,320.09079 65.712107,320.55523 C 65.730297,320.99018 65.747477,321.27227 65.763637,321.40147 C 65.781747,321.52885 65.808227,321.64444 65.843267,321.74817 L 67.130207,320.50537"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 67.130182,320.50533 l 0.708236,0.7334 l -2.270422,2.19251 c -0.243386,-0.30076 -0.423557,-0.63542 -0.540517,-1.00397 c -0.116947,-0.3722 -0.191741,-0.93525 -0.224668,-1.68907 c -0.02821,-0.59905 -0.06472,-0.98736 -0.10951,-1.16496 c -0.06361,-0.26076 -0.176788,-0.47546 -0.339607,-0.64407 c -0.173666,-0.17982 -0.345081,-0.27673 -0.51428,-0.29074 c -0.169191,-0.014 -0.319312,0.0426 -0.450475,0.16895 c -0.286603,0.27678 -0.234027,0.64051 0.157755,1.0912 l -0.719438,0.54273 c -0.36588,-0.45761 -0.54731,-0.87791 -0.544315,-1.26093 c 0.0049,-0.38484 0.168412,-0.73283 0.490624,-1.04397 c 0.354043,-0.34191 0.732218,-0.48451 1.134578,-0.42774 c 0.402347,0.0568 0.747335,0.23405 1.034967,0.5319 c 0.162815,0.16861 0.297672,0.35513 0.404591,0.5596 c 0.107021,0.20076 0.190516,0.42784 0.250543,0.6812 c 0.05826,0.25147 0.09617,0.60942 0.113863,1.07386 c 0.01819,0.43495 0.03537,0.71704 0.05153,0.84624 c 0.01811,0.12738 0.04459,0.24297 0.07963,0.3467 l 1.28694,-1.2428"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5131"
inkscape:connector-curvature="0" />
<path
d="M 68.69671,318.05921 L 69.303779,317.42133 C 69.488991,317.62033 69.674932,317.73778 69.861621,317.77369 C 70.048292,317.80959 70.208338,317.77569 70.341725,317.67124 C 70.487447,317.55749 70.558463,317.39454 70.554781,317.18257 C 70.551081,316.97063 70.457111,316.74665 70.272722,316.51065 C 70.101177,316.29109 69.918273,316.15638 69.724021,316.10655 C 69.52978,316.05675 69.363913,316.08555 69.226426,316.19305 C 69.136146,316.26365 69.045272,316.36937 68.953702,316.51018 L 68.479938,315.74515 C 68.665683,315.6065 68.771975,315.44429 68.798523,315.2583 C 68.823013,315.07394 68.762353,314.88837 68.616384,314.70163 C 68.49454,314.54569 68.361176,314.45324 68.216311,314.42432 C 68.071427,314.39542 67.939495,314.42732 67.820475,314.52042 C 67.701412,314.61332 67.637897,314.74567 67.629831,314.91725 C 67.622231,315.08513 67.687931,315.27501 67.827036,315.48689 L 67.065566,315.86369 C 66.811032,315.39829 66.70931,314.99529 66.760405,314.65461 C 66.811515,314.31397 66.986872,314.0266 67.286482,313.79252 C 67.623048,313.52962 67.983592,313.44121 68.36819,313.52743 C 68.754827,313.61203 69.061984,313.80001 69.289648,314.0914 C 69.44356,314.28841 69.537098,314.50119 69.57024,314.72974 C 69.60546,314.95671 69.58028,315.19943 69.49474,315.45794 C 69.745447,315.35175 70.00905,315.34245 70.285741,315.42984 C 70.564579,315.51604 70.814628,315.70073 71.035877,315.9839 C 71.35814,316.39637 71.501949,316.83425 71.467329,317.29754 C 71.433159,317.75715 71.246768,318.11923 70.908171,318.38377 C 70.583963,318.63713 70.219961,318.73801 69.816276,318.68661 C 69.414636,318.63361 69.041417,318.42448 68.696652,318.05935"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 68.69671,318.05921 l 0.607069,-0.63788 c 0.185212,0.199 0.371153,0.31645 0.557842,0.35236 c 0.186671,0.0359 0.346717,0.002 0.480104,-0.10245 c 0.145722,-0.11375 0.216738,-0.2767 0.213056,-0.48867 c -0.0037,-0.21194 -0.09767,-0.43592 -0.282059,-0.67192 c -0.171545,-0.21956 -0.354449,-0.35427 -0.548701,-0.4041 c -0.194241,-0.0498 -0.360108,-0.021 -0.497595,0.0865 c -0.09028,0.0706 -0.181154,0.17632 -0.272724,0.31713 l -0.473764,-0.76503 c 0.185745,-0.13865 0.292037,-0.30086 0.318585,-0.48685 c 0.02449,-0.18436 -0.03617,-0.36993 -0.182139,-0.55667 c -0.121844,-0.15594 -0.255208,-0.24839 -0.400073,-0.27731 c -0.144884,-0.0289 -0.276816,0.003 -0.395836,0.0961 c -0.119063,0.0929 -0.182578,0.22525 -0.190644,0.39683 c -0.0076,0.16788 0.0581,0.35776 0.197205,0.56964 l -0.76147,0.3768 c -0.254534,-0.4654 -0.356256,-0.8684 -0.305161,-1.20908 c 0.05111,-0.34064 0.226467,-0.62801 0.526077,-0.86209 c 0.336566,-0.2629 0.69711,-0.35131 1.081708,-0.26509 c 0.386637,0.0846 0.693794,0.27258 0.921458,0.56397 c 0.153912,0.19701 0.24745,0.40979 0.280592,0.63834 c 0.03522,0.22697 0.01004,0.46969 -0.0755,0.7282 c 0.250707,-0.10619 0.51431,-0.11549 0.791001,-0.0281 c 0.278838,0.0862 0.528887,0.27089 0.750136,0.55406 c 0.322263,0.41247 0.466072,0.85035 0.431452,1.31364 c -0.03417,0.45961 -0.220561,0.82169 -0.559158,1.08623 c -0.324208,0.25336 -0.68821,0.35424 -1.091895,0.30284 c -0.40164,-0.053 -0.774859,-0.26213 -1.119624,-0.62726"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5133"
inkscape:connector-curvature="0" />
<path
d="M 75.542127,314.84946 L 74.931477,313.87222 L 73.301631,314.89064 L 72.792413,314.07572 L 72.591158,309.91315 L 73.233819,309.51156 L 75.158917,312.59237 L 75.652509,312.28395 L 76.163797,313.10218 L 75.670203,313.4106 L 76.280855,314.38784 L 75.542127,314.84946 M 74.420188,313.05398 L 73.38312,311.39432 L 73.505886,313.6253 L 74.420188,313.05398"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 75.542127,314.84946 l -0.61065,-0.97724 l -1.629846,1.01842 l -0.509218,-0.81492 l -0.201255,-4.16257 l 0.642661,-0.40159 l 1.925098,3.08081 l 0.493592,-0.30842 l 0.511288,0.81823 l -0.493594,0.30842 l 0.610652,0.97724 l -0.738728,0.46162 m -1.121939,-1.79548 l -1.037068,-1.65966 l 0.122766,2.23098 l 0.914302,-0.57132"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5135"
inkscape:connector-curvature="0" />
<path
d="M 79.003498,310.83481 L 79.761353,310.33916 C 79.892018,310.55358 80.047245,310.69661 80.227065,310.76827 C 80.406886,310.83997 80.567012,310.84147 80.707444,310.77327 C 80.873637,310.69227 80.976426,310.54061 81.01591,310.3186 C 81.05422,310.09418 80.99004,309.81112 80.823382,309.46939 C 80.665835,309.14639 80.489713,308.93676 80.295,308.8405 C 80.102622,308.7431 79.915153,308.73893 79.732579,308.8279 C 79.500865,308.94094 79.353621,309.16775 79.290863,309.50838 L 78.577805,309.7127 L 77.685538,306.8318 L 79.823683,305.78895 L 80.274038,306.71231 L 78.750304,307.45549 L 79.046747,308.39308 C 79.175665,308.19405 79.333742,308.04885 79.520988,307.95752 C 79.853341,307.79537 80.199342,307.78899 80.558903,307.93802 C 81.014727,308.13003 81.376205,308.49989 81.64334,309.04759 C 81.86367,309.49934 81.941063,309.97586 81.875576,310.4772 C 81.812406,310.97737 81.5491,311.34048 81.085663,311.56652 C 80.711168,311.74919 80.338148,311.78041 79.96665,311.66032 C 79.596334,311.5367 79.275268,311.26158 79.00345,310.83497"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 79.003498,310.83481 l 0.757855,-0.49565 c 0.130665,0.21442 0.285892,0.35745 0.465712,0.42911 c 0.179821,0.0717 0.339947,0.0732 0.480379,0.005 c 0.166193,-0.081 0.268982,-0.23266 0.308466,-0.45467 c 0.03831,-0.22442 -0.02587,-0.50748 -0.192528,-0.84921 c -0.157547,-0.323 -0.333669,-0.53263 -0.528382,-0.62889 c -0.192378,-0.0974 -0.379847,-0.10157 -0.562421,-0.0126 c -0.231714,0.11304 -0.378958,0.33985 -0.441716,0.68048 l -0.713058,0.20432 l -0.892267,-2.8809 l 2.138145,-1.04285 l 0.450355,0.92336 l -1.523734,0.74318 l 0.296443,0.93759 c 0.128918,-0.19903 0.286995,-0.34423 0.474241,-0.43556 c 0.332353,-0.16215 0.678354,-0.16853 1.037915,-0.0195 c 0.455824,0.19201 0.817302,0.56187 1.084437,1.10957 c 0.22033,0.45175 0.297723,0.92827 0.232236,1.42961 c -0.06317,0.50017 -0.326476,0.86328 -0.789913,1.08932 c -0.374495,0.18267 -0.747515,0.21389 -1.119013,0.0938 c -0.370316,-0.12362 -0.691382,-0.39874 -0.9632,-0.82535"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5137"
inkscape:connector-curvature="0" />
<path
d="M 86.417599,304.43696 L 85.639115,304.845 C 85.453892,304.45794 85.220568,304.3156 84.939152,304.41803 C 84.755624,304.48483 84.639191,304.64083 84.589871,304.88603 C 84.543001,305.13033 84.614541,305.56295 84.804516,306.18385 C 84.854526,305.99384 84.930564,305.83729 85.032652,305.71422 C 85.134752,305.5912 85.264089,305.50113 85.420706,305.44412 C 85.76575,305.31856 86.125521,305.37052 86.500044,305.59999 C 86.873668,305.82704 87.157565,306.20731 87.351735,306.74077 C 87.558369,307.3085 87.584641,307.80332 87.430605,308.22519 C 87.276543,308.64709 86.998847,308.93106 86.597523,309.07713 C 86.157032,309.23741 85.715093,309.16183 85.271532,308.84891 C 84.829579,308.53312 84.4318,307.88945 84.078202,306.91795 C 83.719257,305.93176 83.611455,305.16732 83.754802,304.62462 C 83.898148,304.08194 84.205967,303.72464 84.678263,303.55274 C 85.003726,303.43427 85.318323,303.44585 85.622067,303.58744 C 85.927362,303.72575 86.192541,304.0089 86.417608,304.43691 M 85.324163,307.38308 C 85.447967,307.72323 85.605219,307.96114 85.795938,308.09681 C 85.988206,308.22913 86.165098,308.26591 86.32661,308.20712 C 86.483225,308.15012 86.585763,308.0283 86.634201,307.84159 C 86.685091,307.65401 86.648641,307.39014 86.524829,307.05 C 86.396573,306.69763 86.246764,306.46116 86.075417,306.34062 C 85.904062,306.22008 85.735184,306.1901 85.56878,306.25062 C 85.407269,306.30942 85.298277,306.43634 85.241832,306.6315 C 85.185382,306.82665 85.212822,307.07716 85.324142,307.38304"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 86.417599,304.43696 l -0.778484,0.40804 c -0.185223,-0.38706 -0.418547,-0.5294 -0.699963,-0.42697 c -0.183528,0.0668 -0.299961,0.2228 -0.349281,0.468 c -0.04687,0.2443 0.02467,0.67692 0.214645,1.29782 c 0.05001,-0.19001 0.126048,-0.34656 0.228136,-0.46963 c 0.1021,-0.12302 0.231437,-0.21309 0.388054,-0.2701 c 0.345044,-0.12556 0.704815,-0.0736 1.079338,0.15587 c 0.373624,0.22705 0.657521,0.60732 0.851691,1.14078 c 0.206634,0.56773 0.232906,1.06255 0.07887,1.48442 c -0.154062,0.4219 -0.431758,0.70587 -0.833082,0.85194 c -0.440491,0.16028 -0.88243,0.0847 -1.325991,-0.22822 c -0.441953,-0.31579 -0.839732,-0.95946 -1.19333,-1.93096 c -0.358945,-0.98619 -0.466747,-1.75063 -0.3234,-2.29333 c 0.143346,-0.54268 0.451165,-0.89998 0.923461,-1.07188 c 0.325463,-0.11847 0.64006,-0.10689 0.943804,0.0347 c 0.305295,0.13831 0.570474,0.42146 0.795541,0.84947 m -1.093445,2.94617 c 0.123804,0.34015 0.281056,0.57806 0.471775,0.71373 c 0.192268,0.13232 0.36916,0.1691 0.530672,0.11031 c 0.156615,-0.057 0.259153,-0.17882 0.307591,-0.36553 c 0.05089,-0.18758 0.01444,-0.45145 -0.109372,-0.79159 c -0.128256,-0.35237 -0.278065,-0.58884 -0.449412,-0.70938 c -0.171355,-0.12054 -0.340233,-0.15052 -0.506637,-0.09 c -0.161511,0.0588 -0.270503,0.18572 -0.326948,0.38088 c -0.05645,0.19515 -0.02901,0.44566 0.08231,0.75154"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5139"
inkscape:connector-curvature="0" />
<path
d="M 90.208876,302.71697 L 89.96223,301.72772 L 92.94892,300.98306 L 93.1417,301.75626 C 92.970307,302.113 92.826314,302.59578 92.709714,303.20456 C 92.59501,303.8102 92.545977,304.44241 92.562616,305.10118 C 92.581146,305.7568 92.653736,306.33855 92.780369,306.84645 L 91.93894,307.05623 C 91.762591,306.26283 91.697737,305.44297 91.744377,304.59665 C 91.791017,303.75033 91.94121,302.95871 92.19495,302.22179 L 90.208876,302.71697"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 90.208876,302.71697 l -0.246646,-0.98925 l 2.98669,-0.74466 l 0.19278,0.7732 c -0.171393,0.35674 -0.315386,0.83952 -0.431986,1.4483 c -0.114704,0.60564 -0.163737,1.23785 -0.147098,1.89662 c 0.01853,0.65562 0.09112,1.23737 0.217753,1.74527 l -0.841429,0.20978 c -0.176349,-0.7934 -0.241203,-1.61326 -0.194563,-2.45958 c 0.04664,-0.84632 0.196833,-1.63794 0.450573,-2.37486 l -1.986074,0.49518"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5141"
inkscape:connector-curvature="0" />
<path
d="M 97.182972,302.64934 C 96.947829,302.56664 96.761036,302.43515 96.622601,302.25475 C 96.484168,302.07435 96.395562,301.84618 96.356781,301.57025 C 96.294081,301.1241 96.370611,300.75176 96.586364,300.4532 C 96.801761,300.15206 97.123498,299.97142 97.551585,299.91125 C 98.005455,299.84745 98.37095,299.94075 98.648071,300.19106 C 98.924825,300.43881 99.091656,300.76512 99.148559,301.17 C 99.187339,301.44592 99.163019,301.69392 99.075599,301.91395 C 98.990399,302.13104 98.855945,302.30641 98.672237,302.44005 C 98.955979,302.53165 99.180096,302.68557 99.344598,302.90175 C 99.508734,303.11536 99.61473,303.39236 99.66257,303.73277 C 99.71188,304.08349 99.68954,304.40219 99.59576,304.68887 C 99.50443,304.97518 99.354094,305.2054 99.144512,305.37948 C 98.93493,305.55357 98.687015,305.66074 98.400767,305.70097 C 97.952051,305.76407 97.558955,305.66147 97.221478,305.39335 C 96.886216,305.12226 96.681619,304.72368 96.607684,304.1976 C 96.559844,303.8572 96.585764,303.55509 96.685424,303.29124 C 96.785094,303.02741 96.950935,302.81345 97.18296,302.64934 M 97.21092,301.52909 C 97.24209,301.75086 97.317583,301.91382 97.437412,302.01795 C 97.559814,302.12171 97.700958,302.16237 97.86085,302.13988 C 98.023317,302.11708 98.149076,302.03888 98.238139,301.90539 C 98.327199,301.77191 98.356146,301.59427 98.324979,301.37249 C 98.294899,301.15845 98.21865,300.99955 98.096252,300.89578 C 97.976422,300.79168 97.837858,300.75064 97.680551,300.77275 C 97.515507,300.79595 97.388634,300.87558 97.299937,301.01165 C 97.210877,301.14514 97.181204,301.31761 97.210927,301.52907 M 97.471105,303.96973 C 97.513875,304.27403 97.61132,304.49965 97.763461,304.64657 C 97.915594,304.7935 98.081922,304.85428 98.262441,304.82891 C 98.442954,304.80351 98.582768,304.7037 98.681862,304.52933 C 98.78353,304.35463 98.812262,304.10996 98.768052,303.79536 C 98.729992,303.52457 98.636727,303.31941 98.488262,303.17987 C 98.34237,303.03995 98.177875,302.98286 97.994781,303.0086 C 97.814264,303.034 97.672053,303.13545 97.568167,303.31312 C 97.466488,303.48783 97.434133,303.7067 97.471107,303.96973"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 97.182972,302.64934 c -0.235143,-0.0827 -0.421936,-0.21419 -0.560371,-0.39459 c -0.138433,-0.1804 -0.227039,-0.40857 -0.26582,-0.6845 c -0.0627,-0.44615 0.01383,-0.81849 0.229583,-1.11705 c 0.215397,-0.30114 0.537134,-0.48178 0.965221,-0.54195 c 0.45387,-0.0638 0.819365,0.0295 1.096486,0.27981 c 0.276754,0.24775 0.443585,0.57406 0.500488,0.97894 c 0.03878,0.27592 0.01446,0.52392 -0.07296,0.74395 c -0.0852,0.21709 -0.219654,0.39246 -0.403362,0.5261 c 0.283742,0.0916 0.507859,0.24552 0.672361,0.4617 c 0.164136,0.21361 0.270132,0.49061 0.317972,0.83102 c 0.04931,0.35072 0.02697,0.66942 -0.06681,0.9561 c -0.09133,0.28631 -0.241666,0.51653 -0.451248,0.69061 c -0.209582,0.17409 -0.457497,0.28126 -0.743745,0.32149 c -0.448716,0.0631 -0.841812,-0.0395 -1.179289,-0.30762 c -0.335262,-0.27109 -0.539859,-0.66967 -0.613794,-1.19575 c -0.04784,-0.3404 -0.02192,-0.64251 0.07774,-0.90636 c 0.09967,-0.26383 0.265511,-0.47779 0.497536,-0.6419 m 0.02796,-1.12025 c 0.03117,0.22177 0.106663,0.38473 0.226492,0.48886 c 0.122402,0.10376 0.263546,0.14442 0.423438,0.12193 c 0.162467,-0.0228 0.288226,-0.101 0.377289,-0.23449 c 0.08906,-0.13348 0.118007,-0.31112 0.08684,-0.5329 c -0.03008,-0.21404 -0.106329,-0.37294 -0.228727,-0.47671 c -0.11983,-0.1041 -0.258394,-0.14514 -0.415701,-0.12303 c -0.165044,0.0232 -0.291917,0.10283 -0.380614,0.2389 c -0.08906,0.13349 -0.118733,0.30596 -0.08901,0.51742 m 0.260178,2.44066 c 0.04277,0.3043 0.140215,0.52992 0.292356,0.67684 c 0.152133,0.14693 0.318461,0.20771 0.49898,0.18234 c 0.180513,-0.0254 0.320327,-0.12521 0.419421,-0.29958 c 0.101668,-0.1747 0.1304,-0.41937 0.08619,-0.73397 c -0.03806,-0.27079 -0.131325,-0.47595 -0.27979,-0.61549 c -0.145892,-0.13992 -0.310387,-0.19701 -0.493481,-0.17127 c -0.180517,0.0254 -0.322728,0.12685 -0.426614,0.30452 c -0.101679,0.17471 -0.134034,0.39358 -0.09706,0.65661"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5143"
inkscape:connector-curvature="0" />
<path
d="M 103.11145,303.7907 L 103.97792,303.64318 C 104.03452,304.06596 104.21094,304.27217 104.50763,304.26181 C 104.70805,304.25481 104.86833,304.14368 104.98849,303.9284 C 105.10853,303.71054 105.17547,303.27695 105.18936,302.62764 C 105.08296,302.79031 104.96095,302.91444 104.82322,303 C 104.6855,303.0856 104.53074,303.13141 104.35898,303.1374 C 104.00243,303.1499 103.68026,302.9905 103.39246,302.65911 C 103.10727,302.32772 102.9548,301.87964 102.93509,301.31488 C 102.91399,300.7111 103.04198,300.23108 103.31866,299.87484 C 103.59546,299.51863 103.94598,299.3331 104.37019,299.31827 C 104.84385,299.30167 105.24206,299.51189 105.56481,299.94883 C 105.88744,300.38316 106.06681,301.11693 106.10288,302.15016 C 106.13958,303.20161 106.00598,303.96323 105.70188,304.43505 C 105.39784,304.90688 104.99077,305.15173 104.48067,305.16953 C 104.12673,305.18193 103.82991,305.07603 103.59018,304.85276 C 103.35297,304.62653 103.19339,304.27252 103.11142,303.7907 M 105.06553,301.32256 C 105.05303,300.96342 104.97563,300.68991 104.83362,300.50203 C 104.69155,300.31416 104.53464,300.22322 104.36288,300.22922 C 104.19633,300.23522 104.05984,300.31922 103.95349,300.48195 C 103.84965,300.64453 103.80427,300.91058 103.81716,301.28017 C 103.83016,301.64976 103.89936,301.91832 104.02511,302.08588 C 104.15342,302.25338 104.30609,302.33405 104.48305,302.32788 C 104.65222,302.32188 104.7938,302.23498 104.90781,302.06679 C 105.02442,301.89859 105.07695,301.65049 105.06556,301.32255"
style="font-size:8px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="m 103.11145,303.7907 l 0.86647,-0.14752 c 0.0566,0.42278 0.23302,0.62899 0.52971,0.61863 c 0.20042,-0.007 0.3607,-0.11813 0.48086,-0.33341 c 0.12004,-0.21786 0.18698,-0.65145 0.20087,-1.30076 c -0.1064,0.16267 -0.22841,0.2868 -0.36614,0.37236 c -0.13772,0.0856 -0.29248,0.13141 -0.46424,0.1374 c -0.35655,0.0125 -0.67872,-0.1469 -0.96652,-0.47829 c -0.28519,-0.33139 -0.43766,-0.77947 -0.45737,-1.34423 c -0.0211,-0.60378 0.10689,-1.0838 0.38357,-1.44004 c 0.2768,-0.35621 0.62732,-0.54174 1.05153,-0.55657 c 0.47366,-0.0166 0.87187,0.19362 1.19462,0.63056 c 0.32263,0.43433 0.502,1.1681 0.53807,2.20133 c 0.0367,1.05145 -0.0969,1.81307 -0.401,2.28489 c -0.30404,0.47183 -0.71111,0.71668 -1.22121,0.73448 c -0.35394,0.0124 -0.65076,-0.0935 -0.89049,-0.31677 c -0.23721,-0.22623 -0.39679,-0.58024 -0.47876,-1.06206 m 1.95411,-2.46814 c -0.0125,-0.35914 -0.0899,-0.63265 -0.23191,-0.82053 c -0.14207,-0.18787 -0.29898,-0.27881 -0.47074,-0.27281 c -0.16655,0.006 -0.30304,0.09 -0.40939,0.25273 c -0.10384,0.16258 -0.14922,0.42863 -0.13633,0.79822 c 0.013,0.36959 0.0822,0.63815 0.20795,0.80571 c 0.12831,0.1675 0.28098,0.24817 0.45794,0.242 c 0.16917,-0.006 0.31075,-0.0929 0.42476,-0.26109 c 0.11661,-0.1682 0.16914,-0.4163 0.15775,-0.74424"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:8px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="path5145"
inkscape:connector-curvature="0" />
<g
@ -2958,18 +2994,18 @@
<path
inkscape:connector-curvature="0"
id="path5240"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 84.037888,342.20654 L 84.037888,341.09033 L 83.115036,341.09033 L 83.115036,340.31982 L 84.037888,340.31982 L 84.037888,339.20361 L 84.653122,339.20361 L 84.653122,340.31982 L 85.578903,340.31982 L 85.578903,341.09033 L 84.653122,341.09033 L 84.653122,342.20654 L 84.037888,342.20654" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 84.037888,342.20654 l 0,-1.11621 l -0.922852,0 l 0,-0.77051 l 0.922852,0 l 0,-1.11621 l 0.615234,0 l 0,1.11621 l 0.925781,0 l 0,0.77051 l -0.925781,0 l 0,1.11621 l -0.615234,0" />
<path
inkscape:connector-curvature="0"
id="path5242"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 87.720505,342.82471 L 87.046677,342.82471 L 87.046677,339.72217 C 86.794723,340.00537 86.503707,340.21338 86.17363,340.34619 L 86.17363,339.59912 C 86.361129,339.52292 86.555465,339.38721 86.756638,339.19189 C 86.957808,338.99463 87.097457,338.76807 87.175583,338.51221 L 87.720505,338.51221 L 87.720505,342.82471" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 87.720505,342.82471 l -0.673828,0 l 0,-3.10254 c -0.251954,0.2832 -0.54297,0.49121 -0.873047,0.62402 l 0,-0.74707 c 0.187499,-0.0762 0.381835,-0.21191 0.583008,-0.40723 c 0.20117,-0.19726 0.340819,-0.42382 0.418945,-0.67968 l 0.544922,0 l 0,4.3125" />
<path
inkscape:connector-curvature="0"
id="path5244"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 89.876755,338.51221 C 90.21855,338.51221 90.494917,338.6753 90.705856,339.00146 C 90.916791,339.32569 91.02226,339.89405 91.022263,340.70654 C 91.02226,341.51709 90.916791,342.08545 90.705856,342.41162 C 90.494917,342.73584 90.219527,342.89795 89.879684,342.89795 C 89.537887,342.89795 89.26152,342.73682 89.050583,342.41455 C 88.839645,342.09229 88.734176,341.52002 88.734177,340.69775 C 88.734176,339.89112 88.839645,339.32569 89.050583,339.00146 C 89.26152,338.6753 89.53691,338.51221 89.876755,338.51221 M 89.876755,339.19482 C 89.743941,339.19483 89.637496,339.28272 89.557419,339.4585 C 89.479289,339.63428 89.44023,340.0503 89.440231,340.70654 C 89.44023,341.36279 89.479291,341.77881 89.557419,341.95459 C 89.637499,342.12842 89.743941,342.21533 89.876755,342.21533 C 90.011519,342.21533 90.117964,342.12743 90.196091,341.95166 C 90.274211,341.77588 90.313276,341.36084 90.313278,340.70654 C 90.313276,340.0503 90.274218,339.63428 90.196091,339.4585 C 90.117961,339.28272 90.011519,339.19483 89.876755,339.19482" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 89.876755,338.51221 c 0.341795,0 0.618162,0.16309 0.829101,0.48925 c 0.210935,0.32423 0.316404,0.89259 0.316407,1.70508 c -3e-6,0.81055 -0.105472,1.37891 -0.316407,1.70508 c -0.210939,0.32422 -0.486329,0.48633 -0.826172,0.48633 c -0.341797,0 -0.618164,-0.16113 -0.829101,-0.4834 c -0.210938,-0.32226 -0.316407,-0.89453 -0.316406,-1.7168 c -10e-7,-0.80663 0.105468,-1.37206 0.316406,-1.69629 c 0.210937,-0.32616 0.486327,-0.48925 0.826172,-0.48925 m 0,0.68261 c -0.132814,1e-5 -0.239259,0.0879 -0.319336,0.26368 c -0.07813,0.17578 -0.117189,0.5918 -0.117188,1.24804 c -10e-7,0.65625 0.03906,1.07227 0.117188,1.24805 c 0.08008,0.17383 0.186522,0.26074 0.319336,0.26074 c 0.134764,0 0.241209,-0.0879 0.319336,-0.26367 c 0.07812,-0.17578 0.117185,-0.59082 0.117187,-1.24512 c -2e-6,-0.65624 -0.03906,-1.07226 -0.117187,-1.24804 c -0.07813,-0.17578 -0.184572,-0.26367 -0.319336,-0.26368" />
</g>
<g
transform="matrix(0.95105651,0.309017,-0.309017,0.95105651,138.48632,-48.310565)"
@ -2977,18 +3013,18 @@
<path
inkscape:connector-curvature="0"
id="path5246"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 93.76445,342.20654 L 93.76445,341.09033 L 92.841599,341.09033 L 92.841599,340.31982 L 93.76445,340.31982 L 93.76445,339.20361 L 94.379684,339.20361 L 94.379684,340.31982 L 95.305466,340.31982 L 95.305466,341.09033 L 94.379684,341.09033 L 94.379684,342.20654 L 93.76445,342.20654" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 93.76445,342.20654 l 0,-1.11621 l -0.922851,0 l 0,-0.77051 l 0.922851,0 l 0,-1.11621 l 0.615234,0 l 0,1.11621 l 0.925782,0 l 0,0.77051 l -0.925782,0 l 0,1.11621 l -0.615234,0" />
<path
inkscape:connector-curvature="0"
id="path5248"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 98.000778,342.06006 L 98.000778,342.82471 L 95.633591,342.82471 C 95.658981,342.53564 95.73613,342.26123 95.865036,342.00146 C 95.995895,341.73975 96.248824,341.39697 96.623825,340.97314 C 96.920699,340.63526 97.103316,340.40674 97.171677,340.2876 C 97.273237,340.11377 97.324019,339.93897 97.32402,339.76318 C 97.324019,339.57569 97.28203,339.43409 97.198044,339.33838 C 97.114054,339.24268 97.003706,339.19483 96.866989,339.19482 C 96.56816,339.19483 96.407027,339.41846 96.383591,339.86572 L 95.712692,339.78372 C 95.753712,339.34622 95.874801,339.02494 96.075974,338.81985 C 96.279098,338.61478 96.548629,338.51224 96.884567,338.51224 C 97.253706,338.51224 97.532026,338.63236 97.719528,338.87259 C 97.907026,339.11283 98.000776,339.38822 98.000778,339.69876 C 98.000776,339.87454 97.976358,340.04544 97.927538,340.21146 C 97.880658,340.37552 97.807419,340.54154 97.707811,340.7095 C 97.608201,340.87552 97.442185,341.08841 97.209765,341.34817 C 96.992966,341.59232 96.855271,341.75345 96.796679,341.83157 C 96.740039,341.90967 96.694138,341.98587 96.658983,342.06009 L 98.00078,342.06009" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 98.000778,342.06006 l 0,0.76465 l -2.367187,0 c 0.02539,-0.28907 0.102539,-0.56348 0.231445,-0.82325 c 0.130859,-0.26171 0.383788,-0.60449 0.758789,-1.02832 c 0.296874,-0.33788 0.479491,-0.5664 0.547852,-0.68554 c 0.10156,-0.17383 0.152342,-0.34863 0.152343,-0.52442 c -10e-7,-0.18749 -0.04199,-0.32909 -0.125976,-0.4248 c -0.08399,-0.0957 -0.194338,-0.14355 -0.331055,-0.14356 c -0.298829,1e-5 -0.459962,0.22364 -0.483398,0.6709 l -0.670899,-0.082 c 0.04102,-0.4375 0.162109,-0.75878 0.363282,-0.96387 c 0.203124,-0.20507 0.472655,-0.30761 0.808593,-0.30761 c 0.369139,0 0.647459,0.12012 0.834961,0.36035 c 0.187498,0.24024 0.281248,0.51563 0.28125,0.82617 c -2e-6,0.17578 -0.02442,0.34668 -0.07324,0.5127 c -0.04688,0.16406 -0.120119,0.33008 -0.219727,0.49804 c -0.09961,0.16602 -0.265626,0.37891 -0.498046,0.63867 c -0.216799,0.24415 -0.354494,0.40528 -0.413086,0.4834 c -0.05664,0.0781 -0.102541,0.1543 -0.137696,0.22852 l 1.341797,0" />
<path
inkscape:connector-curvature="0"
id="path5251"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 99.603317,338.51221 C 99.945112,338.51221 100.22148,338.6753 100.43242,339.00146 C 100.64335,339.32569 100.74882,339.89405 100.74883,340.70654 C 100.74882,341.51709 100.64335,342.08545 100.43242,342.41162 C 100.22148,342.73584 99.946089,342.89795 99.606247,342.89795 C 99.264449,342.89795 98.988082,342.73682 98.777145,342.41455 C 98.566208,342.09229 98.460739,341.52002 98.460739,340.69775 C 98.460739,339.89112 98.566208,339.32569 98.777145,339.00146 C 98.988082,338.6753 99.263473,338.51221 99.603317,338.51221 M 99.603317,339.19482 C 99.470504,339.19483 99.364058,339.28272 99.283981,339.4585 C 99.205851,339.63428 99.166793,340.0503 99.166794,340.70654 C 99.166793,341.36279 99.205854,341.77881 99.283981,341.95459 C 99.364061,342.12842 99.470504,342.21533 99.603317,342.21533 C 99.738081,342.21533 99.844527,342.12743 99.922653,341.95166 C 100.00078,341.77588 100.03984,341.36084 100.03984,340.70654 C 100.03984,340.0503 100.00074,339.63428 99.922653,339.4585 C 99.844523,339.28272 99.738081,339.19483 99.603317,339.19482" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 99.603317,338.51221 c 0.341795,0 0.618163,0.16309 0.829103,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.31641,1.70508 c -1e-5,0.81055 -0.10548,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.486331,0.48633 -0.826173,0.48633 c -0.341798,0 -0.618165,-0.16113 -0.829102,-0.4834 c -0.210937,-0.32226 -0.316406,-0.89453 -0.316406,-1.7168 c 0,-0.80663 0.105469,-1.37206 0.316406,-1.69629 c 0.210937,-0.32616 0.486328,-0.48925 0.826172,-0.48925 m 0,0.68261 c -0.132813,1e-5 -0.239259,0.0879 -0.319336,0.26368 c -0.07813,0.17578 -0.117188,0.5918 -0.117187,1.24804 c -10e-7,0.65625 0.03906,1.07227 0.117187,1.24805 c 0.08008,0.17383 0.186523,0.26074 0.319336,0.26074 c 0.134764,0 0.24121,-0.0879 0.319336,-0.26367 c 0.07813,-0.17578 0.117187,-0.59082 0.117187,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.117187,-1.24804 c -0.07813,-0.17578 -0.184572,-0.26367 -0.319336,-0.26368" />
</g>
<g
transform="matrix(0.89879403,0.43837115,-0.43837115,0.89879403,188.46813,-43.413613)"
@ -2996,18 +3032,18 @@
<path
inkscape:connector-curvature="0"
id="path5253"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 103.49101,342.20654 L 103.49101,341.09033 L 102.56816,341.09033 L 102.56816,340.31982 L 103.49101,340.31982 L 103.49101,339.20361 L 104.10625,339.20361 L 104.10625,340.31982 L 105.03203,340.31982 L 105.03203,341.09033 L 104.10625,341.09033 L 104.10625,342.20654 L 103.49101,342.20654" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 103.49101,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61524,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61524,0" />
<path
inkscape:connector-curvature="0"
id="path5255"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 105.42168,341.68506 L 106.075,341.58836 C 106.0926,341.79148 106.1482,341.94676 106.24199,342.05418 C 106.33569,342.1616 106.44609,342.21531 106.57304,342.21531 C 106.71171,342.21531 106.8289,342.15181 106.92461,342.02488 C 107.02031,341.89793 107.06816,341.72215 107.06816,341.49754 C 107.06816,341.28856 107.02226,341.12449 106.93047,341.00535 C 106.83867,340.88621 106.72734,340.82664 106.59648,340.82664 C 106.51058,340.82664 106.408,340.84714 106.28886,340.88814 L 106.36216,340.21725 C 106.53598,340.22125 106.67368,340.17425 106.77524,340.07662 C 106.87484,339.97902 106.92465,339.84127 106.92466,339.66353 C 106.92465,339.5151 106.88856,339.39889 106.81626,339.3149 C 106.74396,339.2309 106.65122,339.18893 106.53794,339.18892 C 106.42466,339.18893 106.32602,339.23772 106.24204,339.33541 C 106.16004,339.43111 106.11118,339.57369 106.09555,339.76314 L 105.47153,339.63424 C 105.53593,339.24166 105.66196,338.95651 105.84946,338.77877 C 106.03696,338.60104 106.27329,338.51217 106.55845,338.51217 C 106.87876,338.51217 107.13266,338.62643 107.32016,338.85494 C 107.50961,339.08346 107.60434,339.33639 107.60434,339.61373 C 107.60434,339.80123 107.56134,339.97018 107.47544,340.12057 C 107.39144,340.27096 107.2645,340.40279 107.09458,340.51607 C 107.29184,340.56877 107.452,340.68502 107.57505,340.86471 C 107.70004,341.0444 107.76254,341.269 107.76255,341.53853 C 107.76254,341.93111 107.64536,342.25631 107.41098,342.51412 C 107.17856,342.76998 106.90122,342.89791 106.57895,342.89791 C 106.27036,342.89791 106.00864,342.78951 105.7938,342.57271 C 105.58091,342.35592 105.45688,342.06002 105.42173,341.68502" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 105.42168,341.68506 l 0.65332,-0.0967 c 0.0176,0.20312 0.0732,0.3584 0.16699,0.46582 c 0.0937,0.10742 0.2041,0.16113 0.33105,0.16113 c 0.13867,0 0.25586,-0.0635 0.35157,-0.19043 c 0.0957,-0.12695 0.14355,-0.30273 0.14355,-0.52734 c 0,-0.20898 -0.0459,-0.37305 -0.13769,-0.49219 c -0.0918,-0.11914 -0.20313,-0.17871 -0.33399,-0.17871 c -0.0859,0 -0.18848,0.0205 -0.30762,0.0615 l 0.0733,-0.67089 c 0.17382,0.004 0.31152,-0.043 0.41308,-0.14063 c 0.0996,-0.0976 0.14941,-0.23535 0.14942,-0.41309 c -1e-5,-0.14843 -0.0361,-0.26464 -0.1084,-0.34863 c -0.0723,-0.084 -0.16504,-0.12597 -0.27832,-0.12598 c -0.11328,1e-5 -0.21192,0.0488 -0.2959,0.14649 c -0.082,0.0957 -0.13086,0.23828 -0.14649,0.42773 l -0.62402,-0.1289 c 0.0644,-0.39258 0.19043,-0.67773 0.37793,-0.85547 c 0.1875,-0.17773 0.42383,-0.2666 0.70899,-0.2666 c 0.32031,0 0.57421,0.11426 0.76171,0.34277 c 0.18945,0.22852 0.28418,0.48145 0.28418,0.75879 c 0,0.1875 -0.043,0.35645 -0.1289,0.50684 c -0.084,0.15039 -0.21094,0.28222 -0.38086,0.3955 c 0.19726,0.0527 0.35742,0.16895 0.48047,0.34864 c 0.12499,0.17969 0.18749,0.40429 0.1875,0.67382 c -1e-5,0.39258 -0.11719,0.71778 -0.35157,0.97559 c -0.23242,0.25586 -0.50976,0.38379 -0.83203,0.38379 c -0.30859,0 -0.57031,-0.1084 -0.78515,-0.3252 c -0.21289,-0.21679 -0.33692,-0.51269 -0.37207,-0.88769" />
<path
inkscape:connector-curvature="0"
id="path5257"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 109.32988,338.51221 C 109.67167,338.51221 109.94804,338.6753 110.15898,339.00146 C 110.36992,339.32569 110.47539,339.89405 110.47539,340.70654 C 110.47539,341.51709 110.36992,342.08545 110.15898,342.41162 C 109.94804,342.73584 109.67265,342.89795 109.33281,342.89795 C 108.99101,342.89795 108.71464,342.73682 108.50371,342.41455 C 108.29277,342.09229 108.1873,341.52002 108.1873,340.69775 C 108.1873,339.89112 108.29277,339.32569 108.50371,339.00146 C 108.71464,338.6753 108.99004,338.51221 109.32988,338.51221 M 109.32988,339.19482 C 109.19707,339.19483 109.09062,339.28272 109.01054,339.4585 C 108.93244,339.63428 108.89336,340.0503 108.89336,340.70654 C 108.89336,341.36279 108.93246,341.77881 109.01054,341.95459 C 109.09064,342.12842 109.19707,342.21533 109.32988,342.21533 C 109.46464,342.21533 109.57109,342.12743 109.64922,341.95166 C 109.72732,341.77588 109.7664,341.36084 109.7664,340.70654 C 109.7664,340.0503 109.7273,339.63428 109.64922,339.4585 C 109.57112,339.28272 109.46464,339.19483 109.32988,339.19482" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 109.32988,338.51221 c 0.34179,0 0.61816,0.16309 0.8291,0.48925 c 0.21094,0.32423 0.31641,0.89259 0.31641,1.70508 c 0,0.81055 -0.10547,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61817,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21093,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23926,0.0879 -0.31934,0.26368 c -0.0781,0.17578 -0.11718,0.5918 -0.11718,1.24804 c 0,0.65625 0.0391,1.07227 0.11718,1.24805 c 0.0801,0.17383 0.18653,0.26074 0.31934,0.26074 c 0.13476,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11718,-0.59082 0.11718,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11718,-1.24804 c -0.0781,-0.17578 -0.18458,-0.26367 -0.31934,-0.26368" />
</g>
<g
transform="matrix(0.80901698,0.58778526,-0.58778526,0.80901698,249.43971,-29.011822)"
@ -3015,18 +3051,18 @@
<path
inkscape:connector-curvature="0"
id="path5259"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 113.21758,342.20654 L 113.21758,341.09033 L 112.29472,341.09033 L 112.29472,340.31982 L 113.21758,340.31982 L 113.21758,339.20361 L 113.83281,339.20361 L 113.83281,340.31982 L 114.75859,340.31982 L 114.75859,341.09033 L 113.83281,341.09033 L 113.83281,342.20654 L 113.21758,342.20654" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 113.21758,342.20654 l 0,-1.11621 l -0.92286,0 l 0,-0.77051 l 0.92286,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61523,0" />
<path
inkscape:connector-curvature="0"
id="path5261"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 116.4959,342.82471 L 116.4959,341.96045 L 115.05449,341.96045 L 115.05449,341.23975 L 116.58086,338.51221 L 117.14922,338.51221 L 117.14922,341.23682 L 117.58574,341.23682 L 117.58574,341.96045 L 117.14922,341.96045 L 117.14922,342.82471 L 116.4959,342.82471 M 116.4959,341.23682 L 116.4959,339.76904 L 115.6873,341.23682 L 116.4959,341.23682" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 116.4959,342.82471 l 0,-0.86426 l -1.44141,0 l 0,-0.7207 l 1.52637,-2.72754 l 0.56836,0 l 0,2.72461 l 0.43652,0 l 0,0.72363 l -0.43652,0 l 0,0.86426 l -0.65332,0 m 0,-1.58789 l 0,-1.46778 l -0.8086,1.46778 l 0.8086,0" />
<path
inkscape:connector-curvature="0"
id="path5263"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 119.05644,338.51221 C 119.39824,338.51221 119.6746,338.6753 119.88554,339.00146 C 120.09648,339.32569 120.20195,339.89405 120.20195,340.70654 C 120.20195,341.51709 120.09648,342.08545 119.88554,342.41162 C 119.6746,342.73584 119.39921,342.89795 119.05937,342.89795 C 118.71757,342.89795 118.44121,342.73682 118.23027,342.41455 C 118.01933,342.09229 117.91386,341.52002 117.91386,340.69775 C 117.91386,339.89112 118.01933,339.32569 118.23027,339.00146 C 118.44121,338.6753 118.7166,338.51221 119.05644,338.51221 M 119.05644,339.19482 C 118.92363,339.19483 118.81718,339.28272 118.73711,339.4585 C 118.65901,339.63428 118.61992,340.0503 118.61992,340.70654 C 118.61992,341.36279 118.65902,341.77881 118.73711,341.95459 C 118.81721,342.12842 118.92363,342.21533 119.05644,342.21533 C 119.19121,342.21533 119.29765,342.12743 119.37578,341.95166 C 119.45388,341.77588 119.49296,341.36084 119.49297,340.70654 C 119.49296,340.0503 119.45387,339.63428 119.37578,339.4585 C 119.29768,339.28272 119.19121,339.19483 119.05644,339.19482" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 119.05644,338.51221 c 0.3418,0 0.61816,0.16309 0.8291,0.48925 c 0.21094,0.32423 0.31641,0.89259 0.31641,1.70508 c 0,0.81055 -0.10547,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61816,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21094,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23926,0.0879 -0.31933,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31933,0.26074 c 0.13477,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11718,-0.59082 0.11719,-1.24512 c -1e-5,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31934,-0.26368" />
</g>
<g
transform="matrix(0.69465835,0.7193398,-0.7193398,0.69465835,308.98322,-5.1409073)"
@ -3034,18 +3070,18 @@
<path
inkscape:connector-curvature="0"
id="path5265"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 122.94414,342.20654 L 122.94414,341.09033 L 122.02129,341.09033 L 122.02129,340.31982 L 122.94414,340.31982 L 122.94414,339.20361 L 123.55937,339.20361 L 123.55937,340.31982 L 124.48515,340.31982 L 124.48515,341.09033 L 123.55937,341.09033 L 123.55937,342.20654 L 122.94414,342.20654" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 122.94414,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92578,0 l 0,0.77051 l -0.92578,0 l 0,1.11621 l -0.61523,0" />
<path
inkscape:connector-curvature="0"
id="path5267"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 124.90996,341.72021 L 125.58379,341.63521 C 125.60139,341.82271 125.65899,341.97018 125.75664,342.0776 C 125.85434,342.18502 125.96171,342.23873 126.0789,342.23873 C 126.21757,342.23873 126.33671,342.17033 126.43633,342.03365 C 126.53593,341.89498 126.58574,341.68307 126.58574,341.39791 C 126.58574,341.12838 126.53594,340.92916 126.43633,340.80025 C 126.33863,340.67135 126.21367,340.6069 126.06133,340.60689 C 125.86796,340.6069 125.69414,340.71139 125.53984,340.92037 L 124.99199,340.82367 L 125.33769,338.58832 L 127.12187,338.58832 L 127.12187,339.35883 L 125.85039,339.35883 L 125.74199,340.08832 C 125.89433,339.99652 126.04863,339.95063 126.20488,339.95062 C 126.48222,339.95063 126.71757,340.06 126.91093,340.27875 C 127.15507,340.55805 127.27714,340.92621 127.27715,341.38324 C 127.27714,341.76019 127.17265,342.10687 126.96367,342.42328 C 126.75664,342.73969 126.45976,342.89789 126.07304,342.89789 C 125.76054,342.89789 125.49882,342.79633 125.28789,342.5932 C 125.0789,342.38812 124.95293,342.09711 124.90996,341.72015" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 124.90996,341.72021 l 0.67383,-0.085 c 0.0176,0.1875 0.0752,0.33497 0.17285,0.44239 c 0.0977,0.10742 0.20507,0.16113 0.32226,0.16113 c 0.13867,0 0.25781,-0.0684 0.35743,-0.20508 c 0.0996,-0.13867 0.14941,-0.35058 0.14941,-0.63574 c 0,-0.26953 -0.0498,-0.46875 -0.14941,-0.59766 c -0.0977,-0.1289 -0.22266,-0.19335 -0.375,-0.19336 c -0.19337,10e-6 -0.36719,0.1045 -0.52149,0.31348 l -0.54785,-0.0967 l 0.3457,-2.23535 l 1.78418,0 l 0,0.77051 l -1.27148,0 l -0.1084,0.72949 c 0.15234,-0.0918 0.30664,-0.13769 0.46289,-0.1377 c 0.27734,10e-6 0.51269,0.10938 0.70605,0.32813 c 0.24414,0.2793 0.36621,0.64746 0.36622,1.10449 c -1e-5,0.37695 -0.1045,0.72363 -0.31348,1.04004 c -0.20703,0.31641 -0.50391,0.47461 -0.89063,0.47461 c -0.3125,0 -0.57422,-0.10156 -0.78515,-0.30469 c -0.20899,-0.20508 -0.33496,-0.49609 -0.37793,-0.87305" />
<path
inkscape:connector-curvature="0"
id="path5269"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 128.783,338.51221 C 129.1248,338.51221 129.40117,338.6753 129.61211,339.00146 C 129.82304,339.32569 129.92851,339.89405 129.92851,340.70654 C 129.92851,341.51709 129.82304,342.08545 129.61211,342.41162 C 129.40117,342.73584 129.12578,342.89795 128.78593,342.89795 C 128.44414,342.89795 128.16777,342.73682 127.95683,342.41455 C 127.7459,342.09229 127.64043,341.52002 127.64043,340.69775 C 127.64043,339.89112 127.7459,339.32569 127.95683,339.00146 C 128.16777,338.6753 128.44316,338.51221 128.783,338.51221 M 128.783,339.19482 C 128.65019,339.19483 128.54375,339.28272 128.46367,339.4585 C 128.38557,339.63428 128.34648,340.0503 128.34648,340.70654 C 128.34648,341.36279 128.38558,341.77881 128.46367,341.95459 C 128.54377,342.12842 128.65019,342.21533 128.783,342.21533 C 128.91777,342.21533 129.02421,342.12743 129.10234,341.95166 C 129.18044,341.77588 129.21953,341.36084 129.21953,340.70654 C 129.21953,340.0503 129.18043,339.63428 129.10234,339.4585 C 129.02424,339.28272 128.91777,339.19483 128.783,339.19482" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 128.783,338.51221 c 0.3418,0 0.61817,0.16309 0.82911,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.3164,1.70508 c 0,0.81055 -0.10547,1.37891 -0.3164,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82618,0.48633 c -0.34179,0 -0.61816,-0.16113 -0.8291,-0.4834 c -0.21093,-0.32226 -0.3164,-0.89453 -0.3164,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.3164,-1.69629 c 0.21094,-0.32616 0.48633,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13281,1e-5 -0.23925,0.0879 -0.31933,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31933,0.26074 c 0.13477,0 0.24121,-0.0879 0.31934,-0.26367 c 0.0781,-0.17578 0.11719,-0.59082 0.11719,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31934,-0.26368" />
</g>
<g
transform="matrix(0.58778524,0.80901699,-0.80901699,0.58778524,353.69519,20.372443)"
@ -3053,63 +3089,91 @@
<path
inkscape:connector-curvature="0"
id="path5271"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 132.6707,342.20654 L 132.6707,341.09033 L 131.74785,341.09033 L 131.74785,340.31982 L 132.6707,340.31982 L 132.6707,339.20361 L 133.28593,339.20361 L 133.28593,340.31982 L 134.21172,340.31982 L 134.21172,341.09033 L 133.28593,341.09033 L 133.28593,342.20654 L 132.6707,342.20654" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 132.6707,342.20654 l 0,-1.11621 l -0.92285,0 l 0,-0.77051 l 0.92285,0 l 0,-1.11621 l 0.61523,0 l 0,1.11621 l 0.92579,0 l 0,0.77051 l -0.92579,0 l 0,1.11621 l -0.61523,0" />
<path
inkscape:connector-curvature="0"
id="path5273"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 136.91289,339.58154 L 136.25957,339.66944 C 136.22837,339.34913 136.10039,339.18898 135.87578,339.18897 C 135.72929,339.18898 135.60722,339.26907 135.50957,339.42921 C 135.41387,339.58937 135.35332,339.91261 135.32793,340.39894 C 135.41193,340.27784 135.50566,340.18702 135.60918,340.12647 C 135.71269,340.06597 135.82695,340.03567 135.95195,340.03567 C 136.22734,340.03568 136.46757,340.16458 136.67265,340.42239 C 136.87773,340.67825 136.98027,341.01907 136.98027,341.44485 C 136.98027,341.89798 136.87187,342.25345 136.65508,342.51126 C 136.43828,342.76907 136.16972,342.89798 135.84941,342.89798 C 135.49785,342.89798 135.20586,342.73099 134.97343,342.397 C 134.74297,342.06107 134.62773,341.5054 134.62773,340.73001 C 134.62773,339.9429 134.74785,339.3765 134.98808,339.03079 C 135.22832,338.68509 135.53691,338.51224 135.91386,338.51224 C 136.17363,338.51224 136.39238,338.60114 136.57011,338.77884 C 136.7498,338.95462 136.86406,339.2222 136.91289,339.58157 M 135.38652,341.37747 C 135.38652,341.64896 135.43632,341.85696 135.53593,342.00149 C 135.6375,342.14407 135.75273,342.21536 135.88164,342.21536 C 136.00664,342.21536 136.11015,342.15576 136.19218,342.03665 C 136.27618,341.91751 136.31816,341.7222 136.31816,341.45071 C 136.31816,341.16947 136.27326,340.96439 136.1834,340.83548 C 136.0935,340.70658 135.98222,340.64212 135.84941,340.64212 C 135.7205,340.64212 135.61113,340.70362 135.52129,340.82669 C 135.43149,340.94974 135.38652,341.13333 135.38652,341.37747" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 136.91289,339.58154 l -0.65332,0.0879 c -0.0312,-0.32031 -0.15918,-0.48046 -0.38379,-0.48047 c -0.14649,1e-5 -0.26856,0.0801 -0.36621,0.24024 c -0.0957,0.16016 -0.15625,0.4834 -0.18164,0.96973 c 0.084,-0.1211 0.17773,-0.21192 0.28125,-0.27247 c 0.10351,-0.0605 0.21777,-0.0908 0.34277,-0.0908 c 0.27539,1e-5 0.51562,0.12891 0.7207,0.38672 c 0.20508,0.25586 0.30762,0.59668 0.30762,1.02246 c 0,0.45313 -0.1084,0.8086 -0.32519,1.06641 c -0.2168,0.25781 -0.48536,0.38672 -0.80567,0.38672 c -0.35156,0 -0.64355,-0.16699 -0.87598,-0.50098 c -0.23046,-0.33593 -0.3457,-0.8916 -0.3457,-1.66699 c 0,-0.78711 0.12012,-1.35351 0.36035,-1.69922 c 0.24024,-0.3457 0.54883,-0.51855 0.92578,-0.51855 c 0.25977,0 0.47852,0.0889 0.65625,0.2666 c 0.17969,0.17578 0.29395,0.44336 0.34278,0.80273 m -1.52637,1.7959 c 0,0.27149 0.0498,0.47949 0.14941,0.62402 c 0.10157,0.14258 0.2168,0.21387 0.34571,0.21387 c 0.125,0 0.22851,-0.0596 0.31054,-0.17871 c 0.084,-0.11914 0.12598,-0.31445 0.12598,-0.58594 c 0,-0.28124 -0.0449,-0.48632 -0.13476,-0.61523 c -0.0899,-0.1289 -0.20118,-0.19336 -0.33399,-0.19336 c -0.12891,0 -0.23828,0.0615 -0.32812,0.18457 c -0.0898,0.12305 -0.13477,0.30664 -0.13477,0.55078" />
<path
inkscape:connector-curvature="0"
id="path5275"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
d="M 138.50957,338.51221 C 138.85136,338.51221 139.12773,338.6753 139.33867,339.00146 C 139.5496,339.32569 139.65507,339.89405 139.65508,340.70654 C 139.65507,341.51709 139.5496,342.08545 139.33867,342.41162 C 139.12773,342.73584 138.85234,342.89795 138.5125,342.89795 C 138.1707,342.89795 137.89433,342.73682 137.6834,342.41455 C 137.47246,342.09229 137.36699,341.52002 137.36699,340.69775 C 137.36699,339.89112 137.47246,339.32569 137.6834,339.00146 C 137.89433,338.6753 138.16972,338.51221 138.50957,338.51221 M 138.50957,339.19482 C 138.37675,339.19483 138.27031,339.28272 138.19023,339.4585 C 138.11213,339.63428 138.07304,340.0503 138.07304,340.70654 C 138.07304,341.36279 138.11214,341.77881 138.19023,341.95459 C 138.27033,342.12842 138.37675,342.21533 138.50957,342.21533 C 138.64433,342.21533 138.75078,342.12743 138.8289,341.95166 C 138.907,341.77588 138.94609,341.36084 138.94609,340.70654 C 138.94609,340.0503 138.90699,339.63428 138.8289,339.4585 C 138.7508,339.28272 138.64433,339.19483 138.50957,339.19482" />
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;font-size:6px;line-height:125%;font-family:'Arial Narrow';-inkscape-font-specification:'Arial Narrow Bold Condensed';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
d="m 138.50957,338.51221 c 0.34179,0 0.61816,0.16309 0.8291,0.48925 c 0.21093,0.32423 0.3164,0.89259 0.31641,1.70508 c -1e-5,0.81055 -0.10548,1.37891 -0.31641,1.70508 c -0.21094,0.32422 -0.48633,0.48633 -0.82617,0.48633 c -0.3418,0 -0.61817,-0.16113 -0.8291,-0.4834 c -0.21094,-0.32226 -0.31641,-0.89453 -0.31641,-1.7168 c 0,-0.80663 0.10547,-1.37206 0.31641,-1.69629 c 0.21093,-0.32616 0.48632,-0.48925 0.82617,-0.48925 m 0,0.68261 c -0.13282,1e-5 -0.23926,0.0879 -0.31934,0.26368 c -0.0781,0.17578 -0.11719,0.5918 -0.11719,1.24804 c 0,0.65625 0.0391,1.07227 0.11719,1.24805 c 0.0801,0.17383 0.18652,0.26074 0.31934,0.26074 c 0.13476,0 0.24121,-0.0879 0.31933,-0.26367 c 0.0781,-0.17578 0.11719,-0.59082 0.11719,-1.24512 c 0,-0.65624 -0.0391,-1.07226 -0.11719,-1.24804 c -0.0781,-0.17578 -0.18457,-0.26367 -0.31933,-0.26368" />
</g>
<path
sodipodi:open="true"
transform="matrix(0.99426257,0.08698671,-0.08748358,0.99994198,80.732904,11.07574)"
d="M 50.19341,295.51093 A 52.5,52.5 0 0 1 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"
sodipodi:cx="57.5"
id="path4852"
style="fill:none;stroke:#000000;stroke-width:0.74006951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
style="fill:none;stroke:#000000;stroke-width:0.74006951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
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-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:7.40740728px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Bold';letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none"
id="text5574">
<path
d="m 82.406522,337.05356 l 0,-5.25897 l 1.070602,0 l 0,4.36559 l 2.662037,0 l 0,0.89338 l -3.732639,0"
id="path10262"
inkscape:connector-curvature="0" />
<path
d="m 86.873391,337.05356 l 0,-5.30237 l 1.070602,0 l 0,5.30237 l -1.070602,0"
id="path10264"
inkscape:connector-curvature="0" />
<path
d="m 88.971192,337.05356 l 0,-5.30237 l 1.041667,0 l 2.170138,3.54094 l 0,-3.54094 l 0.994647,0 l 0,5.30237 l -1.074218,0 l -2.137587,-3.45776 l 0,3.45776 l -0.994647,0"
id="path10266"
inkscape:connector-curvature="0" />
<path
d="m 94.327819,337.05356 l 0,-5.30237 l 1.070601,0 l 0,2.3546 l 2.162905,-2.3546 l 1.439526,0 l -1.996528,2.06524 l 2.105035,3.23713 l -1.385272,0 l -1.45761,-2.48843 l -0.868056,0.88614 l 0,1.60229 l -1.070601,0"
id="path10268"
inkscape:connector-curvature="0" />
<path
d="m 101.70629,337.05356 l 0,-5.30237 l 1.60229,0 l 0.96209,3.61689 l 0.95124,-3.61689 l 1.60591,0 l 0,5.30237 l -0.99465,0 l 0,-4.1739 l -1.05252,4.1739 l -1.03081,0 l -1.0489,-4.1739 l 0,4.1739 l -0.99465,0"
id="path10270"
inkscape:connector-curvature="0" />
<path
d="m 107.89842,337.05356 l 0,-5.30237 l 3.93157,0 l 0,0.89699 l -2.86097,0 l 0,1.17549 l 2.66204,0 l 0,0.89337 l -2.66204,0 l 0,1.44314 l 2.96224,0 l 0,0.89338 l -4.03284,0"
id="path10272"
inkscape:connector-curvature="0" />
<path
d="m 114.03991,337.05356 l 0,-4.40538 l -1.57335,0 l 0,-0.89699 l 4.21369,0 l 0,0.89699 l -1.56974,0 l 0,4.40538 l -1.0706,0"
id="path10274"
inkscape:connector-curvature="0" />
<path
d="m 117.36023,337.05356 l 0,-5.30237 l 3.93156,0 l 0,0.89699 l -2.86096,0 l 0,1.17549 l 2.66203,0 l 0,0.89337 l -2.66203,0 l 0,1.44314 l 2.96224,0 l 0,0.89338 l -4.03284,0"
id="path10276"
inkscape:connector-curvature="0" />
<path
d="m 122.31176,337.05356 l 0,-5.30237 l 2.25332,0 c 0.56665,0 0.97777,0.0482 1.23337,0.14467 c 0.258,0.094 0.46416,0.26283 0.61849,0.50637 c 0.15431,0.24354 0.23147,0.52204 0.23148,0.8355 c -1e-5,0.39786 -0.11695,0.727 -0.35084,0.98741 c -0.2339,0.25801 -0.58353,0.42077 -1.0489,0.48829 c 0.23148,0.13503 0.42197,0.28332 0.57147,0.44487 c 0.1519,0.16156 0.35566,0.4485 0.61125,0.86083 l 0.64743,1.03443 l -1.28038,0 l -0.77402,-1.15379 c -0.27489,-0.41233 -0.46297,-0.67154 -0.56424,-0.77764 c -0.10127,-0.1085 -0.20857,-0.18204 -0.3219,-0.22063 c -0.11333,-0.041 -0.29297,-0.0615 -0.53892,-0.0615 l -0.21701,0 l 0,2.21354 l -1.0706,0 m 1.0706,-3.0599 l 0.7921,0 c 0.5136,10e-6 0.83429,-0.0217 0.96209,-0.0651 c 0.1278,-0.0434 0.22787,-0.11815 0.30021,-0.22425 c 0.0723,-0.10609 0.1085,-0.23871 0.1085,-0.39786 c 0,-0.17843 -0.0482,-0.3219 -0.14467,-0.43041 c -0.094,-0.11091 -0.22787,-0.18084 -0.40148,-0.20978 c -0.0868,-0.0121 -0.34722,-0.0181 -0.78125,-0.0181 l -0.8355,0 l 0,1.34548"
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,267.78535,10.865462)">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
id="path5524"
d="M 105.81964,316.81754 L 104.07227,310.78472 L 102.81964,316.97379 L 104.06964,341.21598 L 106.81964,365.38006 L 107.06964,341.05975 z"
style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:none;stroke:#000000;stroke-width:0.44444445;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" />
d="m 105.81964,316.81754 l -1.74737,-6.03282 l -1.25263,6.18907 l 1.25,24.24219 l 2.75,24.16408 l 0.25,-24.32031 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#000000;stroke-width:0.44444445;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
<path
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 103.23134,324.95812 L 104.65201,323.35309 L 106.22177,324.61642 L 105.81964,316.81754 L 104.07227,310.78472 L 102.81964,316.97379 z"
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 103.23134,324.95812 l 1.42067,-1.60503 l 1.56976,1.26333 l -0.40213,-7.79888 l -1.74737,-6.03282 l -1.25263,6.18907 z"
id="path5604"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" />
@ -3117,27 +3181,26 @@
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path5528"
d="M 104.08793,312.53421 L 106.82762,365.38988"
style="fill:none;stroke:#000000;stroke-width:0.22222222;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
d="m 104.08793,312.53421 l 2.73969,52.85567"
style="fill:none;stroke:#000000;stroke-width:0.22222222;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<g
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,-232.42552,-108.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"
d="m 64.869231,345.74074 l 88.888879,0 l 0,22.22222 c -33.90002,-4.98213 -63.368747,-4.79441 -88.888879,0 z"
id="rect5536"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<rect
style="fill:none;stroke:#ffffff;stroke-width:1.48148143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.62916667;stroke-dasharray:none;display:inline"
style="display:inline;fill:none;stroke:#ffffff;stroke-width:1.48148143;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.62916667"
id="rect5538"
width="115"
height="50"
@ -3151,19 +3214,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="363.32297"
x="-164.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" />
style="display:inline;fill:#aaaaaa;fill-opacity:1;fill-rule:evenodd;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="oplm-button-0">
id="oplm-button-0"
transform="translate(-172,-5.5678281)">
<rect
ry="3"
rx="3"
@ -3172,13 +3235,13 @@
height="12.071428"
width="34"
id="rect5645"
style="fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
style="display:inline;fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
sodipodi:linespacing="125%"
id="text5715"
y="381.98456"
x="25.336197"
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="381.98456"
x="25.336197"
@ -3186,9 +3249,10 @@
sodipodi:role="line">1</tspan></text>
</g>
<g
id="oplm-button-1">
id="oplm-button-1"
transform="translate(-172,-5.5678281)">
<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"
style="display:inline;fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5649"
width="34"
height="12.071428"
@ -3198,7 +3262,7 @@
ry="3" />
<text
xml:space="preserve"
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
x="63.045673"
y="381.98456"
id="text5719"
@ -3209,9 +3273,10 @@
y="381.98456">2</tspan></text>
</g>
<g
id="oplm-button-2">
id="oplm-button-2"
transform="translate(-172,-5.5678281)">
<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"
style="display:inline;fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5653"
width="34"
height="12.071428"
@ -3224,7 +3289,7 @@
id="text5727"
y="381.92352"
x="100.94557"
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="381.92352"
x="100.94557"
@ -3232,7 +3297,8 @@
id="tspan5729">3</tspan></text>
</g>
<g
id="oplm-button-3">
id="oplm-button-3"
transform="translate(-172,-5.5678281)">
<rect
ry="3"
rx="3"
@ -3241,10 +3307,10 @@
height="12.071428"
width="34"
id="rect5655"
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" />
style="display:inline;fill:#323232;fill-opacity:1;fill-rule:evenodd;stroke:#1e1e1e;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-size:10px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:10px;line-height:125%;font-family:Arial;-inkscape-font-specification:'Arial Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none"
x="138.94069"
y="381.98456"
id="text5731"
@ -3255,85 +3321,154 @@
y="381.98456">4</tspan></text>
</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">
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.50032997px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none"
id="oplm-id-label"
transform="translate(-172,-5.5678281)">
<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"
d="m 10.736446,402.06507 c -1e-6,-1.60404 0.430674,-2.8587 1.292024,-3.76401 c 0.861346,-0.90968 1.973189,-1.36452 3.335531,-1.36453 c 0.892105,10e-6 1.696323,0.21315 2.412656,0.63942 c 0.716318,0.42629 1.261253,1.02176 1.634806,1.78642 c 0.377929,0.76028 0.566898,1.62382 0.566908,2.59064 c -10e-6,0.98001 -0.197768,1.85674 -0.593276,2.63019 c -0.395526,0.77346 -0.955842,1.36014 -1.680949,1.76005 c -0.725123,0.39552 -1.507367,0.59328 -2.346737,0.59328 c -0.909695,0 -1.722702,-0.21973 -2.439025,-0.6592 c -0.716328,-0.43946 -1.259065,-1.03933 -1.628213,-1.7996 c -0.369151,-0.76027 -0.553726,-1.56449 -0.553725,-2.41266 m 1.318392,0.0198 c -2e-6,1.16458 0.312017,2.08306 0.936058,2.75543 c 0.62843,0.66799 1.415069,1.00198 2.359921,1.00198 c 0.962419,0 1.753454,-0.33838 2.373105,-1.01516 c 0.62403,-0.67677 0.936049,-1.637 0.936058,-2.88068 c -9e-6,-0.78664 -0.134045,-1.4722 -0.40211,-2.0567 c -0.263686,-0.58887 -0.652611,-1.04371 -1.166776,-1.36453 c -0.509785,-0.3252 -1.083285,-0.4878 -1.720501,-0.48781 c -0.9053,1e-5 -1.685348,0.31203 -2.340145,0.93606 c -0.650409,0.61965 -0.975612,1.65679 -0.97561,3.11141"
id="path5847"
inkscape:connector-curvature="0" />
<path
d="M 21.619769,406.77173 L 21.619769,397.10792 L 25.265122,397.10792 C 25.906733,397.10793 26.396735,397.13872 26.735128,397.20022 C 27.209743,397.27932 27.607457,397.43094 27.928273,397.65506 C 28.249074,397.8748 28.50616,398.18462 28.699532,398.58453 C 28.897282,398.98445 28.996161,399.42391 28.99617,399.90292 C 28.996161,400.72472 28.734681,401.42127 28.211727,401.99257 C 27.688758,402.55948 26.743911,402.84294 25.377185,402.84293 L 22.898609,402.84293 L 22.898609,406.77174 L 21.619769,406.77174 M 22.898609,401.70252 L 25.396961,401.70252 C 26.223147,401.70253 26.809831,401.54872 27.157014,401.24109 C 27.504183,400.93347 27.677771,400.5006 27.677778,399.94247 C 27.677771,399.53817 27.574497,399.19319 27.367956,398.90753 C 27.165796,398.61749 26.897724,398.42633 26.563737,398.33403 C 26.348394,398.27693 25.95068,398.24833 25.370593,398.24833 L 22.898609,398.24833 L 22.898609,401.70251"
d="m 21.619769,406.77173 l 0,-9.66381 l 3.645353,0 c 0.641611,1e-5 1.131613,0.0308 1.470006,0.0923 c 0.474615,0.0791 0.872329,0.23072 1.193145,0.45484 c 0.320801,0.21974 0.577887,0.52956 0.771259,0.92947 c 0.19775,0.39992 0.296629,0.83938 0.296638,1.31839 c -9e-6,0.8218 -0.261489,1.51835 -0.784443,2.08965 c -0.522969,0.56691 -1.467816,0.85037 -2.834542,0.85036 l -2.478576,0 l 0,3.92881 l -1.27884,0 m 1.27884,-5.06922 l 2.498352,0 c 0.826186,1e-5 1.41287,-0.1538 1.760053,-0.46143 c 0.347169,-0.30762 0.520757,-0.74049 0.520764,-1.29862 c -7e-6,-0.4043 -0.103281,-0.74928 -0.309822,-1.03494 c -0.20216,-0.29004 -0.470232,-0.4812 -0.804219,-0.5735 c -0.215343,-0.0571 -0.613057,-0.0857 -1.193144,-0.0857 l -2.471984,0 l 0,3.45418"
id="path5849"
inkscape:connector-curvature="0" />
<path
d="M 30.584832,406.77173 L 30.584832,397.10792 L 31.863671,397.10792 L 31.863671,405.63132 L 36.623065,405.63132 L 36.623065,406.77173 L 30.584832,406.77173"
d="m 30.584832,406.77173 l 0,-9.66381 l 1.278839,0 l 0,8.5234 l 4.759394,0 l 0,1.14041 l -6.038233,0"
id="path5851"
inkscape:connector-curvature="0" />
<path
d="M 38.112847,406.77173 L 38.112847,397.10792 L 40.037699,397.10792 L 42.325108,403.95037 C 42.536045,404.5876 42.689858,405.06441 42.786545,405.38083 C 42.896405,405.02926 43.067796,404.51289 43.300718,403.83172 L 45.614495,397.10792 L 47.334996,397.10792 L 47.334996,406.77173 L 46.1023,406.77173 L 46.1023,398.6834 L 43.294126,406.77173 L 42.140533,406.77173 L 39.345543,398.54496 L 39.345543,406.77173 L 38.112847,406.77173"
d="m 38.112847,406.77173 l 0,-9.66381 l 1.924852,0 l 2.287409,6.84245 c 0.210937,0.63723 0.36475,1.11404 0.461437,1.43046 c 0.10986,-0.35157 0.281251,-0.86794 0.514173,-1.54911 l 2.313777,-6.7238 l 1.720501,0 l 0,9.66381 l -1.232696,0 l 0,-8.08833 l -2.808174,8.08833 l -1.153593,0 l -2.79499,-8.22677 l 0,8.22677 l -1.232696,0"
id="path5853"
inkscape:connector-curvature="0" />
<path
d="M 53.373229,406.77173 L 53.373229,397.10792 L 54.652069,397.10792 L 54.652069,406.77173 L 53.373229,406.77173"
d="m 53.373229,406.77173 l 0,-9.66381 l 1.27884,0 l 0,9.66381 l -1.27884,0"
id="path5855"
inkscape:connector-curvature="0" />
<path
d="M 56.899927,406.77173 L 56.899927,397.10792 L 60.228866,397.10792 C 60.980344,397.10793 61.553843,397.15412 61.949367,397.24635 C 62.503084,397.3738 62.975508,397.60452 63.366638,397.9385 C 63.876408,398.36919 64.256544,398.92071 64.507046,399.59309 C 64.761927,400.26108 64.889371,401.02574 64.88938,401.88709 C 64.889371,402.621 64.80368,403.2714 64.632294,403.83831 C 64.460894,404.40522 64.241162,404.87544 63.973098,405.24899 C 63.705017,405.61814 63.410576,405.91038 63.089775,406.12572 C 62.773355,406.33666 62.388824,406.49706 61.936183,406.60693 C 61.487924,406.7168 60.971554,406.77173 60.387073,406.77173 L 56.899927,406.77173 M 58.178767,405.63132 L 60.24205,405.63132 C 60.879267,405.63132 61.378058,405.57202 61.738424,405.45334 C 62.103173,405.33468 62.393219,405.16769 62.608562,404.95235 C 62.911785,404.64912 63.146898,404.24262 63.313902,403.73284 C 63.485285,403.21867 63.570981,402.59683 63.570988,401.86731 C 63.570981,400.85655 63.403985,400.0809 63.07,399.54035 C 62.740395,398.99542 62.338286,398.63067 61.863671,398.44609 C 61.520884,398.31425 60.969357,398.24834 60.20909,398.24833 L 58.178767,398.24833 L 58.178767,405.63132"
d="m 56.899927,406.77173 l 0,-9.66381 l 3.328939,0 c 0.751478,1e-5 1.324977,0.0462 1.720501,0.13843 c 0.553717,0.12745 1.026141,0.35817 1.417271,0.69215 c 0.50977,0.43069 0.889906,0.98221 1.140408,1.65459 c 0.254881,0.66799 0.382325,1.43265 0.382334,2.294 c -9e-6,0.73391 -0.0857,1.38431 -0.257086,1.95122 c -0.1714,0.56691 -0.391132,1.03713 -0.659196,1.41068 c -0.268081,0.36915 -0.562522,0.66139 -0.883323,0.87673 c -0.31642,0.21094 -0.700951,0.37134 -1.153592,0.48121 c -0.448259,0.10987 -0.964629,0.1648 -1.54911,0.1648 l -3.487146,0 m 1.27884,-1.14041 l 2.063283,0 c 0.637217,0 1.136008,-0.0593 1.496374,-0.17798 c 0.364749,-0.11866 0.654795,-0.28565 0.870138,-0.50099 c 0.303223,-0.30323 0.538336,-0.70973 0.70534,-1.21951 c 0.171383,-0.51417 0.257079,-1.13601 0.257086,-1.86553 c -7e-6,-1.01076 -0.167003,-1.78641 -0.500988,-2.32696 c -0.329605,-0.54493 -0.731714,-0.90968 -1.206329,-1.09426 c -0.342787,-0.13184 -0.894314,-0.19775 -1.654581,-0.19776 l -2.030323,0 l 0,7.38299"
id="path5857"
inkscape:connector-curvature="0" />
<path
d="M 70.578242,401.12242 L 70.578242,399.77107 L 71.929593,399.77107 L 71.929593,401.12242 L 70.578242,401.12242 M 70.578242,406.77173 L 70.578242,405.42038 L 71.929593,405.42038 L 71.929593,406.77173 L 70.578242,406.77173"
d="m 70.578242,401.12242 l 0,-1.35135 l 1.351351,0 l 0,1.35135 l -1.351351,0 m 0,5.64931 l 0,-1.35135 l 1.351351,0 l 0,1.35135 l -1.351351,0"
id="path5859"
inkscape:connector-curvature="0" />
</g>
<g
style="display:inline"
id="rx-quality-label"
transform="translate(-20.43483,0)">
<path
d="m -132.76924,419.72572 q 0.92087,0.63438 1.6985,0.92769 l -0.38881,0.92088 q -1.07777,-0.38882 -2.14871,-1.22783 q -1.11187,0.62073 -2.45566,0.62073 q -1.35743,0 -2.46248,-0.65484 q -1.10505,-0.65484 -1.70532,-1.84175 q -0.59345,-1.1869 -0.59345,-2.67394 q 0,-1.48022 0.60027,-2.6944 q 0.60027,-1.21419 1.70532,-1.84857 q 1.11187,-0.63438 2.48295,-0.63438 q 1.38472,0 2.49658,0.66166 q 1.11187,0.65485 1.69168,1.84175 q 0.58663,1.18008 0.58663,2.66712 q 0,1.23465 -0.37517,2.22374 q -0.37517,0.98226 -1.13233,1.71214 z m -2.91269,-1.69168 q 1.14598,0.3206 1.8895,0.95498 q 1.16644,-1.06412 1.16644,-3.19918 q 0,-1.21419 -0.4161,-2.12142 q -0.40928,-0.90723 -1.20737,-1.40518 q -0.79127,-0.50478 -1.78035,-0.50478 q -1.48022,0 -2.45566,1.01637 q -0.97545,1.00955 -0.97545,3.02183 q 0,1.95089 0.9618,2.99454 q 0.96862,1.04366 2.46931,1.04366 q 0.70941,0 1.33697,-0.26603 q -0.62074,-0.40246 -1.30969,-0.57299 l 0.3206,-0.9618 z"
id="path5460"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -124.89748,420.79666 l 0,-1.06412 q -0.84584,1.22783 -2.29877,1.22783 q -0.6412,0 -1.20055,-0.24556 q -0.55252,-0.24557 -0.82537,-0.61392 q -0.26603,-0.37517 -0.37517,-0.91405 q -0.075,-0.36153 -0.075,-1.14598 l 0,-4.4884 l 1.22783,0 l 0,4.01773 q 0,0.96181 0.075,1.29605 q 0.11596,0.48431 0.49113,0.76398 q 0.37517,0.27285 0.92769,0.27285 q 0.55253,0 1.03684,-0.27967 q 0.48431,-0.28649 0.68213,-0.7708 q 0.20464,-0.49114 0.20464,-1.41883 l 0,-3.88131 l 1.22783,0 l 0,7.2442 l -1.09823,0 z"
id="path5462"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -117.14168,419.90307 q -0.68213,0.57981 -1.31651,0.81856 q -0.62756,0.23874 -1.35061,0.23874 q -1.19373,0 -1.83493,-0.57981 q -0.6412,-0.58663 -0.6412,-1.49386 q 0,-0.53206 0.23875,-0.96862 q 0.24556,-0.44338 0.63438,-0.70941 q 0.39563,-0.26603 0.88676,-0.40246 q 0.36153,-0.0955 1.09141,-0.18417 q 1.48704,-0.17736 2.18963,-0.42292 q 0.007,-0.25239 0.007,-0.3206 q 0,-0.75034 -0.34789,-1.0573 q -0.47066,-0.4161 -1.39836,-0.4161 q -0.8663,0 -1.2824,0.30696 q -0.40928,0.30013 -0.60709,1.07094 l -1.20055,-0.16371 q 0.16371,-0.77081 0.53888,-1.24148 q 0.37517,-0.47748 1.08459,-0.72987 q 0.70941,-0.25921 1.64393,-0.25921 q 0.92769,0 1.5075,0.21828 q 0.57981,0.21828 0.85266,0.55252 q 0.27285,0.32743 0.38199,0.8322 q 0.0614,0.31378 0.0614,1.13233 l 0,1.63711 q 0,1.71214 0.075,2.16917 q 0.0819,0.4502 0.31378,0.8663 l -1.28241,0 q -0.19099,-0.38199 -0.24556,-0.89359 z m -0.10232,-2.74215 q -0.66849,0.27285 -2.00546,0.46385 q -0.75716,0.10914 -1.07094,0.24556 q -0.31378,0.13643 -0.48431,0.40246 q -0.17053,0.25921 -0.17053,0.57981 q 0,0.49113 0.36835,0.81855 q 0.37517,0.32742 1.0914,0.32742 q 0.70942,0 1.26194,-0.30696 q 0.55252,-0.31378 0.81173,-0.85266 q 0.19782,-0.41609 0.19782,-1.22783 l 0,-0.4502 z"
id="path5464"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -114.11986,420.79666 l 0,-10 l 1.22784,0 l 0,10 l -1.22784,0 z"
id="path5466"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -110.97524,412.20867 l 0,-1.41201 l 1.22783,0 l 0,1.41201 l -1.22783,0 z m 0,8.58799 l 0,-7.2442 l 1.22783,0 l 0,7.2442 l -1.22783,0 z"
id="path5468"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -105.1908,419.69843 l 0.17736,1.08459 q -0.51842,0.10914 -0.9277,0.10914 q -0.66848,0 -1.03683,-0.21146 q -0.36835,-0.21146 -0.51842,-0.55252 q -0.15007,-0.34789 -0.15007,-1.45294 l 0,-4.1678 l -0.90041,0 l 0,-0.95498 l 0.90041,0 l 0,-1.794 l 1.22101,-0.7367 l 0,2.5307 l 1.23465,0 l 0,0.95498 l -1.23465,0 l 0,4.23602 q 0,0.52523 0.0614,0.6753 q 0.0682,0.15007 0.21146,0.23875 q 0.15007,0.0887 0.42292,0.0887 q 0.20464,0 0.53888,-0.0478 z"
id="path5470"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -104.05164,423.58657 l -0.13643,-1.1528 q 0.40246,0.10914 0.70259,0.10914 q 0.40928,0 0.65485,-0.13643 q 0.24556,-0.13642 0.40245,-0.38199 q 0.11596,-0.18417 0.37517,-0.91405 q 0.0341,-0.10232 0.10914,-0.30014 l -2.74897,-7.25784 l 1.32333,0 l 1.5075,4.19509 q 0.29331,0.79809 0.52524,1.67803 q 0.21146,-0.84584 0.50477,-1.65075 l 1.548433,-4.22237 l 1.227831,0 l -2.755794,7.36698 q -0.44339,1.19373 -0.68895,1.64393 q -0.32743,0.6071 -0.75034,0.88677 q -0.42292,0.28649 -1.00955,0.28649 q -0.35471,0 -0.79127,-0.15006 z"
id="path5473"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -92.796527,414.95082 l 0,-1.39836 l 1.398363,0 l 0,1.39836 l -1.398363,0 z m 0,5.84584 l 0,-1.39836 l 1.398363,0 l 0,1.39836 l -1.398363,0 z"
id="path5475"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
<g
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"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:13.50032997px;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ffffff;fill-opacity:0.94117647;stroke:none"
id="oplm-id-text"
transform="translate(6,0)">
transform="translate(-166,-5.5678281)">
<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"
d="m 80.143175,406.77173 l 3.73764,-5.03626 l -3.295979,-4.62755 l 1.522742,0 l 1.753461,2.47857 c 0.364751,0.51418 0.624034,0.9097 0.777851,1.18656 c 0.215333,-0.35157 0.470221,-0.71852 0.764667,-1.10086 l 1.944628,-2.56427 l 1.390903,0 l -3.394858,4.55504 l 3.658536,5.10877 l -1.58207,0 l -2.432432,-3.4476 c -0.136239,-0.19775 -0.276867,-0.41309 -0.421886,-0.64601 c -0.215341,0.35158 -0.369153,0.59328 -0.461437,0.72512 l -2.42584,3.36849 l -1.535926,0"
id="path5862"
inkscape:connector-curvature="0" />
<path
d="M 89.108238,406.77173 L 92.845878,401.73547 L 89.549899,397.10792 L 91.072641,397.10792 L 92.826102,399.58649 C 93.190853,400.10067 93.450136,400.49619 93.603953,400.77305 C 93.819286,400.42148 94.074174,400.05453 94.36862,399.67219 L 96.313248,397.10792 L 97.704151,397.10792 L 94.309293,401.66296 L 97.967829,406.77173 L 96.385759,406.77173 L 93.953327,403.32413 C 93.817088,403.12638 93.67646,402.91104 93.531442,402.67812 C 93.3161,403.0297 93.162288,403.2714 93.070005,403.40324 L 90.644164,406.77173 L 89.108238,406.77173"
d="m 89.108238,406.77173 l 3.73764,-5.03626 l -3.295979,-4.62755 l 1.522742,0 l 1.753461,2.47857 c 0.364751,0.51418 0.624034,0.9097 0.777851,1.18656 c 0.215333,-0.35157 0.470221,-0.71852 0.764667,-1.10086 l 1.944628,-2.56427 l 1.390903,0 l -3.394858,4.55504 l 3.658536,5.10877 l -1.58207,0 l -2.432432,-3.4476 c -0.136239,-0.19775 -0.276867,-0.41309 -0.421885,-0.64601 c -0.215342,0.35158 -0.369154,0.59328 -0.461437,0.72512 l -2.425841,3.36849 l -1.535926,0"
id="path5864"
inkscape:connector-curvature="0" />
<path
d="M 98.073301,406.77173 L 101.81094,401.73547 L 98.514962,397.10792 L 100.0377,397.10792 L 101.79117,399.58649 C 102.15592,400.10067 102.4152,400.49619 102.56902,400.77305 C 102.78435,400.42148 103.03924,400.05453 103.33368,399.67219 L 105.27831,397.10792 L 106.66921,397.10792 L 103.27436,401.66296 L 106.93289,406.77173 L 105.35082,406.77173 L 102.91839,403.32413 C 102.78215,403.12638 102.64152,402.91104 102.4965,402.67812 C 102.28116,403.0297 102.12735,403.2714 102.03507,403.40324 L 99.609227,406.77173 L 98.073301,406.77173"
d="m 98.073301,406.77173 l 3.737639,-5.03626 l -3.295978,-4.62755 l 1.522738,0 l 1.75347,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76466,-1.10086 l 1.94463,-2.56427 l 1.3909,0 l -3.39485,4.55504 l 3.65853,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42189,-0.64601 c -0.21534,0.35158 -0.36915,0.59328 -0.46143,0.72512 l -2.425843,3.36849 l -1.535926,0"
id="path5866"
inkscape:connector-curvature="0" />
<path
d="M 107.03836,406.77173 L 110.776,401.73547 L 107.48003,397.10792 L 109.00277,397.10792 L 110.75623,399.58649 C 111.12098,400.10067 111.38026,400.49619 111.53408,400.77305 C 111.74941,400.42148 112.0043,400.05453 112.29875,399.67219 L 114.24337,397.10792 L 115.63428,397.10792 L 112.23942,401.66296 L 115.89796,406.77173 L 114.31589,406.77173 L 111.88345,403.32413 C 111.74721,403.12638 111.60659,402.91104 111.46157,402.67812 C 111.24623,403.0297 111.09241,403.2714 111.00013,403.40324 L 108.57429,406.77173 L 107.03836,406.77173"
d="m 107.03836,406.77173 l 3.73764,-5.03626 l -3.29597,-4.62755 l 1.52274,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76467,-1.10086 l 1.94462,-2.56427 l 1.39091,0 l -3.39486,4.55504 l 3.65854,5.10877 l -1.58207,0 l -2.43244,-3.4476 c -0.13624,-0.19775 -0.27686,-0.41309 -0.42188,-0.64601 c -0.21534,0.35158 -0.36916,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53593,0"
id="path5868"
inkscape:connector-curvature="0" />
<path
d="M 116.00343,406.77173 L 119.74107,401.73547 L 116.44509,397.10792 L 117.96783,397.10792 L 119.72129,399.58649 C 120.08604,400.10067 120.34533,400.49619 120.49914,400.77305 C 120.71447,400.42148 120.96936,400.05453 121.26381,399.67219 L 123.20844,397.10792 L 124.59934,397.10792 L 121.20448,401.66296 L 124.86302,406.77173 L 123.28095,406.77173 L 120.84852,403.32413 C 120.71228,403.12638 120.57165,402.91104 120.42663,402.67812 C 120.21129,403.0297 120.05748,403.2714 119.96519,403.40324 L 117.53935,406.77173 L 116.00343,406.77173"
d="m 116.00343,406.77173 l 3.73764,-5.03626 l -3.29598,-4.62755 l 1.52274,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62404,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76467,-1.10086 l 1.94463,-2.56427 l 1.3909,0 l -3.39486,4.55504 l 3.65854,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42189,-0.64601 c -0.21534,0.35158 -0.36915,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53592,0"
id="path5870"
inkscape:connector-curvature="0" />
<path
d="M 124.96849,406.77173 L 128.70613,401.73547 L 125.41015,397.10792 L 126.9329,397.10792 L 128.68636,399.58649 C 129.05111,400.10067 129.31039,400.49619 129.46421,400.77305 C 129.67954,400.42148 129.93443,400.05453 130.22887,399.67219 L 132.1735,397.10792 L 133.56441,397.10792 L 130.16955,401.66296 L 133.82808,406.77173 L 132.24601,406.77173 L 129.81358,403.32413 C 129.67734,403.12638 129.53671,402.91104 129.3917,402.67812 C 129.17635,403.0297 129.02254,403.2714 128.93026,403.40324 L 126.50442,406.77173 L 124.96849,406.77173"
d="m 124.96849,406.77173 l 3.73764,-5.03626 l -3.29598,-4.62755 l 1.52275,0 l 1.75346,2.47857 c 0.36475,0.51418 0.62403,0.9097 0.77785,1.18656 c 0.21533,-0.35157 0.47022,-0.71852 0.76466,-1.10086 l 1.94463,-2.56427 l 1.39091,0 l -3.39486,4.55504 l 3.65853,5.10877 l -1.58207,0 l -2.43243,-3.4476 c -0.13624,-0.19775 -0.27687,-0.41309 -0.42188,-0.64601 c -0.21535,0.35158 -0.36916,0.59328 -0.46144,0.72512 l -2.42584,3.36849 l -1.53593,0"
id="path5872"
inkscape:connector-curvature="0" />
</g>
<g
id="rx-quality-text">
<path
d="m -61.732404,420.79666 l -1.227831,0 l 0,-7.82401 q -0.443383,0.42292 -1.166439,0.84584 q -0.716235,0.42292 -1.289222,0.63438 l 0,-1.1869 q 1.030013,-0.48432 1.800818,-1.17326 q 0.770805,-0.68895 1.091405,-1.33698 l 0.791269,0 l 0,10.04093 z"
id="path5477"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -58.580973,415.86487 q 0,-1.77353 0.361528,-2.85129 q 0.368349,-1.08459 1.084584,-1.67122 q 0.723056,-0.58663 1.814461,-0.58663 q 0.804911,0 1.412005,0.32743 q 0.607095,0.3206 1.002729,0.93451 q 0.395634,0.6071 0.620737,1.48704 q 0.225102,0.87312 0.225102,2.36016 q 0,1.7599 -0.361528,2.84448 q -0.361528,1.07776 -1.084584,1.67121 q -0.716235,0.58663 -1.814461,0.58663 q -1.446112,0 -2.271487,-1.03683 q -0.989086,-1.2483 -0.989086,-4.06549 z m 1.261937,0 q 0,2.46249 0.572988,3.28104 q 0.579809,0.81173 1.425648,0.81173 q 0.845839,0 1.418827,-0.81855 q 0.579809,-0.81855 0.579809,-3.27422 q 0,-2.4693 -0.579809,-3.28103 q -0.572988,-0.81173 -1.43247,-0.81173 q -0.845839,0 -1.350613,0.71623 q -0.63438,0.91405 -0.63438,3.37653 z"
id="path5479"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -50.804712,415.86487 q 0,-1.77353 0.361527,-2.85129 q 0.36835,-1.08459 1.084584,-1.67122 q 0.723056,-0.58663 1.814461,-0.58663 q 0.804912,0 1.412006,0.32743 q 0.607094,0.3206 1.002728,0.93451 q 0.395635,0.6071 0.620737,1.48704 q 0.225102,0.87312 0.225102,2.36016 q 0,1.7599 -0.361528,2.84448 q -0.361528,1.07776 -1.084584,1.67121 q -0.716234,0.58663 -1.814461,0.58663 q -1.446111,0 -2.271487,-1.03683 q -0.989085,-1.2483 -0.989085,-4.06549 z m 1.261937,0 q 0,2.46249 0.572987,3.28104 q 0.579809,0.81173 1.425648,0.81173 q 0.845839,0 1.418827,-0.81855 q 0.579809,-0.81855 0.579809,-3.27422 q 0,-2.4693 -0.579809,-3.28103 q -0.572988,-0.81173 -1.432469,-0.81173 q -0.845839,0 -1.350614,0.71623 q -0.634379,0.91405 -0.634379,3.37653 z"
id="path5481"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -42.796529,413.19775 q 0,-1.07094 0.538882,-1.82128 q 0.538881,-0.75034 1.562073,-0.75034 q 0.941337,0 1.555253,0.67531 q 0.620736,0.66848 0.620736,1.97135 q 0,1.26876 -0.627558,1.95771 q -0.620736,0.68212 -1.534788,0.68212 q -0.907231,0 -1.514325,-0.6753 q -0.600273,-0.67531 -0.600273,-2.03957 z m 2.135062,-1.72578 q -0.457026,0 -0.763984,0.39563 q -0.300136,0.39564 -0.300136,1.45294 q 0,0.9618 0.306957,1.35743 q 0.306958,0.38881 0.757163,0.38881 q 0.463847,0 0.763983,-0.39563 q 0.306958,-0.39563 0.306958,-1.44611 q 0,-0.96862 -0.306958,-1.35744 q -0.306957,-0.39563 -0.763983,-0.39563 z m 0.0068,9.69304 l 5.470668,-10.53888 l 0.995908,0 l -5.450205,10.53888 l -1.016371,0 z m 4.324693,-2.71487 q 0,-1.07776 0.538881,-1.82128 q 0.538882,-0.75034 1.568895,-0.75034 q 0.941337,0 1.555253,0.6753 q 0.620736,0.66849 0.620736,1.97135 q 0,1.26876 -0.627558,1.95771 q -0.620736,0.68213 -1.54161,0.68213 q -0.90723,0 -1.514324,-0.67531 q -0.600273,-0.68212 -0.600273,-2.03956 z m 2.141883,-1.72578 q -0.463848,0 -0.770805,0.39563 q -0.300137,0.39563 -0.300137,1.45293 q 0,0.95498 0.306958,1.35062 q 0.306958,0.39563 0.757162,0.39563 q 0.470669,0 0.770805,-0.39563 q 0.306958,-0.39564 0.306958,-1.44611 q 0,-0.96863 -0.306958,-1.35744 q -0.306957,-0.39563 -0.763983,-0.39563 z"
id="path5483"
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:125%;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
<g
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 +3478,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 +3495,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 +4294,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 +4383,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 +4427,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 +4577,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 +4751,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 +6549,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 +6751,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 +7023,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 +7031,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 +7489,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: 745 KiB

View File

@ -136,7 +136,7 @@
<context>
<name>Core::Internal::MainWindow</name>
<message>
<location filename="../../../src/plugins/coreplugin/mainwindow.cpp" line="+431"/>
<location filename="../../../src/plugins/coreplugin/mainwindow.cpp" line="+432"/>
<source>&amp;File</source>
<translation>&amp;Fichier</translation>
</message>
@ -161,12 +161,7 @@
<translation>&amp;Aide</translation>
</message>
<message>
<location line="-335"/>
<source>OpenPilot GCS</source>
<translation></translation>
</message>
<message>
<location line="+452"/>
<location line="+117"/>
<source>Ctrl+Shift+S</source>
<translation type="unfinished">Ctrl+Maj+S</translation>
</message>
@ -181,7 +176,12 @@
<translation>Enregistrer Paramètres &amp;GCS par Défaut</translation>
</message>
<message>
<location line="+11"/>
<location line="-449"/>
<source>OpenPilot GCS </source>
<translation type="unfinished"></translation>
</message>
<message>
<location line="+460"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
@ -5600,172 +5600,108 @@ La même valeur est utilisé pour tous les axes.</translation>
<context>
<name>CC_HW_Widget</name>
<message>
<location filename="../../../src/plugins/config/cc_hw_settings.ui"/>
<source>Form</source>
<translation>Formulaire</translation>
<translation type="vanished">Formulaire</translation>
</message>
<message>
<location/>
<source>HW settings</source>
<translation>Paramètres Matériels</translation>
<translation type="vanished">Paramètres Matériels</translation>
</message>
<message>
<location/>
<source>Messages</source>
<translation>Messages</translation>
<translation type="vanished">Messages</translation>
</message>
<message>
<location/>
<source>Changes on this page only take effect after board reset or power cycle</source>
<translation>Les changements sur cette page ne prendront effet qu&apos;après un reset ou une coupure d&apos;alimentation</translation>
<translation type="vanished">Les changements sur cette page ne prendront effet qu&apos;après un reset ou une coupure d&apos;alimentation</translation>
</message>
<message>
<location/>
<source>Telemetry speed:</source>
<translation>Vitesse de télémétrie :</translation>
<translation type="vanished">Vitesse de télémétrie :</translation>
</message>
<message>
<location/>
<source>GPS speed:</source>
<translation>Vitesse GPS :</translation>
<translation type="vanished">Vitesse GPS :</translation>
</message>
<message>
<location/>
<source>ComUsbBridge speed:</source>
<translation>Vitesse COMUsbBridge :</translation>
<translation type="vanished">Vitesse COMUsbBridge :</translation>
</message>
<message>
<location/>
<source>Select the speed here.</source>
<translation>Sélectionner ici la vitesse.</translation>
<translation type="vanished">Sélectionner ici la vitesse.</translation>
</message>
<message>
<location/>
<source>USB HID Port</source>
<translation></translation>
</message>
<message>
<location/>
<source>USB VCP Port</source>
<translation></translation>
</message>
<message>
<location/>
<source>Takes you to the wiki page</source>
<translation>Vous renvoie à la page wiki</translation>
<translation type="vanished">Vous renvoie à la page wiki</translation>
</message>
<message>
<location/>
<source>Send to OpenPilot but don&apos;t write in SD.
Beware of not locking yourself out!</source>
<translation>Envoie vers l&apos;OpenPilot mais n&apos;écrit pas dans la SD.
<translation type="vanished">Envoie vers l&apos;OpenPilot mais n&apos;écrit pas dans la SD.
Méfiez-vous de ne pas vous verrouiller l&apos;accès !</translation>
</message>
<message>
<location/>
<source>Apply</source>
<translation>Appliquer</translation>
<translation type="vanished">Appliquer</translation>
</message>
<message>
<location/>
<source>Applies and Saves all settings to SD.
Beware of not locking yourself out!</source>
<translation>Applique et Enregistre tous les paramètres dans la SD.
<translation type="vanished">Applique et Enregistre tous les paramètres dans la SD.
Méfiez-vous de ne pas vous verrouiller l&apos;accès !</translation>
</message>
<message>
<location/>
<source>Save</source>
<translation>Enregistrer</translation>
<translation type="vanished">Enregistrer</translation>
</message>
<message>
<location/>
<source>GPS protocol :</source>
<translation>Protocole GPS :</translation>
</message>
<message>
<location/>
<source>Main Port</source>
<translation></translation>
</message>
<message>
<location/>
<source>Flexi Port</source>
<translation></translation>
</message>
<message>
<location/>
<source>Receiver Port</source>
<translation></translation>
<translation type="vanished">Protocole GPS :</translation>
</message>
</context>
<context>
<name>ccattitude</name>
<message>
<location filename="../../../src/plugins/config/ccattitude.ui"/>
<source>Form</source>
<translation>Formulaire</translation>
<translation type="vanished">Formulaire</translation>
</message>
<message>
<location/>
<source>Attitude</source>
<translation>Attitude</translation>
<translation type="vanished">Attitude</translation>
</message>
<message>
<location/>
<source>Rotate virtual attitude relative to board</source>
<translation>Pivoter l&apos;attitude virtuelle par rapport à la carte</translation>
<translation type="vanished">Pivoter l&apos;attitude virtuelle par rapport à la carte</translation>
</message>
<message>
<location/>
<source>Roll</source>
<translation></translation>
</message>
<message>
<location/>
<source>Yaw</source>
<translation></translation>
</message>
<message>
<location/>
<source>Pitch</source>
<translation></translation>
</message>
<message>
<location/>
<source>Calibration</source>
<translation>Calibration</translation>
<translation type="vanished">Calibration</translation>
</message>
<message>
<location/>
<source>Place aircraft very flat, and then click level to compute the accelerometer and gyro bias</source>
<translation>Placer l&apos;appareil bien à plat et cliquer ensuite sur Niveau pour calculer les ajustements des accéléromètres et gyroscopes</translation>
<translation type="vanished">Placer l&apos;appareil bien à plat et cliquer ensuite sur Niveau pour calculer les ajustements des accéléromètres et gyroscopes</translation>
</message>
<message>
<location/>
<source>Launch horizontal calibration.</source>
<translation>Lancer la calibration du niveau horizontal.</translation>
<translation type="vanished">Lancer la calibration du niveau horizontal.</translation>
</message>
<message>
<location/>
<source>Level</source>
<translation>Niveau</translation>
<translation type="vanished">Niveau</translation>
</message>
<message>
<location/>
<source>If enabled, a fast recalibration of gyro zero point will be done
whenever the frame is armed. Do not move the airframe while
arming it in that case!</source>
<translation>Si activé, une recalibration rapide des gyros est effectuée à chaque fois que
<translation type="vanished">Si activé, une recalibration rapide des gyros est effectuée à chaque fois que
la carte est armée. Dans ce cas ne bougez pas l&apos;appareil lors de l&apos;armement !</translation>
</message>
<message>
<location/>
<source>Zero gyros while arming aircraft</source>
<translation>Mettre les gyros à zéro lors de l&apos;armement</translation>
<translation type="vanished">Mettre les gyros à zéro lors de l&apos;armement</translation>
</message>
<message>
<location/>
<source>Accelerometer filtering.
Sets the amount of lowpass filtering of accelerometer data
@ -5776,7 +5712,7 @@ Range: 0.00 - 0.20, Good starting value: 0.05 - 0.10
Start low and raise until drift stops.
A setting of 0.00 disables the filter.</source>
<translation>Filtrage accéléromètres.
<translation type="vanished">Filtrage accéléromètres.
Ajuste le niveau de filtrage passe-bas des données d&apos;accéléromètres pour
l&apos;estimation de l&apos;inclinaison. Des valeurs élevées donnent un filtrage plus
@ -5788,35 +5724,29 @@ Commencez à un niveau bas et augmentez jusqu&apos;à ce que le glissement s&apo
Une valeur de 0.00 désactive le filtre.</translation>
</message>
<message>
<location/>
<source>Takes you to the wiki page</source>
<translation>Vous renvoie à la page wiki</translation>
<translation type="vanished">Vous renvoie à la page wiki</translation>
</message>
<message>
<location/>
<source>Apply</source>
<translation>Appliquer</translation>
<translation type="vanished">Appliquer</translation>
</message>
<message>
<location/>
<source>Click to permanently save the accel bias in the CopterControl Flash.</source>
<translation>Cliquer pour enregistrer définitivement les ajustements des
<translation type="vanished">Cliquer pour enregistrer définitivement les ajustements des
accéléromètres dans la mémoire Flash de la carte.</translation>
</message>
<message>
<location/>
<source>Save</source>
<translation>Enregistrer</translation>
<translation type="vanished">Enregistrer</translation>
</message>
<message>
<location/>
<source>Filtering</source>
<translation>Filtrage</translation>
<translation type="vanished">Filtrage</translation>
</message>
<message>
<location/>
<source>Accelerometers</source>
<translation>Accéléromètres</translation>
<translation type="vanished">Accéléromètres</translation>
</message>
</context>
<context>
@ -6490,9 +6420,8 @@ Applique et Enregistre tous les paramètres sur la SD</translation>
<translation>Stabilisé 6</translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Avoid &amp;quot;Manual&amp;quot; for multirotors! Never select &amp;quot;Altitude&amp;quot;, &amp;quot;VelocityControl&amp;quot; or &amp;quot;CruiseControl&amp;quot; on a fixed wing!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Éviter &amp;quot;Manuel&amp;quot; pour les multirotors ! Ne jamais sélectionner &amp;quot;Altitude&amp;quot;, &amp;quot;VelocityControl&amp;quot; ou &amp;quot;CruiseControl&amp;quot; sur une aile volante !&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<translation type="vanished">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Éviter &amp;quot;Manuel&amp;quot; pour les multirotors ! Ne jamais sélectionner &amp;quot;Altitude&amp;quot;, &amp;quot;VelocityControl&amp;quot; ou &amp;quot;CruiseControl&amp;quot; sur une aile volante !&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
@ -6541,6 +6470,11 @@ Applique et Enregistre tous les paramètres sur la SD</translation>
<translatorcomment>Do not translate !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Never select &amp;quot;Manual&amp;quot; as Flight Mode when flying a multitrotor! Never select &amp;quot;Altitude&amp;quot; or &amp;quot;CruiseControl&amp;quot; in Stabilization Modes when using a fixed wing!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Éviter &amp;quot;Manuel&amp;quot; comme Mode de Vol pour les multirotors ! Ne jamais sélectionner &amp;quot;Altitude&amp;quot; ou &amp;quot;CruiseControl&amp;quot; comme Mode de Stabilisation sur une aile volante !&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
</context>
<context>
<name>MixerCurve</name>
@ -7964,30 +7898,12 @@ Useful if you have accidentally changed some settings.</source>
<source>Velocity Integral</source>
<translation>Intégrale Vitesse Verticale</translation>
</message>
<message>
<location/>
<source>fieldname:AltitudePI</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>scale:0.01</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>fieldname:VelocityPI</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>scale:0.00001</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>Control Coefficients</source>
@ -8070,9 +7986,8 @@ Useful if you have accidentally changed some settings.</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Détermine de combien le véhicule augmente ou diminue les gaz pour compenser ou atteindre une certaine vitesse verticale. Des valeurs plus élevées entraînent des variations de gaz plus agressives qui peuvent produire des oscillations. C&apos;est le paramètre à changer en fonction de la poussée moteur de l&apos;appareil. Des appareils chargés avec des moteurs faibles peuvent demander des valeurs plus élevées.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;How fast the vehicle should adjust its neutral throttle estimation. Altitude assumes that when engaged the throttle is in the range required to hover. If the throttle is a lot higher or lower, it needs to adjust this &amp;quot;throttle trim&amp;quot; Higher values make it do this adjustment faster, but this could lead to ugly oscillations. Leave at default unless you know what you are doing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Détermine la vitesse à laquelle le véhicule doit ajuster son estimation de gaz au neutre. Le Maintien d&apos;Altitude suppose que lorsque il est activé, il est la plage nécessaire pour se maintenir en l&apos;air. Si les gaz est beaucoup plus élevé ou plus bas, il faut ajuster ce &quot;trim&quot;. Des valeurs plus élevées peuvent lui permettre de faire cet ajustement plus rapidement mais cela pourrait conduire à des oscillations. A laisser par défaut, à moins de savoir ce que vous faites.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
<translation type="vanished">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Détermine la vitesse à laquelle le véhicule doit ajuster son estimation de gaz au neutre. Le Maintien d&apos;Altitude suppose que lorsque il est activé, il est la plage nécessaire pour se maintenir en l&apos;air. Si les gaz est beaucoup plus élevé ou plus bas, il faut ajuster ce &quot;trim&quot;. Des valeurs plus élevées peuvent lui permettre de faire cet ajustement plus rapidement mais cela pourrait conduire à des oscillations. A laisser par défaut, à moins de savoir ce que vous faites.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
@ -8431,8 +8346,55 @@ response (deg)</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Ceci ajuste le niveau de stabilité en lacet de votre véhicule en mode Rate. Un bon point de départ pour l&apos;Intégrale est le double de la valeur Proportionnel&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;How fast the vehicle should climb or descent to compensate a certain altitude difference. Higher values could result in more accurate altitude hold but also more violent control actions, lower values are safer and ensure smoother flight. The default value should be fine for the majority of crafts.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Détermine la vitesse à laquelle doit monter ou descendre le véhicule pour compenser une certaine différence d&apos;altitude. Des valeurs plus élevées pourraient entraîner un maintien d&apos;altitude plus précis mais aussi des réactions plus violentes, des valeurs inférieures sont plus sûres et donnent un vol plus doux. La valeur par défaut devrait être bonne pour la plupart des appareils.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
<source>fieldname:VerticalPosP</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;How fast the vehicle should attain its target velocity. For neutral throttle estimation, the altitude module assumes that when engaged the throttle thrust limit neutral setting is in the range required to hover. If the throttle required is a lot higher or lower, it needs to adjust this &amp;quot;throttle trim&amp;quot;. Higher values make it do this adjustment faster, but this could lead to ugly oscillations. Leave at default unless you know what you are doing.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Détermine la rapidité à laquelle le véhicule doit atteindre la vitesse désirée. Pour l&apos;estimation du neutre de manche des gaz, le module Altitude suppose que lorsqu&apos;il est activé le manche des gaz est dans la zone nécessaire à un vol stabilisé. Si la valeur de gaz est beaucoup plus haute ou basse, il doit ajuster son &amp;quot;Trim de Gaz&amp;quot;. Des valeurs élevées donneront un ajustement plus rapide mais cela peut entrainer de vilaines oscillations. Laissez par défaut si vous ne savez pas ce que vous faites.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
<source>fieldname:VerticalVelPID</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>Velocity Derivative</source>
<translation>Dérivée Vitesse Verticale</translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Small abouts of Kd can reduce oscillations in the velocity controller.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Un faible valeur de Kd peut réduire les oscillations dans le controlleur de vitesse.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
<source>Velocity Beta</source>
<translation>Beta Vitesse Verticale</translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The beta value applies a setpoint weighting that reduces the sensitivity to quick changes in the desired velocity. Transitions from altitude hold to descent/climb can be made smooth applying a Beta value of around 80 to 90%.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;La valeur de Beta applique une pondération de consigne qui réduit la sensibilité à des changements rapides de la vitesse souhaitée. Les transitions montée/descente en maintien d&apos;altitude peuvent être adoucies en mettant une valeur de Beta entre 80 et 90%.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location/>
<source>element:Beta</source>
<translatorcomment>Pas toucher !</translatorcomment>
<translation></translation>
</message>
<message>
<location/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;How fast the vehicle should climb or descent to compensate a certain altitude difference. Higher values could result in more accurate altitude hold but also more violent control actions, lower values are safer and ensure smoother flight. The default value should be fine for the majority of crafts.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Détermine la vitesse à laquelle doit monter ou descendre le véhicule pour compenser une certaine différence d&apos;altitude. Des valeurs plus élevées pourraient entraîner un maintien d&apos;altitude plus précis mais aussi des réactions plus violentes, des valeurs inférieures sont plus sûres et donnent un vol plus doux. La valeur par défaut devrait être bonne pour la plupart des appareils.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
</context>
@ -9146,7 +9108,7 @@ les données en cache</translation>
<translation>Diagramme de Connexion</translation>
</message>
<message>
<location line="+230"/>
<location line="+218"/>
<source>Save File</source>
<translation>Enregistrer Fichier</translation>
</message>
@ -9277,7 +9239,7 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:10pt;&quot;&gt;It is necessary that your firmware and ground control software are the same version.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:10pt;&quot;&gt;When you are ready you can start the upgrade below by pushing the button. It is critical that nothing disturbs the board while the firmware is being written.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:10pt;&quot;&gt;It is recommended that you erase all settings on the board when upgrading firmware. Using saved settings for a previous version of the firmware &lt;/span&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:10pt; font-weight:600;&quot;&gt;may result in undefined behaviour&lt;/span&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:10pt;&quot;&gt; and in worst case danger. It is possible to suppress the erase by deselecting the check box below.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Ubuntu&apos;; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
@ -9311,25 +9273,15 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location/>
<location filename="../../../src/plugins/setupwizard/pages/controllerpage.cpp" line="+201"/>
<location filename="../../../src/plugins/setupwizard/pages/controllerpage.cpp" line="+190"/>
<source>Connect</source>
<translation>Connecter</translation>
</message>
<message>
<location filename="../../../src/plugins/setupwizard/pages/controllerpage.cpp" line="-70"/>
<location filename="../../../src/plugins/setupwizard/pages/controllerpage.cpp" line="-68"/>
<source>&lt;Unknown&gt;</source>
<translation>&lt;Inconnu&gt;</translation>
</message>
<message>
<location line="+1"/>
<source>OpenPilot CopterControl</source>
<translation></translation>
</message>
<message>
<location line="+1"/>
<source>OpenPilot CopterControl 3D</source>
<translation></translation>
</message>
<message>
<location line="+1"/>
<source>OpenPilot Revolution</source>
@ -9637,12 +9589,12 @@ Veuillez sélectionner le type de multirotor désiré pour la configuration ci-d
<location filename="../../../src/plugins/setupwizard/pages/outputcalibrationpage.cpp" line="-268"/>
<location line="+8"/>
<location line="+243"/>
<location line="+38"/>
<location line="+40"/>
<source>Output value : &lt;b&gt;%1&lt;/b&gt; µs</source>
<translation>Valeur de sortie : &lt;b&gt;%1&lt;/b&gt; µs</translation>
</message>
<message>
<location line="-284"/>
<location line="-286"/>
<source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;To find &lt;/span&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;the neutral rate for this reversable motor&lt;/span&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;, press the Start button below and slide the slider to the right or left until you find the value where the motor doesn&apos;t start. &lt;br/&gt;&lt;br/&gt;When done press button again to stop.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;Pour trouver &lt;/span&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;la valeur de neutre de ce moteur inversable&lt;/span&gt;&lt;span style=&quot; font-size:10pt;&quot;&gt;, appuyez sur le bouton Démarrer et bouger le curseur à gauche ou à droite jusqu&apos;à trouver la position centrale où le moteur ne démarre pas. &lt;br/&gt;&lt;br/&gt;Lorsque c&apos;est terminé, appuyer à nouveau sur le bouton pour arrêter.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
@ -9662,7 +9614,7 @@ Please make sure the correct firmware version is used then restart the wizard an
Soyez certain d&apos;utiliser la bonne version de firmware puis redémarrer l&apos;assistant et essayez à nouveau. Si le problème persiste, consultez le forum openpilot.org.</translation>
</message>
<message>
<location line="+132"/>
<location line="+134"/>
<source>Output value : &lt;b&gt;%1&lt;/b&gt; µs (Min)</source>
<translation>Valeur de sortie : &lt;b&gt;%1&lt;/b&gt; µs (Min)</translation>
</message>
@ -10650,54 +10602,38 @@ p, li { white-space: pre-wrap; }
<context>
<name>ConfigCCHWWidget</name>
<message>
<location filename="../../../src/plugins/config/config_cc_hw_widget.cpp" line="+91"/>
<source>Enable GPS module and reboot the board to be able to select GPS protocol</source>
<translation>Activez le module GPS et redémarrez la carte pour pouvoir choisir le protocole GPS</translation>
<translation type="vanished">Activez le module GPS et redémarrez la carte pour pouvoir choisir le protocole GPS</translation>
</message>
<message>
<location line="+32"/>
<source>Warning: you have configured more than one DebugConsole, this currently is not supported</source>
<translation>Attention : vous avez configuré plus d&apos;une DebugConsole, ce n&apos;est actuellement pas possible</translation>
<translation type="vanished">Attention : vous avez configuré plus d&apos;une DebugConsole, ce n&apos;est actuellement pas possible</translation>
</message>
<message>
<location line="+6"/>
<source>Warning: you have configured both MainPort and FlexiPort for the same function, this currently is not supported</source>
<translatorcomment>Attention</translatorcomment>
<translation>Attention : vous avez configuré la même fonction sur les deux ports MainPort et FlexiPort, ce n&apos;est actuellement pas possible</translation>
<translation type="vanished">Attention : vous avez configuré la même fonction sur les deux ports MainPort et FlexiPort, ce n&apos;est actuellement pas possible</translation>
</message>
<message>
<location line="+3"/>
<source>Warning: you have configured both USB HID Port and USB VCP Port for the same function, this currently is not supported</source>
<translation>Attention : vous avez configuré la même fonction sur les deux ports USB HID et USB VCP, ce n&apos;est actuellement pas possible</translation>
<translation type="vanished">Attention : vous avez configuré la même fonction sur les deux ports USB HID et USB VCP, ce n&apos;est actuellement pas possible</translation>
</message>
<message>
<location line="+3"/>
<source>Warning: you have disabled USB Telemetry on both USB HID Port and USB VCP Port, this currently is not supported</source>
<translation>Attention : vous avez désactivé la télémétrie USB sur les deux ports USB HID et USB VCP, ce n&apos;est actuellement pas possible</translation>
</message>
<message>
<location line="+15"/>
<source>http://wiki.openpilot.org/x/D4AUAQ</source>
<translation></translation>
<translation type="vanished">Attention : vous avez désactivé la télémétrie USB sur les deux ports USB HID et USB VCP, ce n&apos;est actuellement pas possible</translation>
</message>
</context>
<context>
<name>ConfigCCAttitudeWidget</name>
<message>
<location filename="../../../src/plugins/config/configccattitudewidget.cpp" line="+159"/>
<source>Calibration timed out before receiving required updates.</source>
<translation>Temps d&apos;attente dépassé avant d&apos;avoir reçu les mises à jour demandées.</translation>
</message>
<message>
<location line="+58"/>
<source>http://wiki.openpilot.org/x/44Cf</source>
<translation></translation>
<translation type="vanished">Temps d&apos;attente dépassé avant d&apos;avoir reçu les mises à jour demandées.</translation>
</message>
</context>
<context>
<name>ConfigGadgetWidget</name>
<message>
<location filename="../../../src/plugins/config/configgadgetwidget.cpp" line="+218"/>
<location filename="../../../src/plugins/config/configgadgetwidget.cpp" line="+210"/>
<source>Unsaved changes</source>
<translation>Modifications non sauvegardées</translation>
</message>
@ -11001,13 +10937,27 @@ Bougez le manche %1.</translation>
<translation>Connexions :</translation>
</message>
<message>
<location line="+72"/>
<location line="+74"/>
<source>Disconnect</source>
<translation>Déconnecter</translation>
</message>
<message>
<location line="-81"/>
<location line="+127"/>
<location line="+309"/>
<source>CopterControl Not Supported</source>
<translation>CopterControl Non Supporté</translation>
</message>
<message>
<location line="+1"/>
<source>This version of OpenPilot GCS does not support CC and CC3D boards.
Please use OpenPilot GCS version 15.02.xx instead</source>
<translation>Cette version d&apos;OpenPilot GCS ne supporte pas les cartes CC et CC3D.
Veuillez utiliser OpenPilot GCS version 15.02.xx à la place</translation>
</message>
<message>
<location line="-393"/>
<location line="+129"/>
<source>Connect</source>
<translation>Connecter</translation>
</message>
@ -11295,20 +11245,10 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>Assistant Configuration OpenPilot</translation>
</message>
<message>
<location line="+174"/>
<location line="+170"/>
<source>Controller type: </source>
<translation>Type de contrôleur : </translation>
</message>
<message>
<location line="+3"/>
<source>OpenPilot CopterControl</source>
<translation></translation>
</message>
<message>
<location line="+3"/>
<source>OpenPilot CopterControl 3D</source>
<translation></translation>
</message>
<message>
<location line="+3"/>
<source>OpenPilot Revolution</source>
@ -11610,7 +11550,7 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>Échoué !</translation>
</message>
<message>
<location line="+141"/>
<location line="+100"/>
<source>Writing External Mag sensor settings</source>
<translation>Écriture paramètres Compas Externe</translation>
</message>
@ -11630,7 +11570,7 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>Écriture paramètres matériels</translation>
</message>
<message>
<location line="+196"/>
<location line="+192"/>
<location line="+32"/>
<location line="+37"/>
<source>Writing actuator settings</source>
@ -11652,7 +11592,6 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>Écriture paramètres d&apos;ajustement gyro et accéléromètres</translation>
</message>
<message>
<location line="+14"/>
<location line="+12"/>
<source>Writing board settings</source>
<translation>Écriture paramètres carte</translation>
@ -11892,12 +11831,12 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
</message>
<message>
<location line="+30"/>
<location line="+484"/>
<location line="+479"/>
<source>Device</source>
<translation>Périphérique</translation>
</message>
<message>
<location line="-403"/>
<location line="-398"/>
<source>http://wiki.openpilot.org/display/Doc/Erase+board+settings</source>
<translation></translation>
</message>
@ -11907,20 +11846,20 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>En cours d&apos;exécution</translation>
</message>
<message>
<location line="+255"/>
<location line="+250"/>
<source>Timed out while waiting for all boards to be disconnected!</source>
<translatorcomment>Bof</translatorcomment>
<translation type="unfinished">Expiration du temps d&apos;attente de la déconnexion de toutes les cartes !</translation>
</message>
<message>
<location line="-193"/>
<location line="+208"/>
<location line="-188"/>
<location line="+203"/>
<source>Timed out while waiting for a board to be connected!</source>
<translatorcomment>Bof</translatorcomment>
<translation type="unfinished">Expiration du temps dans l&apos;attente d&apos;une connexion de carte !</translation>
</message>
<message>
<location line="-238"/>
<location line="-233"/>
<source>To upgrade the OPLinkMini board please disconnect it from the USB port, press the Upgrade again button and follow instructions on screen.</source>
<translation>Pour mettre à jour une carte OPLinkMini veuillez la déconnecterdu port USB, appuyez à nouveau sur le bouton de mise à jour et suivez les instructions à l&apos;écran.</translation>
</message>
@ -11936,7 +11875,7 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>Échec du passage en mode bootloader.</translation>
</message>
<message>
<location line="+28"/>
<location line="+24"/>
<source>Unknown board id &apos;0x%1&apos;</source>
<translation>Carte inconnue id &apos;0x%1&apos;</translation>
</message>
@ -11966,7 +11905,7 @@ Double clic sur la légende ou le tracé pour afficher/cacher la légende.</tran
<translation>Échec du téléversement de la description firmware.</translation>
</message>
<message>
<location line="+17"/>
<location line="+16"/>
<source>Timed out while booting.</source>
<translation>Expiration du temps d&apos;attente lors du démarrage.</translation>
</message>
@ -12132,7 +12071,7 @@ La carte sera redémarrée et tous les paramètres effacés.</translation>
<translation>Veuillez vérifier que la carte n&apos;est pas armée et appuyez à nouveau Réinitialiser pour continuer ou allumer/éteindre la carte pour forcer la réinitialisation.</translation>
</message>
<message>
<location line="-465"/>
<location line="-460"/>
<source></source>
<translation>Annuler</translation>
</message>
@ -13669,12 +13608,12 @@ p, li { white-space: pre-wrap; }
</message>
<message>
<location line="+3"/>
<location line="+261"/>
<location line="+257"/>
<source>%1 Hz</source>
<translation>%1 Hz</translation>
</message>
<message>
<location line="-201"/>
<location line="-197"/>
<source>The actuator module is in an error state. This can also occur because there are no inputs. Please fix these before testing outputs.</source>
<translation>Le module actionneur est en erreur. Cela peut aussi arriver lorsque il n&apos;y a pas d&apos;entrées (Rx radiocommande). Veuillez corriger cela avant de tester les sorties.</translation>
</message>
@ -13689,7 +13628,7 @@ p, li { white-space: pre-wrap; }
<translation>Vous pouvez enregistrer vos changements des réglages de neutre.</translation>
</message>
<message>
<location line="+219"/>
<location line="+215"/>
<source>http://wiki.openpilot.org/x/WIGf</source>
<translation></translation>
</message>
@ -13718,7 +13657,7 @@ En utilisant &quot;PPM_PIN6+OneShot&quot; la banque 4 (sortie 6) doit être rég
<translation>Désactivé</translation>
</message>
<message>
<location line="+226"/>
<location line="+232"/>
<source>http://wiki.openpilot.org/x/GgDBAQ</source>
<translation></translation>
</message>
@ -13811,7 +13750,7 @@ En utilisant &quot;PPM_PIN6+OneShot&quot; la banque 4 (sortie 6) doit être rég
<context>
<name>DeviceWidget</name>
<message>
<location filename="../../../src/plugins/uploader/devicewidget.cpp" line="+81"/>
<location filename="../../../src/plugins/uploader/devicewidget.cpp" line="+86"/>
<source>Device ID: </source>
<translation>ID Périphérique : </translation>
</message>
@ -13821,7 +13760,7 @@ En utilisant &quot;PPM_PIN6+OneShot&quot; la banque 4 (sortie 6) doit être rég
<translation>Révision Matériel :</translation>
</message>
<message>
<location line="+34"/>
<location line="+22"/>
<source>Flash access: </source>
<translation>Accès flash : </translation>
</message>
@ -13906,7 +13845,7 @@ En utilisant &quot;PPM_PIN6+OneShot&quot; la banque 4 (sortie 6) doit être rég
<translation>Firmware chargé : </translation>
</message>
<message>
<location line="+227"/>
<location line="+226"/>
<location line="+15"/>
<source>Select firmware file</source>
<translation>Sélectionner le fichier de firmware</translation>
@ -13935,7 +13874,7 @@ En utilisant &quot;PPM_PIN6+OneShot&quot; la banque 4 (sortie 6) doit être rég
<translation>CRC Firmware : </translation>
</message>
<message>
<location line="+33"/>
<location line="+23"/>
<source>BL version: </source>
<translation>Version BL : </translation>
</message>
@ -14831,7 +14770,7 @@ Des valeurs trop élevées pour les contrôles principaux peuvent entraîner des
et même conduire au crash. A utiliser avec prudence.</translation>
</message>
<message>
<location filename="../../../src/plugins/config/inputchannelform.cpp" line="+172"/>
<location filename="../../../src/plugins/config/inputchannelform.cpp" line="+175"/>
<source>Chan %1</source>
<translation>Canal %1</translation>
</message>
@ -16399,7 +16338,7 @@ Il est suggéré que si cela est une première configuration de votre contrôleu
<translation>&amp;Ne pas afficher ce message à nouveau.</translation>
</message>
<message>
<location line="+148"/>
<location line="+141"/>
<source>Unknown</source>
<translation>Inconnu</translation>
</message>

View File

@ -55,10 +55,10 @@ QVector<MapType::Types> AllLayersOfType::GetAllLayersOfType(const MapType::Types
}
break;
case MapType::ArcGIS_MapsLT_Map_Hybrid:
case MapType::OpenStreetMapSurferTerrain:
{
types.append(MapType::ArcGIS_MapsLT_OrtoFoto);
types.append(MapType::ArcGIS_MapsLT_Map_Labels);
types.append(MapType::OpenStreetMapSurfer);
types.append(MapType::OpenStreetMapSurferTerrain);
}
break;

View File

@ -9,5 +9,6 @@
// #define DEBUG_URLFACTORY
// #define DEBUG_MEMORY_CACHE
// #define DEBUG_GetGeocoderFromCache
// #define DEBUG_TIMINGS
// #define DEBUG_CORE
#endif // DEBUGHEADER_H

View File

@ -52,35 +52,15 @@ public:
OpenStreetMapSurfer = 34,
OpenStreetMapSurferTerrain = 35,
BingMap = 444,
BingSatellite = 555,
BingHybrid = 666,
BingMap = 444,
BingSatellite = 555,
BingHybrid = 666,
ArcGIS_Map = 777,
ArcGIS_Satellite = 788,
ArcGIS_ShadedRelief = 799,
ArcGIS_Terrain = 811,
ArcGIS_Map = 777,
ArcGIS_Satellite = 788,
ArcGIS_ShadedRelief = 799,
ArcGIS_Terrain = 811,
// use these numbers to clean up old stuff
// ArcGIS_MapsLT_Map_Old= 877,
// ArcGIS_MapsLT_OrtoFoto_Old = 888,
// ArcGIS_MapsLT_Map_Labels_Old = 890,
// ArcGIS_MapsLT_Map_Hybrid_Old = 899,
// ArcGIS_MapsLT_Map=977,
// ArcGIS_MapsLT_OrtoFoto=988,
// ArcGIS_MapsLT_Map_Labels=990,
// ArcGIS_MapsLT_Map_Hybrid=999,
// ArcGIS_MapsLT_Map=978,
// ArcGIS_MapsLT_OrtoFoto=989,
// ArcGIS_MapsLT_Map_Labels=991,
// ArcGIS_MapsLT_Map_Hybrid=998,
ArcGIS_MapsLT_Map = 1000,
ArcGIS_MapsLT_OrtoFoto = 1001,
ArcGIS_MapsLT_Map_Labels = 1002,
ArcGIS_MapsLT_Map_Hybrid = 1003,
PergoTurkeyMap = 2001,
SigPacSpainMap = 3001,
GoogleMapKorea = 4001,
@ -88,7 +68,7 @@ public:
GoogleLabelsKorea = 4003,
GoogleHybridKorea = 4005,
YandexMapRu = 5000
Statkart_Topo2 = 5500
};
static QString StrByType(Types const & value)
{

View File

@ -40,6 +40,7 @@ OPMaps *OPMaps::Instance()
OPMaps::OPMaps() : RetryLoadTile(2), useMemoryCache(true)
{
accessmode = AccessMode::ServerAndCache;
// Need to figure out why this is *fixed* to Portugese. This casues pt-PT to be sent with every Google request
Language = LanguageType::PortuguesePortugal;
LanguageStr = LanguageType().toShortString(Language);
Cache::Instance();
@ -100,15 +101,15 @@ QByteArray OPMaps::GetImageFrom(const MapType::Types &type, const Point &pos, co
}
}
if (accessmode != AccessMode::CacheOnly) {
QEventLoop q;
QNetworkReply *reply;
QNetworkRequest qheader;
QNetworkAccessManager network;
QTimer tT;
tT.setSingleShot(true);
connect(&network, SIGNAL(finished(QNetworkReply *)),
&q, SLOT(quit()));
connect(&tT, SIGNAL(timeout()), &q, SLOT(quit()));
// This SSL Hack is half assed... technically bad *security* joojoo.
// Required due to a QT5 bug on linux and Mac
//
QSslConfiguration conf = qheader.sslConfiguration();
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
qheader.setSslConfiguration(conf);
network.setProxy(Proxy);
#ifdef DEBUG_GMAPS
qDebug() << "Try Tile from the Internet";
@ -119,8 +120,7 @@ QByteArray OPMaps::GetImageFrom(const MapType::Types &type, const Point &pos, co
QString url = MakeImageUrl(type, pos, zoom, LanguageStr);
#ifdef DEBUG_TIMINGS
qDebug() << "opmaps after make image url" << time.elapsed();
#endif // url "http://vec02.maps.yandex.ru/tiles?l=map&v=2.10.2&x=7&y=5&z=3" string
// "http://map3.pergo.com.tr/tile/02/000/000/007/000/000/002.png"
#endif // url can be hard coded for debugging purposes
qheader.setUrl(QUrl(url));
qheader.setRawHeader("User-Agent", UserAgent);
qheader.setRawHeader("Accept", "*/*");
@ -145,6 +145,14 @@ QByteArray OPMaps::GetImageFrom(const MapType::Types &type, const Point &pos, co
}
break;
case MapType::GoogleMapKorea:
case MapType::GoogleSatelliteKorea:
case MapType::GoogleLabelsKorea:
{
qheader.setRawHeader("Referrer", "http://maps.google.co.kr/");
}
break;
case MapType::BingHybrid:
case MapType::BingMap:
case MapType::BingSatellite:
@ -153,15 +161,6 @@ QByteArray OPMaps::GetImageFrom(const MapType::Types &type, const Point &pos, co
}
break;
case MapType::ArcGIS_MapsLT_Map_Labels:
case MapType::ArcGIS_MapsLT_Map:
case MapType::ArcGIS_MapsLT_OrtoFoto:
case MapType::ArcGIS_MapsLT_Map_Hybrid:
{
qheader.setRawHeader("Referrer", "http://www.maps.lt/map_beta/");
}
break;
case MapType::OpenStreetMapSurfer:
case MapType::OpenStreetMapSurferTerrain:
{
@ -175,35 +174,35 @@ QByteArray OPMaps::GetImageFrom(const MapType::Types &type, const Point &pos, co
qheader.setRawHeader("Referrer", "http://www.openstreetmap.org/");
}
break;
case MapType::YandexMapRu:
case MapType::Statkart_Topo2:
{
qheader.setRawHeader("Referrer", "http://maps.yandex.ru/");
qheader.setRawHeader("Referrer", "http://www.norgeskart.no/");
}
break;
default:
break;
}
qDebug() << "Timeout is " << Timeout;
reply = network.get(qheader);
tT.start(Timeout);
q.exec();
qDebug() << "reply " << reply;
if (!tT.isActive()) {
errorvars.lock();
++diag.timeouts;
errorvars.unlock();
return ret;
QTime time;
while ((!(reply->isFinished()) || (time.elapsed() > (6 * Timeout)))) {
QCoreApplication::processEvents(QEventLoop::AllEvents);
}
tT.stop();
if ((reply->error() != QNetworkReply::NoError)) {
errorvars.lock();
++diag.networkerrors;
errorvars.unlock();
reply->deleteLater();
qDebug() << "Finished?" << reply->error() << " abort?" << (time.elapsed() > Timeout * 6);
// If you are seeing Error 6 here you are dealing with a QT SSL Bug!!!
if ((reply->error() != QNetworkReply::NoError) | (time.elapsed() > Timeout * 6)) {
qDebug() << "reply error: " << reply->error() << " see table at - http://doc.qt.io/qt-5/qnetworkreply.html";
return ret;
}
ret = reply->readAll();
// qDebug() << "ret " << ret;
reply->deleteLater(); // TODO can't this be global??
if (ret.isEmpty()) {
#ifdef DEBUG_GMAPS
qDebug() << "Invalid Tile";

View File

@ -28,12 +28,14 @@
namespace core {
const QString ProviderStrings::levelsForSigPacSpainMap[] = { "0", "1", "2", "3", "4",
"MTNSIGPAC",
"MTN2000", "MTN2000", "MTN2000", "MTN2000", "MTN2000",
"MTN200", "MTN200", "MTN200",
"MTN25", "MTN25",
"ORTOFOTOS", "ORTOFOTOS", "ORTOFOTOS", "ORTOFOTOS" };
const QString ProviderStrings::levelsForSigPacSpainMap[] = {
// "0", "1", "2", "3", "4",
"MTNSIGPAC",
"MTN2000", "MTN2000", "MTN2000", "MTN2000", "MTN2000",
"MTN200", "MTN200", "MTN200",
"MTN25", "MTN25",
"ORTOFOTOS","ORTOFOTOS", "ORTOFOTOS", "ORTOFOTOS"
};
ProviderStrings::ProviderStrings()
{
@ -59,14 +61,11 @@ ProviderStrings::ProviderStrings()
/// Google Maps API generated using http://greatmaps.codeplex.com/
/// from http://code.google.com/intl/en-us/apis/maps/signup.html
/// </summary>
GoogleMapsAPIKey = "ABQIAAAAWaQgWiEBF3lW97ifKnAczhRAzBk5Igf8Z5n2W3hNnMT0j2TikxTLtVIGU7hCLLHMAuAMt-BO5UrEWA";
GoogleMapsAPIKey = "ABQIAAAAWaQgWiEBF3lW97ifKnAczhRAzBk5Igf8Z5n2W3hNnMT0j2TikxTLtVIGU7hCLLHMAuAMt-BO5UrEWA";
// BingMaps
VersionBingMaps = "563";
VersionBingMaps = "563";
// YandexMap
VersionYandexMap = "2.16.0";
// VersionYandexSatellite = "1.19.0";
////////////////////
/// <summary>

View File

@ -63,10 +63,6 @@ public:
// BingMaps
QString VersionBingMaps;
// YandexMap
QString VersionYandexMap;
/// <summary>
/// Bing Maps Customer Identification, more info here
/// http://msdn.microsoft.com/en-us/library/bb924353.aspx

View File

@ -73,6 +73,10 @@ QString UrlFactory::TileXYToQuadKey(const int &tileX, const int &tileY, const in
}
int UrlFactory::GetServerNum(const Point &pos, const int &max) const
{
#ifdef DEBUG_URLFACTORY
qDebug() << QString("%1").arg(pos.X());
qDebug() << QString("%1").arg(pos.Y());
#endif
return (pos.X() + 2 * pos.Y()) % max;
}
void UrlFactory::setIsCorrectGoogleVersions(bool value)
@ -98,12 +102,12 @@ void UrlFactory::TryCorrectGoogleVersions()
if (CorrectGoogleVersions && !IsCorrectGoogleVersions()) {
QNetworkReply *reply;
QNetworkRequest qheader;
// This SSL Hack is half assed... technically bad *security* joojoo.
// Required due to a QT5 bug on linux and Mac
//
QSslConfiguration conf = qheader.sslConfiguration();
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
qheader.setSslConfiguration(conf);
// This SSL Hack is half assed... technically bad *security* joojoo.
// Required due to a QT5 bug on linux and Mac
//
QSslConfiguration conf = qheader.sslConfiguration();
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
qheader.setSslConfiguration(conf);
QNetworkAccessManager network;
QEventLoop q;
QTimer tT;
@ -116,9 +120,9 @@ void UrlFactory::TryCorrectGoogleVersions()
qDebug() << "Correct GoogleVersion";
#endif // DEBUG_URLFACTORY
// setIsCorrectGoogleVersions(true);
// QString url = "https://www.google.com/maps/@0,-0,7z?dg=dbrw&newdg=1";
// We need to switch to the Above url... the /lochp method will be depreciated soon
// https://productforums.google.com/forum/#!category-topic/maps/navigation/k6EFrp7J7Jk
// QString url = "https://www.google.com/maps/@0,-0,7z?dg=dbrw&newdg=1";
// We need to switch to the Above url... the /lochp method will be depreciated soon
// https://productforums.google.com/forum/#!category-topic/maps/navigation/k6EFrp7J7Jk
QString url = "https://www.google.com/lochp";
qheader.setUrl(QUrl(url));
@ -139,7 +143,7 @@ void UrlFactory::TryCorrectGoogleVersions()
QString html = QString(reply->readAll());
#ifdef DEBUG_URLFACTORY
qDebug() << html;
qDebug() << html;
#endif // DEBUG_URLFACTORY
QRegExp reg("\"*https://mts0.google.com/vt/lyrs=m@(\\d*)", Qt::CaseInsensitive);
@ -171,7 +175,9 @@ void UrlFactory::TryCorrectGoogleVersions()
VersionGoogleSatelliteKorea = VersionGoogleSatellite;
VersionGoogleSatelliteChina = "s@" + VersionGoogleSatellite;
#ifdef DEBUG_URLFACTORY
qDebug() << "TryCorrectGoogleVersions, VersionGoogleSatellite: " << VersionGoogleSatellite;
#endif // DEBUG_URLFACTORY
}
reg = QRegExp("\"*https://mts0.google.com/vt/lyrs=t@(\\d*),r@(\\d*)", Qt::CaseInsensitive);
@ -225,7 +231,9 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
QString sec2 = ""; // after &zoom=...
GetSecGoogleWords(pos, sec1, sec2);
TryCorrectGoogleVersions();
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabels).arg(language).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
#endif
return QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabels).arg(language).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
}
break;
@ -276,7 +284,9 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
TryCorrectGoogleVersions();
// http://mt0.google.cn/vt/v=w2t.110&hl=zh-CN&gl=cn&x=12&y=6&z=4&s=Ga
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://%1%2.google.cn/%3/imgtp=png32&lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsChina).arg("zh-CN").arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
#endif
return QString("http://%1%2.google.cn/%3/imgtp=png32&lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsChina).arg("zh-CN").arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
}
break;
@ -290,7 +300,7 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
TryCorrectGoogleVersions();
// http://mt0.google.cn/vt/v=w2p.110&hl=zh-CN&gl=cn&x=12&y=6&z=4&s=Ga
return QString("http://%1%2.google.com/%3/lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleTerrainChina).arg("zh-CN").arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
return QString("http://%1%2.google.cn/%3/lyrs=%4&hl=%5&gl=cn&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleTerrainChina).arg("zh-CN").arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
}
break;
case MapType::GoogleMapKorea:
@ -304,10 +314,10 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
// https://mts0.google.com/vt/lyrs=m@224000000&hl=ko&gl=KR&src=app&x=107&y=50&z=7&s=Gal
// https://mts0.google.com/mt/v=kr1.11&hl=ko&x=109&y=49&z=7&s=
qDebug() << QString("https://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleMapKorea).arg(language).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
QString ret = QString("https://%1%2.google.com/%3/lyrs=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleMapKorea).arg(language).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
return ret;
#ifdef DEBUG_URLFACTORY
qDebug() << QString("https://%1%2.google.com/%3/v=%4&hl=ko&gl=KR&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleMapKorea).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
#endif
return QString("https://%1%2.google.com/%3/v=%4&hl=ko&gl=KR&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleMapKorea).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
}
break;
case MapType::GoogleSatelliteKorea:
@ -320,20 +330,25 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
TryCorrectGoogleVersions();
// http://khm1.google.co.kr/kh/v=54&x=109&y=49&z=7&s=
#ifdef DEBUG_URLFACTORY
qDebug() << QString("https://%1%2.google.co.kr/%3/v=%4&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleSatelliteKorea).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
#endif
return QString("https://%1%2.google.co.kr/%3/v=%4&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleSatelliteKorea).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
}
break;
case MapType::GoogleLabelsKorea:
{
QString server = "mts";
QString request = "mt";
QString request = "vt";
QString sec1 = ""; // after &x=...
QString sec2 = ""; // after &zoom=...
GetSecGoogleWords(pos, sec1, sec2);
TryCorrectGoogleVersions();
// https://mts1.gmaptiles.co.kr/mt/v=kr1t.11&hl=lt&x=109&y=50&z=7&s=G
return QString("https://%1%2.gmaptiles.co.kr/%3/v=%4&hl=%5&x=%6%7&y=%8&z=%9&s=%10").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsKorea).arg(language).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
#ifdef DEBUG_URLFACTORY
qDebug() << QString("https://%1%2.google.com/%3/v=%4&hl=ko&gl=KR&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsKorea).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
#endif
return QString("https://%1%2.google.com/%3/v=%4&hl=ko&gl=KR&x=%5%6&y=%7&z=%8&s=%9").arg(server).arg(GetServerNum(pos, 4)).arg(request).arg(VersionGoogleLabelsKorea).arg(pos.X()).arg(sec1).arg(pos.Y()).arg(zoom).arg(sec2);
}
break;
// *.yimg.com has been depreciated. "Here" is what Yahoo uses now. https://developer.here.com/rest-apis/documentation/enterprise-map-tile/topics/request-constructing.html
@ -347,24 +362,34 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
case MapType::OpenStreetOsm:
{
char letter = "abc"[GetServerNum(pos, 3)];
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://%1.tile.openstreetmap.org/%2/%3/%4.png").arg(letter).arg(zoom).arg(pos.X()).arg(pos.Y());
#endif
return QString("http://%1.tile.openstreetmap.org/%2/%3/%4.png").arg(letter).arg(zoom).arg(pos.X()).arg(pos.Y());
}
break;
case MapType::OpenStreetMapSurfer:
{
// http://tiles1.mapsurfer.net/tms_r.ashx?x=37378&y=20826&z=16
// http://wiki.openstreetmap.org/wiki/MapSurfer.NET -> Mapsurfernet.com -> dead
// http://wiki.openstreetmap.org/wiki/OpenMapSurfer mentions: http://korona.geog.uni-heidelberg.de
qDebug() << QString("http://tiles1.mapsurfer.net/tms_r.ashx?x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
return QString("http://tiles1.mapsurfer.net/tms_r.ashx?x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
// Searched Google for tms_r.ashx and found korona.geog.uni-heidelberg.de has a service on port 8001
// http://129.206.74.245:8001/tms_r.ashx?x=37378&y=20826&z=16
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://129.206.74.245:8001/tms_r.ashx?x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
#endif
return QString("http://129.206.74.245:8001/tms_r.ashx?x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
}
break;
case MapType::OpenStreetMapSurferTerrain:
{
// http://tiles2.mapsurfer.net/tms_t.ashx?x=9346&y=5209&z=14
// http://korona.geog.uni-heidelberg.de/tiles/asterh/x=501&y=388&z=10
qDebug() << QString("http://tiles2.mapsurfer.net/tms_t.ashx?x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
return QString("http://tiles2.mapsurfer.net/tms_t.ashx?x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://korona.geog.uni-heidelberg.de/tiles/asterh/x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
#endif
return QString("http://korona.geog.uni-heidelberg.de/tiles/asterh/x=%1&y=%2&z=%3").arg(pos.X()).arg(pos.Y()).arg(zoom);
}
break;
case MapType::BingMap:
@ -403,7 +428,9 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
{
// http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_ShadedRelief_World_2D/MapServer/tile/1/0/1.jpg
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.Y()).arg(pos.X());
#endif
return QString("http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.Y()).arg(pos.X());
}
break;
@ -414,87 +441,23 @@ QString UrlFactory::MakeImageUrl(const MapType::Types &type, const Point &pos, c
return QString("http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer/tile/%1/%2/%3").arg(zoom).arg(pos.Y()).arg(pos.X());
}
break;
case MapType::ArcGIS_MapsLT_OrtoFoto:
{
// http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L02/R0000001b/C00000028.jpg
// http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto/MapServer/tile/0/9/13
// return string.Format("http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L{0:00}/R{1:x8}/C{2:x8}.jpg", zoom, pos.Y(), pos.X());
// http://dc1.maps.lt/cache/mapslt_ortofoto_512/map/_alllayers/L03/R0000001c/C00000029.jpg
// return string.Format("http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto/MapServer/tile/{0}/{1}/{2}", zoom, pos.Y(), pos.X());
// http://dc1.maps.lt/cache/mapslt_ortofoto_512/map/_alllayers/L03/R0000001d/C0000002a.jpg
// TODO verificar
qDebug() << QString("http://dc1.maps.lt/cache/mapslt_ortofoto/map/_alllayers/L%1/R%2/C%3.jpg").arg(zoom, 2, 10, (QChar)'0').arg(pos.Y(), 8, 16, (QChar)'0').arg(pos.X(), 8, 16, (QChar)'0');
return QString("http://dc1.maps.lt/cache/mapslt_ortofoto/map/_alllayers/L%1/R%2/C%3.jpg").arg(zoom, 2, 10, (QChar)'0').arg(pos.Y(), 8, 16, (QChar)'0').arg(pos.X(), 8, 16, (QChar)'0');
}
break;
case MapType::ArcGIS_MapsLT_Map:
{
// http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L02/R0000001b/C00000028.jpg
// http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto/MapServer/tile/0/9/13
// return string.Format("http://www.maps.lt/ortofoto/mapslt_ortofoto_vector_512/map/_alllayers/L{0:00}/R{1:x8}/C{2:x8}.jpg", zoom, pos.Y(), pos.X());
// http://arcgis.maps.lt/ArcGIS/rest/services/mapslt/MapServer/tile/7/1162/1684.png
// http://dc1.maps.lt/cache/mapslt_512/map/_alllayers/L03/R0000001b/C00000029.png
// TODO verificar
// http://dc1.maps.lt/cache/mapslt/map/_alllayers/L02/R0000001c/C00000029.png
qDebug() << QString("http://dc1.maps.lt/cache/mapslt/map/_alllayers/L%1/R%2/C%3.png").arg(zoom, 2, 10, (QChar)'0').arg(pos.Y(), 8, 16, (QChar)'0').arg(pos.X(), 8, 16, (QChar)'0');
return QString("http://dc1.maps.lt/cache/mapslt/map/_alllayers/L%1/R%2/C%3.png").arg(zoom, 2, 10, (QChar)'0').arg(pos.Y(), 8, 16, (QChar)'0').arg(pos.X(), 8, 16, (QChar)'0');
}
break;
case MapType::ArcGIS_MapsLT_Map_Labels:
{
// http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto_overlay/MapServer/tile/0/9/13
// return string.Format("http://arcgis.maps.lt/ArcGIS/rest/services/mapslt_ortofoto_overlay/MapServer/tile/{0}/{1}/{2}", zoom, pos.Y(), pos.X());
// http://dc1.maps.lt/cache/mapslt_ortofoto_overlay_512/map/_alllayers/L03/R0000001d/C00000029.png
// TODO verificar
qDebug() << QString("http://dc1.maps.lt/cache/mapslt_ortofoto_overlay/map/_alllayers/L%1/R%2/C%3.png").arg(zoom, 2, 10, (QChar)'0').arg(pos.Y(), 8, 16, (QChar)'0').arg(pos.X(), 8, 16, (QChar)'0');
return QString("http://dc1.maps.lt/cache/mapslt_ortofoto_overlay/map/_alllayers/L%1/R%2/C%3.png").arg(zoom, 2, 10, (QChar)'0').arg(pos.Y(), 8, 16, (QChar)'0').arg(pos.X(), 8, 16, (QChar)'0');
}
break;
case MapType::PergoTurkeyMap:
{
// http://{domain}/{layerName}/{zoomLevel}/{first3LetterOfTileX}/{second3LetterOfTileX}/{third3LetterOfTileX}/{first3LetterOfTileY}/{second3LetterOfTileY}/{third3LetterOfTileXY}.png
// http://map3.pergo.com.tr/tile/00/000/000/001/000/000/000.png
// That means: Zoom Level: 0 TileX: 1 TileY: 0
// http://domain/tile/14/000/019/371/000/011/825.png
// That means: Zoom Level: 14 TileX: 19371 TileY:11825
// string x = pos.X().ToString("000000000").Insert(3, "/").Insert(7, "/"); // - 000/000/001
// string y = pos.Y().ToString("000000000").Insert(3, "/").Insert(7, "/"); // - 000/000/000
QString x = QString("%1").arg(QString::number(pos.X()), 9, (QChar)'0');
x.insert(3, "/").insert(7, "/");
QString y = QString("%1").arg(QString::number(pos.Y()), 9, (QChar)'0');
y.insert(3, "/").insert(7, "/");
// "http://map03.pergo.com.tr/tile/2/000/000/003/000/000/002.png"
// This has changed map03 does not exist. (neither does map3) Servers have changed to map1 and map2?
return QString("http://map%1.pergo.com.tr/tile/%2/%3/%4.png").arg(GetServerNum(pos, 4)).arg(zoom, 2, 10, (QChar)'0').arg(x).arg(y);
}
break;
case MapType::SigPacSpainMap:
{
// http://sigpac.magrama.es/fega/h5visor/ is new server location
qDebug() << QString("http://sigpac.mapa.es/kmlserver/raster/%1@3785/%2.%3.%4.img").arg(levelsForSigPacSpainMap[zoom]).arg(zoom).arg(pos.X()).arg((2 << (zoom - 1)) - pos.Y() - 1);
return QString("http://sigpac.magrama.es/SDG/%1@3785/%2.%3.%4.img").arg(levelsForSigPacSpainMap[zoom]).arg(zoom).arg(pos.X()).arg((2 << (zoom - 1)) - pos.Y() - 1);
// http://sigpac.magrama.es/fega/h5visor/ is new server location
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://sigpac.magrama.es/SDG/raster/%1@3785/%2.%3.%4.img").arg(levelsForSigPacSpainMap[zoom]).arg(zoom).arg(pos.X()).arg((2 << (zoom - 1)) - pos.Y() - 1);
#endif
return QString("http://sigpac.magrama.es/SDG/raster/%1@3785/%2.%3.%4.img").arg(levelsForSigPacSpainMap[zoom]).arg(zoom).arg(pos.X()).arg((2 << (zoom - 1)) - pos.Y() - 1);
}
break;
case MapType::YandexMapRu:
case MapType::Statkart_Topo2:
{
/*
Used "oldmaps" to determine map types - https://old.maps.yandex.ru/?ll=-83.110960%2C40.091250&spn=7.745361%2C6.015476&z=7&l=map
map: 'https:\/\/vec0%d.maps.yandex.net\/tiles?l=map&%c&%l',
sat: 'https:\/\/sat0%d.maps.yandex.net\/tiles?l=sat&%c&%l',
skl: 'https:\/\/vec0%d.maps.yandex.net\/tiles?l=skl&%c&%l',
*/
QString server = "vec";
return QString("http://%1").arg(server) + QString("0%2.maps.yandex.net/tiles?l=map&v=%3&x=%4&y=%5&z=%6").arg(GetServerNum(pos, 4) + 1).arg(VersionYandexMap).arg(pos.X()).arg(pos.Y()).arg(zoom);
// Satllite maps are poor quality, but available.
// QString server = "sat";
// return QString("http://%1").arg(server) + QString("0%2.maps.yandex.net/tiles?l=sat&v=%3&x=%4&y=%5&z=%6").arg(GetServerNum(pos, 4) + 1).arg(VersionYandexMap).arg(pos.X()).arg(pos.Y()).arg(zoom);
#ifdef DEBUG_URLFACTORY
qDebug() << QString("http://opencache.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo2&zoom=%1&x=%2&y=%3").arg(zoom).arg(pos.X()).arg(pos.Y());
#endif
return QString("http://opencache.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo2&zoom=%1&x=%2&y=%3").arg(zoom).arg(pos.X()).arg(pos.Y());
}
break;
default:
break;
@ -515,12 +478,16 @@ void UrlFactory::GetSecGoogleWords(const Point &pos, QString &sec1, QString &sec
QString UrlFactory::MakeGeocoderUrl(QString keywords)
{
QString key = keywords.replace(' ', '+');
// CSV output has been depreciated. API key is no longer needed.
// CSV output has been depreciated. API key is no longer needed.
return QString("https://maps.googleapis.com/maps/api/geocode/xml?sensor=false&address=%1").arg(key);
}
QString UrlFactory::MakeReverseGeocoderUrl(internals::PointLatLng &pt, const QString &language)
{
// CSV output has been depreciated. API key is no longer needed.
#ifdef DEBUG_URLFACTORY
qDebug() << "Language: " << language;
#endif
// CSV output has been depreciated. API key is no longer needed.
return QString("https://maps.googleapis.com/maps/api/geocode/xml?latlng=%1,%2").arg(QString::number(pt.Lat())).arg(QString::number(pt.Lng()));
}
internals::PointLatLng UrlFactory::GetLatLngFromGeodecoder(const QString &keywords, QString &status)
@ -530,7 +497,7 @@ internals::PointLatLng UrlFactory::GetLatLngFromGeodecoder(const QString &keywor
QString latxml;
QString lonxml;
//QString status;
// QString status;
internals::PointLatLng UrlFactory::GetLatLngFromGeocoderUrl(const QString &url, const bool &useCache, QString &status)
{
@ -588,83 +555,77 @@ internals::PointLatLng UrlFactory::GetLatLngFromGeocoderUrl(const QString &url,
geo = reply->readAll();
#ifdef DEBUG_URLFACTORY
qDebug() << "GetLatLngFromGeocoderUrl:Reply ok";
qDebug() << geo; // This is the response from the geocode request (no longer in CSV)
qDebug() << geo; // This is the response from the geocode request (no longer in CSV)
#endif // DEBUG_URLFACTORY
// This is SOOOO horribly hackish, code duplication needs to go. Needed a quick fix.
QXmlStreamReader reader(geo);
while(!reader.atEnd())
{
reader.readNext();
// This is SOOOO horribly hackish, code duplication needs to go. Needed a quick fix.
QXmlStreamReader reader(geo);
while (!reader.atEnd()) {
reader.readNext();
if(reader.isStartElement())
{
if(reader.name() == "lat")
{
reader.readNext();
if(reader.atEnd())
break;
if (reader.isStartElement()) {
if (reader.name() == "lat") {
reader.readNext();
if (reader.atEnd()) {
break;
}
if(reader.isCharacters())
{
QString text = reader.text().toString();
qDebug() << text;
latxml = text;
break;
}
}
}
if (reader.isCharacters()) {
QString text = reader.text().toString();
#ifdef DEBUG_URLFACTORY
qDebug() << text;
#endif
latxml = text;
break;
}
}
}
}
}
while (!reader.atEnd()) {
reader.readNext();
while(!reader.atEnd())
{
reader.readNext();
if (reader.isStartElement()) {
if (reader.name() == "lng") {
reader.readNext();
if (reader.atEnd()) {
break;
}
if(reader.isStartElement())
{
if(reader.name() == "lng")
{
reader.readNext();
if(reader.atEnd())
break;
if (reader.isCharacters()) {
QString text = reader.text().toString();
#ifdef DEBUG_URLFACTORY
qDebug() << text;
#endif
lonxml = text;
break;
}
}
}
}
if(reader.isCharacters())
{
QString text = reader.text().toString();
qDebug() << text;
lonxml = text;
break;
}
}
}
QXmlStreamReader reader2(geo);
while (!reader2.atEnd()) {
reader2.readNext();
}
if (reader2.isStartElement()) {
if (reader2.name() == "status") {
reader2.readNext();
if (reader2.atEnd()) {
break;
}
QXmlStreamReader reader2(geo);
while(!reader2.atEnd())
{
reader2.readNext();
if(reader2.isStartElement())
{
if(reader2.name() == "status")
{
reader2.readNext();
if(reader2.atEnd())
break;
if(reader2.isCharacters())
{
QString text = reader2.text().toString();
qDebug() << text;
status = text;
break;
}
}
}
}
if (reader2.isCharacters()) {
QString text = reader2.text().toString();
#ifdef DEBUG_URLFACTORY
qDebug() << text;
#endif
status = text;
break;
}
}
}
}
// cache geocoding
if (useCache && geo.startsWith("200")) {
@ -676,35 +637,31 @@ internals::PointLatLng UrlFactory::GetLatLngFromGeocoderUrl(const QString &url,
{
if (status == "OK") {
double lat = QString(latxml).toDouble();
double lng = QString(lonxml).toDouble();
if (status == "OK") {
double lat = QString(latxml).toDouble();
double lng = QString(lonxml).toDouble();
ret = internals::PointLatLng(lat, lng);
ret = internals::PointLatLng(lat, lng);
#ifdef DEBUG_URLFACTORY
qDebug() << "Status is: " << status;
qDebug() << "Lat=" << lat << " Lng=" << lng;
#endif // DEBUG_URLFACTORY
}
else if (status == "ZERO_RESULTS") {
qDebug() << "No results";
}
else if (status == "OVER_QUERY_LIMIT") {
qDebug() << "You are over quota on queries";
}
else if (status == "REQUEST_DENIED") {
qDebug() << "Request was denied";
}
else if (status == "INVALID_REQUEST") {
qDebug() << "Invalid request, missing address, lat long or location";
}
else if (status == "UNKNOWN_ERROR") {
qDebug() << "Some sort of server error.";
}
else
{
qDebug() << "UrlFactory loop error";
}
qDebug() << "Status is: " << status;
qDebug() << "Lat=" << lat << " Lng=" << lng;
#endif
}
#ifdef DEBUG_URLFACTORY
else if (status == "ZERO_RESULTS") {
qDebug() << "No results";
} else if (status == "OVER_QUERY_LIMIT") {
qDebug() << "You are over quota on queries";
} else if (status == "REQUEST_DENIED") {
qDebug() << "Request was denied";
} else if (status == "INVALID_REQUEST") {
qDebug() << "Invalid request, missing address, lat long or location";
} else if (status == "UNKNOWN_ERROR") {
qDebug() << "Some sort of server error.";
} else {
qDebug() << "UrlFactory loop error";
}
#endif
}
return ret;
}

View File

@ -111,18 +111,13 @@ void Core::run()
do {
QByteArray img;
// tile number inversion(BottomLeft -> TopLeft) for pergo maps
if (tl == MapType::PergoTurkeyMap) {
img = OPMaps::Instance()->GetImageFrom(tl, Point(task.Pos.X(), maxOfTiles.Height() - task.Pos.Y()), task.Zoom);
} else { // ok
#ifdef DEBUG_CORE
qDebug() << "start getting image" << " ID=" << debug;
qDebug() << "start getting image" << " ID=" << debug;
#endif // DEBUG_CORE
img = OPMaps::Instance()->GetImageFrom(tl, task.Pos, task.Zoom);
img = OPMaps::Instance()->GetImageFrom(tl, task.Pos, task.Zoom);
#ifdef DEBUG_CORE
qDebug() << "Core::run:gotimage size:" << img.count() << " ID=" << debug << " time=" << t.elapsed();
qDebug() << "Core::run:gotimage size:" << img.count() << " ID=" << debug << " time=" << t.elapsed();
#endif // DEBUG_CORE
}
if (img.length() != 0) {
Moverlays.lock();
@ -264,6 +259,11 @@ void Core::SetMapType(const MapType::Types &value)
case MapType::ArcGIS_Map:
case MapType::ArcGIS_Satellite:
case MapType::ArcGIS_ShadedRelief:
{
maxzoom = 10;
}
break;
case MapType::ArcGIS_Terrain:
{
if (Projection()->Type() != "PlateCarreeProjection") {
@ -273,36 +273,6 @@ void Core::SetMapType(const MapType::Types &value)
}
break;
case MapType::ArcGIS_MapsLT_Map_Hybrid:
case MapType::ArcGIS_MapsLT_Map_Labels:
case MapType::ArcGIS_MapsLT_Map:
case MapType::ArcGIS_MapsLT_OrtoFoto:
{
if (Projection()->Type() != "LKS94Projection") {
SetProjection(new LKS94Projection());
maxzoom = 11;
}
}
break;
case MapType::PergoTurkeyMap:
{
if (Projection()->Type() != "PlateCarreeProjectionPergo") {
SetProjection(new PlateCarreeProjectionPergo());
maxzoom = 17;
}
}
break;
case MapType::YandexMapRu:
{
if (Projection()->Type() != "MercatorProjectionYandex") {
SetProjection(new MercatorProjectionYandex());
maxzoom = 13;
}
}
break;
default:
{
if (Projection()->Type() != "MercatorProjection") {
@ -379,15 +349,13 @@ void Core::OnMapClose()
}
QString Core::SetCurrentPositionByKeywords(QString const & keys)
{
QString status = "ZERO_RESULTS";
QString status = "ZERO_RESULTS";
PointLatLng pos = OPMaps::Instance()->GetLatLngFromGeodecoder(keys, status);
if (!pos.IsEmpty() && (status == "OK")) {
SetCurrentPosition(pos);
}
else
{
qDebug() << "Status is not OK: " << status;
} else {
qDebug() << "Status is not OK: " << status;
}
return status;
}

View File

@ -44,9 +44,7 @@
#include "rectlatlng.h"
#include "../internals/projections/lks94projection.h"
#include "../internals/projections/mercatorprojection.h"
#include "../internals/projections/mercatorprojectionyandex.h"
#include "../internals/projections/platecarreeprojection.h"
#include "../internals/projections/platecarreeprojectionpergo.h"
#include "../core/geodecoderstatus.h"
#include "../core/opmaps.h"
#include "../core/diagnostics.h"

View File

@ -23,13 +23,9 @@ SOURCES += core.cpp \
mousewheelzoomtype.cpp
HEADERS += ./projections/lks94projection.h \
./projections/mercatorprojection.h \
./projections/mercatorprojectionyandex.h \
./projections/platecarreeprojection.h \
./projections/platecarreeprojectionpergo.h
./projections/platecarreeprojection.h
SOURCES += ./projections/lks94projection.cpp \
./projections/mercatorprojection.cpp \
./projections/mercatorprojectionyandex.cpp \
./projections/platecarreeprojection.cpp \
./projections/platecarreeprojectionpergo.cpp
./projections/platecarreeprojection.cpp
LIBS += -L../build \
-lcore

View File

@ -34,8 +34,8 @@ namespace mapcontrol {
MapGraphicItem::MapGraphicItem(internals::Core *core, Configuration *configuration) : core(core), config(configuration), MapRenderTransform(1),
maxZoom(17), minZoom(2), zoomReal(0), zoomDigi(0), isSelected(false), rotation(0)
{
dragons.load(QString::fromUtf8(":/markers/images/dragons1.jpg"));
showTileGridLines = false;
// dragons.load(QString::fromUtf8(":/markers/images/dragons1.jpg"));
showTileGridLines = true;
isMouseOverMarker = false;
maprect = QRectF(0, 0, 1022, 680);
core->SetCurrentRegion(internals::Rectangle(0, 0, maprect.width(), maprect.height()));
@ -296,7 +296,7 @@ void MapGraphicItem::wheelEvent(QGraphicsSceneWheelEvent *event)
}
void MapGraphicItem::DrawMap2D(QPainter *painter)
{
painter->drawImage(this->boundingRect(), dragons.toImage());
// painter->drawImage(this->boundingRect(), dragons.toImage());
if (!lastimage.isNull()) {
painter->drawImage(core->GetrenderOffset().X() - lastimagepoint.X(), core->GetrenderOffset().Y() - lastimagepoint.Y(), lastimage);
}

View File

@ -46,35 +46,34 @@ private slots:
private:
enum XplaneOutputData // ***WARNING***: Elements in this enum are in a precise order, do
{ // not change. Cf. http://www.nuclearprojects.com/xplane/info.shtml (outdated version 9 info)
// These fields have been updated for X-Plane version 10.x
/* 0 */ FramRate,
/* 1 */ Times,
/* 2 */ SimStats,
/* 3 */ Speed,
/* 4 */ Gload,
/* 5 */ AtmosphereWeather,
/* 6 */ AtmosphereAircraft,
/* 7 */ SystemPressures,
/* 8 */ Joystick1,
/* 9 */ Joystick2,
/* 10 */ ArtStab,
/* 11 */ FlightCon,
/* 12 */ WingSweep,
/* 13 */ Trim,
/* 14 */ Brakes,
/* 15 */ AngularMoments,
/* 16 */ AngularVelocities,
/* 17 */ PitchRollHeading,
/* 18 */ AoA,
/* 19 */ MagCompass,
/* 20 */ LatitudeLongitude,
/* 21 */ LocVelDistTraveled,
/* 22 */ AllPlanesLat,
/* 23 */ AllPlanesLon,
/* 24 */ AllPlanesAlt,
/* 25 */ ThrottleCommand
/* .. */
// These fields have been updated for X-Plane version 10.x
/* 0 */ FramRate,
/* 1 */ Times,
/* 2 */ SimStats,
/* 3 */ Speed,
/* 4 */ Gload,
/* 5 */ AtmosphereWeather,
/* 6 */ AtmosphereAircraft,
/* 7 */ SystemPressures,
/* 8 */ Joystick1,
/* 9 */ Joystick2,
/* 10 */ ArtStab,
/* 11 */ FlightCon,
/* 12 */ WingSweep,
/* 13 */ Trim,
/* 14 */ Brakes,
/* 15 */ AngularMoments,
/* 16 */ AngularVelocities,
/* 17 */ PitchRollHeading,
/* 18 */ AoA,
/* 19 */ MagCompass,
/* 20 */ LatitudeLongitude,
/* 21 */ LocVelDistTraveled,
/* 22 */ AllPlanesLat,
/* 23 */ AllPlanesLon,
/* 24 */ AllPlanesAlt,
/* 25 */ ThrottleCommand
/* .. */
};
void processUpdate(const QByteArray & data);

View File

@ -2318,9 +2318,9 @@ void OPMapGadgetWidget::SetUavPic(QString UAVPic)
void OPMapGadgetWidget::on_tbFind_clicked()
{
QPalette pal = m_widget->leFind->palette();
QPalette pal = m_widget->leFind->palette();
QString status = m_map->SetCurrentPositionByKeywords(m_widget->leFind->text());
QString status = m_map->SetCurrentPositionByKeywords(m_widget->leFind->text());
if (status == "OK") {
pal.setColor(m_widget->leFind->backgroundRole(), Qt::green);
@ -2351,7 +2351,6 @@ void OPMapGadgetWidget::on_tbFind_clicked()
m_widget->leFind->setPalette(pal);
qDebug() << "Some sort of code error!";
}
}
void OPMapGadgetWidget::onHomeDoubleClick(HomeItem *)

View File

@ -60,6 +60,7 @@ PfdQmlGadgetWidget::PfdQmlGadgetWidget(QWindow *parent) :
"PathDesired" <<
"AltitudeHoldDesired" <<
"GPSPositionSensor" <<
"GPSSatellites" <<
"GCSTelemetryStats" <<
"SystemAlarms" <<
"NedAccel" <<
@ -78,7 +79,8 @@ PfdQmlGadgetWidget::PfdQmlGadgetWidget(QWindow *parent) :
"SystemSettings" <<
"RevoSettings" <<
"MagState" <<
"FlightBatterySettings";
"FlightBatterySettings" <<
"ReceiverStatus";
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();

View File

@ -6,7 +6,7 @@
<field name="ThrustRate" units="m/s" type="float" elements="1" defaultvalue="5" />
<field name="ThrustLimits" units="" type="float" elementnames="Min,Neutral,Max" defaultvalue="0.2, 0.5, 0.9"/>
<field name="VerticalPosP" units="(m/s)/m" type="float" elements="1" defaultvalue="0.4"/>
<field name="VerticalVelPID" units="(m/s^2)/(m/s)" type="float" elementnames="Kp,Ki,Kd,Beta" defaultvalue="0.5, 0.45, 0.001, 0.95"/>
<field name="VerticalVelPID" units="(m/s^2)/(m/s)" type="float" elementnames="Kp,Ki,Kd,Beta" defaultvalue="0.35, 0.45, 0.001, 0.95"/>
<access gcs="readwrite" flight="readwrite"/>
<telemetrygcs acked="true" updatemode="onchange" period="0"/>
<telemetryflight acked="true" updatemode="onchange" period="0"/>

View File

@ -18,7 +18,7 @@
</options>
</field>
<field name="FilterSetting" units="Hz" type="enum" elements="1" defaultvalue="Lowpass_256_Hz">
<field name="FilterSetting" units="Hz" type="enum" elements="1" defaultvalue="Lowpass_188_Hz">
<options>
<option>Lowpass_256_Hz</option>
<option>Lowpass_188_Hz</option>

View File

@ -18,7 +18,7 @@
<field name="VbarPiroComp" units="" type="enum" elements="1" options="FALSE,TRUE" defaultvalue="FALSE"/>
<field name="VbarMaxAngle" units="deg" type="uint8" elements="1" defaultvalue="10"/>
<field name="GyroTau" units="" type="float" elements="1" defaultvalue="0.005"/>
<field name="GyroTau" units="" type="float" elements="1" defaultvalue="0.003"/>
<field name="DerivativeCutoff" units="Hz" type="uint8" elements="1" defaultvalue="20"/>
<field name="DerivativeGamma" units="" type="float" elements="1" defaultvalue="1"/>

View File

@ -7,11 +7,11 @@
<field name="CourseFeedForward" units="s" type="float" elements="1" defaultvalue="1.0"/>
<field name="HorizontalPosP" units="(m/s)/m" type="float" elements="1" defaultvalue="0.25"/>
<field name="VerticalPosP" units="" type="float" elements="1" defaultvalue="0.4"/>
<field name="HorizontalVelPID" units="deg/(m/s)" type="float" elementnames="Kp,Ki,Kd,Beta" defaultvalue="8.0, 0.5, 0.0, 0.95"/>
<field name="VerticalVelPID" units="" type="float" elementnames="Kp,Ki,Kd,Beta" defaultvalue="0.3, 0.3, 0.0, 0.95"/>
<field name="HorizontalVelPID" units="deg/(m/s)" type="float" elementnames="Kp,Ki,Kd,Beta" defaultvalue="8.0, 0.5, 0.001, 0.95"/>
<field name="VerticalVelPID" units="(m/s^2)/(m/s)" type="float" elementnames="Kp,Ki,Kd,Beta" defaultvalue="0.35, 0.45, 0.001, 0.95"/>
<field name="ThrustLimits" units="" type="float" elementnames="Min,Neutral,Max" defaultvalue="0.2, 0.5, 0.9"/>
<field name="VelocityFeedforward" units="deg/(m/s)" type="float" elements="1" defaultvalue="2"/>
<field name="ThrustControl" units="" type="enum" elements="1" options="manual,auto" defaultvalue="manual"/>
<field name="ThrustControl" units="" type="enum" elements="1" options="manual,auto" defaultvalue="auto"/>
<field name="YawControl" units="" type="enum" elements="1" options="manual,tailin,movementdirection,pathdirection,poi" defaultvalue="manual"/>
<field name="FlyawayEmergencyFallback" units="switch" type="enum" elements="1" options="disabled,enabled,always,debugtest" defaultvalue="enabled"/>
<field name="FlyawayEmergencyFallbackTriggerTime" units="s" type="float" elements="1" defaultvalue="10.0"/>