@@ -0,0 +1,11 @@ | |||
#!/bin/bash | |||
if [ -f /usr/bin/python3 ]; then | |||
PYTHON=/usr/bin/python3 | |||
else | |||
PYTHON=python | |||
fi | |||
INSTALL_PREFIX="X-PREFIX-X" | |||
export PATH="$INSTALL_PREFIX"/lib/cadence:$PATH | |||
exec $PYTHON $INSTALL_PREFIX/share/cadence/src/carla.py --with-libprefix="$INSTALL_PREFIX" "$@" |
@@ -0,0 +1,10 @@ | |||
#!/bin/bash | |||
if [ -f /usr/bin/python3 ]; then | |||
PYTHON=/usr/bin/python3 | |||
else | |||
PYTHON=python | |||
fi | |||
INSTALL_PREFIX="X-PREFIX-X" | |||
exec $PYTHON $INSTALL_PREFIX/share/cadence/src/carla_control.py "$@" |
@@ -0,0 +1,9 @@ | |||
[Desktop Entry] | |||
Name=Carla Control | |||
GenericName=Carla Control | |||
Comment=Multi-Plugin Audio Host (OSC Control) | |||
Exec=carla-control | |||
Icon=carla-control | |||
Terminal=false | |||
Type=Application | |||
Categories=AudioVideo;AudioEditing;Qt; |
@@ -0,0 +1,109 @@ | |||
#!/bin/bash | |||
# Script to start Carla bridges | |||
INSTALL_PREFIX="X-PREFIX-X" | |||
CADENCE_PREFIX="$INSTALL_PREFIX"/lib/cadence | |||
# ---------------------------------------------------------------------- | |||
# Check for enough arguments | |||
if [ "$3"x == ""x ]; then | |||
echo "usage: $0 [arch] [mode] [filename] [label/uri] | |||
Possible archs: | |||
- \"native\" | |||
- \"posix32\" | |||
- \"posix64\" | |||
- \"win32\" | |||
- \"win64\" | |||
Possible modes: | |||
- \"ladspa\" | |||
- \"dssi\" | |||
- \"lv2\" | |||
- \"vst\" | |||
Examples: | |||
$0 native dssi \"/usr/lib/dssi/hexter.so\" \"hexter\" | |||
$0 native lv2 \"/usr/lib/lv2/calf/\" \"http://calf.sourceforge.net/plugins/Compressor\" | |||
$0 native vst \"/usr/lib/vst/TAL-NoiseMaker.so\" | |||
" | |||
exit | |||
fi | |||
# ---------------------------------------------------------------------- | |||
# Set client name (from environment) | |||
if [ "$CARLA_CLIENT_NAME"x == ""x ]; then | |||
CARLA_CLIENT_NAME="(none)" | |||
fi | |||
# ---------------------------------------------------------------------- | |||
# Set variables | |||
RUN_ARCH="$1" | |||
RUN_MODE="$2" | |||
RUN_FILE="$3" | |||
RUN_LABEL="$4" | |||
# ---------------------------------------------------------------------- | |||
# Fix arch for windows bridges | |||
if [ $RUN_ARCH == "win32" ]; then | |||
RUN_ARCH="win32.exe" | |||
fi | |||
if [ $RUN_ARCH == "win64" ]; then | |||
RUN_ARCH="win64.exe" | |||
fi | |||
# ---------------------------------------------------------------------- | |||
# Check for existing cadence folder | |||
if [ ! -d $CADENCE_PREFIX ]; then | |||
echo "$0: Cadence folder non-existing, is it installed?" | |||
exit | |||
fi | |||
# ---------------------------------------------------------------------- | |||
# Check for existing arch binary | |||
CARLA_EXEC="$CADENCE_PREFIX/carla-bridge-$RUN_ARCH" | |||
if [ ! -f $CARLA_EXEC ]; then | |||
echo "$0: Invalid arch (may not be installed)" | |||
exit | |||
fi | |||
# ---------------------------------------------------------------------- | |||
# Check mode | |||
if [ "$RUN_MODE"x == "ladspa"x ]; then | |||
if [ "$RUN_LABEL"x == ""x ]; then | |||
echo "$0: LADSPA needs label" | |||
exit | |||
fi | |||
RUN_MODE="DSSI" | |||
elif [ "$RUN_MODE"x == "dssi"x ]; then | |||
if [ "$RUN_LABEL"x == ""x ]; then | |||
echo "$0: DSSI needs label" | |||
exit | |||
fi | |||
RUN_MODE="DSSI" | |||
elif [ "$RUN_MODE"x == "lv2"x ]; then | |||
if [ "$RUN_LABEL"x == ""x ]; then | |||
echo "$0: LV2 needs uri" | |||
exit | |||
fi | |||
RUN_MODE="LV2" | |||
elif [ "$RUN_MODE"x == "vst"x ]; then | |||
RUN_MODE="VST" | |||
else | |||
echo "$0: Invalid mode" | |||
exit | |||
fi | |||
# ---------------------------------------------------------------------- | |||
# Exec | |||
exec $CARLA_EXEC "null" "$RUN_MODE" "$RUN_FILE" "$CARLA_CLIENT_NAME" "$RUN_LABEL" |
@@ -0,0 +1,9 @@ | |||
[Desktop Entry] | |||
Name=Carla | |||
GenericName=Carla | |||
Comment=Multi-Plugin Audio Host | |||
Exec=carla | |||
Icon=carla | |||
Terminal=false | |||
Type=Application | |||
Categories=AudioVideo;AudioEditing;Qt; |
@@ -0,0 +1,49 @@ | |||
# Carla TODO | |||
CODE CLEANUP: | |||
- Create PluginGUI class in C++ code, remove python one (need to handle parent somehow) | |||
- Smarter audio/midi port names (count == 1: "audio-in" else: "audio-in-x") | |||
GENERAL: | |||
- add direct program access on ui-dialogs (needed for standalone bridges), maybe add extra buttons too (reset plugin, fix ui size) | |||
- implement osc-based uis in bridge mode | |||
- implement midi-learn (new dialog) | |||
- implement midi-cc automation special rules (invert, half, logarithmic, etc) | |||
- allow to change position of plugins (up/down) | |||
- allow to set m_ctrlInChannel from GUI (needs GUI widget) | |||
- add macro to get midi channel (status & 0x0F) | |||
ENGINE: | |||
- complete RtAudio+RtMidi support | |||
- implement Haiku Media support (based from JACK?) | |||
- implement latency in continuous-rack mode | |||
- DSSI/LV2/VST version (needs add-new support on control side) | |||
- Handle sample-rate changes in JACK (made possible by switch-master) | |||
LADSPA: | |||
- on reload() only set def,min,max after all changes, apply to dssi and lv2 | |||
DSSI: | |||
LV2: | |||
- implement lv2-preset support | |||
- implement lv2-time messages support | |||
- complete lv2-atom messages support | |||
- complete lv2-worker support | |||
VST: | |||
- add support for old X11 UIs | |||
- implement cockos extensions | |||
- compare with dssi-vst code | |||
LinuxSampler: | |||
- implement midi-program changes | |||
FluidSynth: | |||
Native: | |||
- Cleanup API | |||
- Document API | |||
Carla: | |||
- auto-tab height fix |
@@ -0,0 +1,140 @@ | |||
# This document describes manual test cases for Carla. | |||
---------------------------------------------------------------------------------------- | |||
----Section 1. ----------------------------------------------------------------------- | |||
REFRESH PLUGINS | |||
Native plugins: | |||
-N- LADSPA | |||
-N- DSSI | |||
-N- LV2 | |||
-N- VST | |||
-N- GIG | |||
-N- SF2 | |||
-N- SFZ | |||
-N- Native | |||
Non-native, posix plugins: | |||
-N- LADSPA | |||
-N- DSSI | |||
-N- LV2 | |||
-N- VST | |||
Non-native, win32 plugins: | |||
-N- LADSPA | |||
-N- DSSI [*] | |||
-N- LV2 | |||
-N- VST | |||
Non-native, win64 plugins: | |||
-N- LADSPA [*] | |||
-N- DSSI [*] | |||
-N- LV2 | |||
-N- VST | |||
---------------------------------------------------------------------------------------- | |||
----Section 2. ----------------------------------------------------------------------- | |||
LOADING PLUGINS (load and safely remove) | |||
Native plugins: | |||
-N- LADSPA | |||
-N- DSSI | |||
-N- LV2 | |||
-N- VST | |||
-N- GIG | |||
-N- SF2 | |||
-N- SFZ | |||
-N- Native | |||
Non-native, posix plugins: | |||
-N- LADSPA | |||
-N- DSSI | |||
-N- LV2 | |||
-N- VST | |||
Non-native, win32 plugins: | |||
-N- LADSPA | |||
-N- DSSI [*] | |||
-N- LV2 | |||
-N- VST | |||
Non-native, win64 plugins: | |||
-N- LADSPA [*] | |||
-N- DSSI [*] | |||
-N- LV2 | |||
-N- VST | |||
---------------------------------------------------------------------------------------- | |||
----Section 3. ----------------------------------------------------------------------- | |||
SAVE & RESTORE PLUGIN STATE (Manual and In-Project, verify data) | |||
Native plugins: | |||
-N- LADSPA | |||
-N- DSSI | |||
-N- LV2 | |||
-N- VST | |||
-N- SF2 | |||
Non-native, posix plugins: | |||
-N- LADSPA | |||
-N- DSSI | |||
-N- LV2 | |||
-N- VST | |||
Non-native, win32 plugins: | |||
-N- LADSPA | |||
-N- DSSI [*] | |||
-N- LV2 | |||
-N- VST | |||
Non-native, win64 plugins: | |||
-N- LADSPA [*] | |||
-N- DSSI [*] | |||
-N- LV2 | |||
-N- VST | |||
---------------------------------------------------------------------------------------- | |||
----Section 4. ----------------------------------------------------------------------- | |||
LOADING PLUGIN'S GUI (load, show/hide, close/reopen) | |||
Native plugins: | |||
-N- DSSI (OSC based) | |||
-N- LV2 (External-UI, internal) | |||
-N- LV2 (Qt4-UI, internal) | |||
-N- LV2 (X11-UI, internal) | |||
-N- LV2 (Suil-UI, internal) | |||
-N- LV2 (Gtk2-UI, OSC bridged) | |||
-N- LV2 (Gtk3-UI, OSC bridged) [*] | |||
-N- LV2 (Qt4-UI, OSC bridged) | |||
-N- LV2 (X11-UI, OSC bridged) | |||
-N- VST (internal) | |||
-N- VST (OSC bridged) | |||
Non-native, posix plugins: | |||
-N- LV2 (External-UI, internal) | |||
-N- LV2 (Qt4-UI, internal) | |||
-N- LV2 (X11-UI, internal) | |||
-N- VST (internal) | |||
Non-native, win32 plugins: | |||
-N- LV2 (External-UI, internal) | |||
-N- LV2 (Qt4-UI, internal) [*] | |||
-N- LV2 (Windows-UI, internal) [*] | |||
-N- VST (internal) | |||
Non-native, win64 plugins: | |||
-N- LV2 (External-UI, internal) | |||
-N- LV2 (Qt4-UI, internal) [*] | |||
-N- LV2 (Windows-UI, internal) [*] | |||
-N- VST (internal) | |||
---------------------------------------------------------------------------------------- | |||
---------------------------------------------------------------------------------------- | |||
---------------------------------------------------------------------------------------- | |||
[*] Cannot test, no such plugins yet |
@@ -0,0 +1 @@ | |||
id ICON "carla-control.ico" |
@@ -0,0 +1 @@ | |||
id ICON "carla.ico" |
@@ -0,0 +1,111 @@ | |||
<RCC version="1.0"> | |||
<qresource prefix="/"> | |||
<file>16x16/cadence.png</file> | |||
<file>16x16/catarina.png</file> | |||
<file>16x16/catia.png</file> | |||
<file>16x16/claudia.png</file> | |||
<file>16x16/claudia-launcher.png</file> | |||
<file>16x16/carla.png</file> | |||
<file>16x16/carla-control.png</file> | |||
<file>16x16/application-exit.png</file> | |||
<file>16x16/arrow-right.png</file> | |||
<file>16x16/configure.png</file> | |||
<file>16x16/dialog-cancel.png</file> | |||
<file>16x16/dialog-error.png</file> | |||
<file>16x16/dialog-information.png</file> | |||
<file>16x16/dialog-ok-apply.png</file> | |||
<file>16x16/document-new.png</file> | |||
<file>16x16/document-open.png</file> | |||
<file>16x16/document-print.png</file> | |||
<file>16x16/document-save.png</file> | |||
<file>16x16/document-save-as.png</file> | |||
<file>16x16/edit-clear.png</file> | |||
<file>16x16/edit-delete.png</file> | |||
<file>16x16/edit-rename.png</file> | |||
<file>16x16/list-add.png</file> | |||
<file>16x16/list-remove.png</file> | |||
<file>16x16/media-playback-pause.png</file> | |||
<file>16x16/media-playback-start.png</file> | |||
<file>16x16/media-playback-stop.png</file> | |||
<file>16x16/media-record.png</file> | |||
<file>16x16/media-seek-backward.png</file> | |||
<file>16x16/media-seek-forward.png</file> | |||
<file>16x16/network-connect.png</file> | |||
<file>16x16/network-disconnect.png</file> | |||
<file>16x16/system-run.png</file> | |||
<file>16x16/user-trash.png</file> | |||
<file>16x16/view-refresh.png</file> | |||
<file>16x16/view-sort-ascending.png</file> | |||
<file>16x16/window-close.png</file> | |||
<file>16x16/zoom-fit-best.png</file> | |||
<file>16x16/zoom-in.png</file> | |||
<file>16x16/zoom-original.png</file> | |||
<file>16x16/zoom-out.png</file> | |||
<file>48x48/cadence.png</file> | |||
<file>48x48/catarina.png</file> | |||
<file>48x48/catia.png</file> | |||
<file>48x48/claudia.png</file> | |||
<file>48x48/claudia-launcher.png</file> | |||
<file>48x48/carla.png</file> | |||
<file>48x48/carla-control.png</file> | |||
<file>48x48/canvas.png</file> | |||
<file>48x48/exec.png</file> | |||
<file>48x48/folder.png</file> | |||
<file>48x48/jack.png</file> | |||
<file>48x48/ladish.png</file> | |||
<file>48x48/media-record.png</file> | |||
<file>scalable/cadence.svg</file> | |||
<file>scalable/catarina.svg</file> | |||
<file>scalable/catia.svg</file> | |||
<file>scalable/claudia.svg</file> | |||
<file>scalable/claudia-launcher.svg</file> | |||
<file>scalable/carla.svg</file> | |||
<file>scalable/carla-control.svg</file> | |||
<file>scalable/jack.svg</file> | |||
<file>scalable/pb_generic.svg</file> | |||
<file>scalable/pb_hardware.svg</file> | |||
<file>scalable/pb_audacious.svg</file> | |||
<file>scalable/pb_clementine.svg</file> | |||
<file>scalable/pb_jamin.svg</file> | |||
<file>scalable/pb_mplayer.svg</file> | |||
<file>scalable/pb_vlc.svg</file> | |||
<file>bitmaps/dial_01.png</file> | |||
<file>bitmaps/dial_01d.png</file> | |||
<file>bitmaps/dial_02.png</file> | |||
<file>bitmaps/dial_02d.png</file> | |||
<file>bitmaps/dial_03.png</file> | |||
<file>bitmaps/dial_03d.png</file> | |||
<file>bitmaps/dial_04.png</file> | |||
<file>bitmaps/dial_04d.png</file> | |||
<file>bitmaps/kbd_h_classic.png</file> | |||
<file>bitmaps/kbd_h_orange.png</file> | |||
<file>bitmaps/kbd_v_classic.png</file> | |||
<file>bitmaps/kbd_v_orange.png</file> | |||
<file>bitmaps/led_off.png</file> | |||
<file>bitmaps/led_blue.png</file> | |||
<file>bitmaps/led_green.png</file> | |||
<file>bitmaps/led_red.png</file> | |||
<file>bitmaps/led_yellow.png</file> | |||
<file>bitmaps/led-big_on.png</file> | |||
<file>bitmaps/led-big_off.png</file> | |||
<file>bitmaps/carla_about.png</file> | |||
<file>bitmaps/carla_knobs1.png</file> | |||
<file>bitmaps/canvas/frame_node_header.png</file> | |||
<file>bitmaps/canvas/frame_port_bg.png</file> | |||
<file>bitmaps/textures/metal_9-512px.jpg</file> | |||
<file>screens/cadence-logs.png</file> | |||
<file>screens/cadence-render.png</file> | |||
<file>screens/cadence-xycontroller.png</file> | |||
<file>screens/catia.png</file> | |||
<file>screens/claudia.png</file> | |||
<file>screens/carla.png</file> | |||
</qresource> | |||
</RCC> |
@@ -0,0 +1,845 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<!-- Created with Inkscape (http://www.inkscape.org/) --> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
width="256" | |||
height="256" | |||
id="svg7563" | |||
version="1.1" | |||
inkscape:version="0.48.2 r9819" | |||
sodipodi:docname="carla-control.svg"> | |||
<defs | |||
id="defs7565"> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-3-7-8" | |||
id="linearGradient4914" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-3-7-8"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-0-6-8" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-9-31-9" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-03-6" | |||
id="linearGradient4912" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-03-6"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-04-0" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-4-4" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-9-3" | |||
id="linearGradient4910" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-9-3"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-8-3" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-48-3" /> | |||
</linearGradient> | |||
<radialGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-29-7" | |||
id="radialGradient4906" | |||
gradientUnits="userSpaceOnUse" | |||
cx="-2.1428571" | |||
cy="203.07646" | |||
fx="-2.1428571" | |||
fy="203.07646" | |||
r="22.184671" /> | |||
<linearGradient | |||
id="linearGradient6174-29-7"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-3-5" /> | |||
<stop | |||
id="stop8118-9-3" | |||
offset="0.06451613" | |||
style="stop-color:#636363;stop-opacity:1;" /> | |||
<stop | |||
id="stop8116-0-8" | |||
offset="0.28928199" | |||
style="stop-color:#797979;stop-opacity:1;" /> | |||
<stop | |||
id="stop8114-8-8" | |||
offset="0.58732504" | |||
style="stop-color:#a6a6a6;stop-opacity:1;" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-850-3" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6182-63-8" | |||
id="linearGradient4908" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-19.337217" | |||
y1="186.92368" | |||
x2="10.874059" | |||
y2="218.95074" /> | |||
<linearGradient | |||
id="linearGradient6182-63-8"> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="0" | |||
id="stop6184-856-9" /> | |||
<stop | |||
style="stop-color:#3b3b3b;stop-opacity:1;" | |||
offset="1" | |||
id="stop6186-11-6" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6164-63-1" | |||
id="linearGradient4904" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-26.607141" | |||
y1="171.6479" | |||
x2="43.750004" | |||
y2="251.6479" /> | |||
<linearGradient | |||
id="linearGradient6164-63-1"> | |||
<stop | |||
style="stop-color:#919191;stop-opacity:1;" | |||
offset="0" | |||
id="stop6166-94-8" /> | |||
<stop | |||
style="stop-color:#f0f0f0;stop-opacity:1;" | |||
offset="1" | |||
id="stop6168-8-5" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6187-8-7" | |||
id="linearGradient5018" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="translate(-318.57139,-494.85713)" | |||
x1="375.71429" | |||
y1="946.64789" | |||
x2="331.42856" | |||
y2="839.50507" /> | |||
<linearGradient | |||
id="linearGradient6187-8-7"> | |||
<stop | |||
style="stop-color:#1a1a1a;stop-opacity:1;" | |||
offset="0" | |||
id="stop6189-7-89" /> | |||
<stop | |||
style="stop-color:#202020;stop-opacity:1;" | |||
offset="1" | |||
id="stop6191-2-1" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-3-0" | |||
id="linearGradient4900" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-3-0"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-0-3" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-9-0" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-9" | |||
id="linearGradient4898" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-9"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-8" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-48" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-6" | |||
id="linearGradient4896" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-6"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-1" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-1" /> | |||
</linearGradient> | |||
<radialGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-9" | |||
id="radialGradient4892" | |||
gradientUnits="userSpaceOnUse" | |||
cx="-2.1428571" | |||
cy="203.07646" | |||
fx="-2.1428571" | |||
fy="203.07646" | |||
r="22.184671" /> | |||
<linearGradient | |||
id="linearGradient6174-9"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-0" /> | |||
<stop | |||
id="stop8118-8" | |||
offset="0.06451613" | |||
style="stop-color:#636363;stop-opacity:1;" /> | |||
<stop | |||
id="stop8116-8" | |||
offset="0.28928199" | |||
style="stop-color:#797979;stop-opacity:1;" /> | |||
<stop | |||
id="stop8114-5" | |||
offset="0.58732504" | |||
style="stop-color:#a6a6a6;stop-opacity:1;" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-0" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6182-6" | |||
id="linearGradient4894" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-19.337217" | |||
y1="186.92368" | |||
x2="10.874059" | |||
y2="218.95074" /> | |||
<linearGradient | |||
id="linearGradient6182-6"> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="0" | |||
id="stop6184-3" /> | |||
<stop | |||
style="stop-color:#3b3b3b;stop-opacity:1;" | |||
offset="1" | |||
id="stop6186-8" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6164-1" | |||
id="linearGradient5147" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-26.607141" | |||
y1="171.6479" | |||
x2="43.750004" | |||
y2="251.6479" /> | |||
<linearGradient | |||
id="linearGradient6164-1"> | |||
<stop | |||
style="stop-color:#919191;stop-opacity:1;" | |||
offset="0" | |||
id="stop6166-2" /> | |||
<stop | |||
style="stop-color:#f0f0f0;stop-opacity:1;" | |||
offset="1" | |||
id="stop6168-9" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6187-8-2" | |||
id="linearGradient5041" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="translate(-318.57139,-494.85713)" | |||
x1="375.71429" | |||
y1="946.64789" | |||
x2="331.42856" | |||
y2="839.50507" /> | |||
<linearGradient | |||
id="linearGradient6187-8-2"> | |||
<stop | |||
style="stop-color:#1a1a1a;stop-opacity:1;" | |||
offset="0" | |||
id="stop6189-7-8" /> | |||
<stop | |||
style="stop-color:#202020;stop-opacity:1;" | |||
offset="1" | |||
id="stop6191-2-3" /> | |||
</linearGradient> | |||
<filter | |||
color-interpolation-filters="sRGB" | |||
inkscape:collect="always" | |||
id="filter6576-0" | |||
x="-0.10272374" | |||
width="1.2054476" | |||
y="-0.10272374" | |||
height="1.2054476"> | |||
<feGaussianBlur | |||
inkscape:collect="always" | |||
stdDeviation="6.8910506" | |||
id="feGaussianBlur6578-6" /> | |||
</filter> | |||
<filter | |||
color-interpolation-filters="sRGB" | |||
inkscape:collect="always" | |||
id="filter8786-1-1"> | |||
<feGaussianBlur | |||
inkscape:collect="always" | |||
stdDeviation="8.96" | |||
id="feGaussianBlur8788-3-4" /> | |||
</filter> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient4657-7-2" | |||
id="linearGradient4884" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)" | |||
x1="241.21584" | |||
y1="795.42145" | |||
x2="-21.002575" | |||
y2="516.61938" /> | |||
<linearGradient | |||
id="linearGradient4657-7-2"> | |||
<stop | |||
style="stop-color:#282212;stop-opacity:0.62280703;" | |||
offset="0" | |||
id="stop4659-6-0" /> | |||
<stop | |||
id="stop4661-39-6" | |||
offset="0.29307336" | |||
style="stop-color:#2d2a23;stop-opacity:1;" /> | |||
<stop | |||
id="stop4663-1-8" | |||
offset="0.80562556" | |||
style="stop-color:#4e5e42;stop-opacity:1;" /> | |||
<stop | |||
style="stop-color:#676d67;stop-opacity:1;" | |||
offset="1" | |||
id="stop4665-0-9" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient3902-1-6" | |||
id="linearGradient4886" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)" | |||
x1="320.00772" | |||
y1="662.08124" | |||
x2="-128.07874" | |||
y2="629.75647" /> | |||
<linearGradient | |||
id="linearGradient3902-1-6"> | |||
<stop | |||
style="stop-color:#141414;stop-opacity:0.87719297;" | |||
offset="0" | |||
id="stop3904-18-6" /> | |||
<stop | |||
id="stop3936-6-4" | |||
offset="0.07563529" | |||
style="stop-color:#000000;stop-opacity:1;" /> | |||
<stop | |||
id="stop3934-4-9" | |||
offset="0.14044002" | |||
style="stop-color:#262422;stop-opacity:1;" /> | |||
<stop | |||
id="stop3932-3-5" | |||
offset="0.20430526" | |||
style="stop-color:#5f5f59;stop-opacity:1;" /> | |||
<stop | |||
id="stop3930-4-0" | |||
offset="0.26901498" | |||
style="stop-color:#211f1e;stop-opacity:1;" /> | |||
<stop | |||
id="stop3928-7-4" | |||
offset="0.3417097" | |||
style="stop-color:#3c3b38;stop-opacity:1;" /> | |||
<stop | |||
id="stop3926-7-8" | |||
offset="0.41261438" | |||
style="stop-color:#6c6c66;stop-opacity:1;" /> | |||
<stop | |||
id="stop3924-0-7" | |||
offset="0.48499879" | |||
style="stop-color:#4c4740;stop-opacity:1;" /> | |||
<stop | |||
id="stop3922-7-1" | |||
offset="0.54586536" | |||
style="stop-color:#696965;stop-opacity:1;" /> | |||
<stop | |||
id="stop3920-45-7" | |||
offset="0.62692177" | |||
style="stop-color:#727272;stop-opacity:1;" /> | |||
<stop | |||
id="stop3918-3-2" | |||
offset="0.68774176" | |||
style="stop-color:#42403e;stop-opacity:1;" /> | |||
<stop | |||
id="stop3916-0-7" | |||
offset="0.75042593" | |||
style="stop-color:#3a3a3a;stop-opacity:0.93725491;" /> | |||
<stop | |||
id="stop3914-7-2" | |||
offset="0.81777459" | |||
style="stop-color:#1a140e;stop-opacity:1;" /> | |||
<stop | |||
id="stop3912-2-2" | |||
offset="0.87812954" | |||
style="stop-color:#000000;stop-opacity:0.74901962;" /> | |||
<stop | |||
id="stop3910-9-6" | |||
offset="0.94099933" | |||
style="stop-color:#000000;stop-opacity:1;" /> | |||
<stop | |||
style="stop-color:#000000;stop-opacity:1;" | |||
offset="1" | |||
id="stop3906-9-1" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient4657-7-2" | |||
id="linearGradient3131" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,313.93511,-98.98949)" | |||
x1="241.21584" | |||
y1="795.42145" | |||
x2="-21.002575" | |||
y2="516.61938" /> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient3902-1-6" | |||
id="linearGradient3133" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,313.93511,-98.98949)" | |||
x1="320.00772" | |||
y1="662.08124" | |||
x2="-128.07874" | |||
y2="629.75647" /> | |||
</defs> | |||
<sodipodi:namedview | |||
id="base" | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1.0" | |||
inkscape:pageopacity="0.0" | |||
inkscape:pageshadow="2" | |||
inkscape:zoom="1.979899" | |||
inkscape:cx="123.91535" | |||
inkscape:cy="125.96023" | |||
inkscape:document-units="px" | |||
inkscape:current-layer="layer1" | |||
showgrid="false" | |||
fit-margin-top="0" | |||
fit-margin-left="0" | |||
fit-margin-right="0" | |||
fit-margin-bottom="0" | |||
inkscape:window-width="1028" | |||
inkscape:window-height="660" | |||
inkscape:window-x="332" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" /> | |||
<metadata | |||
id="metadata7568"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
<dc:title></dc:title> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<g | |||
inkscape:label="Layer 1" | |||
inkscape:groupmode="layer" | |||
id="layer1" | |||
transform="translate(-263.42857,-301.50504)"> | |||
<rect | |||
style="opacity:0.93280634;fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter8786-1-1)" | |||
id="rect3756-4-1-0-0-5" | |||
width="256" | |||
height="256" | |||
x="-37.086269" | |||
y="505.79703" | |||
rx="32" | |||
ry="32" | |||
transform="matrix(0.83385449,0,0,0.83385449,315.61975,-98.98946)" /> | |||
<rect | |||
style="fill:url(#linearGradient3131);fill-opacity:1.0;stroke:url(#linearGradient3133);stroke-width:6.67083596999999973;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="rect3756-4-1-2-9" | |||
width="213.46675" | |||
height="213.46675" | |||
x="284.69519" | |||
y="322.77164" | |||
rx="26.683344" | |||
ry="26.683344" /> | |||
<rect | |||
style="opacity:0.89723319000000001;color:#000000;fill:#af9191;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6576-0);enable-background:accumulate" | |||
id="rect6570-4" | |||
width="161" | |||
height="161" | |||
x="308.26733" | |||
y="345.81552" | |||
inkscape:export-filename="/home/pj/Documents/svg/path10192-9.png" | |||
inkscape:export-xdpi="89.989967" | |||
inkscape:export-ydpi="89.989967" /> | |||
<rect | |||
style="color:#000000;fill:url(#linearGradient5041);fill-opacity:1.0;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435570999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-2" | |||
width="160.31299" | |||
height="79.151245" | |||
x="308.61084" | |||
y="346.66428" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="opacity:0.5;fill:#ff0000;stroke:url(#linearGradient5147);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6162-2" | |||
sodipodi:cx="-4.2857141" | |||
sodipodi:cy="198.79076" | |||
sodipodi:rx="35.714287" | |||
sodipodi:ry="35" | |||
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z" | |||
transform="matrix(0.47724548,0,0,0.48698502,335.16334,289.43179)" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#radialGradient4892);fill-opacity:1;stroke:url(#linearGradient4894);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-4" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.63497502,0,0,0.64793348,334.47874,254.65988)" /> | |||
<rect | |||
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-6-7" | |||
width="51.698875" | |||
height="62.038593" | |||
x="357.92554" | |||
y="354.54916" /> | |||
<text | |||
xml:space="preserve" | |||
style="font-size:16.68160248px;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" | |||
x="366.28452" | |||
y="383.95786" | |||
id="text4618-7" | |||
sodipodi:linespacing="125%"><tspan | |||
sodipodi:role="line" | |||
id="tspan4620-5" | |||
x="366.28452" | |||
y="383.95786">OSC</tspan></text> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#linearGradient4896);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-3-9-4" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.34133826,0,0,0.34830423,368.00834,328.43419)" /> | |||
<rect | |||
style="opacity:0.66000001;fill:#4b4b4b;fill-opacity:1;stroke:#949494;stroke-width:0.63269919;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="rect3534-6-4-8" | |||
width="46.528988" | |||
height="61.944588" | |||
x="414.79419" | |||
y="354.64645" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-1" | |||
width="41.3591" | |||
height="26.326447" | |||
x="417.37915" | |||
y="357.74368" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-4-2" | |||
width="41.3591" | |||
height="26.326456" | |||
x="417.37915" | |||
y="387.16739" /> | |||
<rect | |||
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-89" | |||
width="21.972023" | |||
height="12.388914" | |||
x="417.37915" | |||
y="357.74368" /> | |||
<rect | |||
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-8-3" | |||
width="27.141911" | |||
height="12.388914" | |||
x="417.37915" | |||
y="371.68124" /> | |||
<rect | |||
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-86-6" | |||
width="14.217191" | |||
height="12.388914" | |||
x="417.37915" | |||
y="387.16739" /> | |||
<rect | |||
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-8-8-8" | |||
width="37.481686" | |||
height="12.388914" | |||
x="417.37915" | |||
y="401.10489" /> | |||
<g | |||
style="display:inline" | |||
id="g8185-0" | |||
transform="translate(263.42854,-494.85714)"> | |||
<path | |||
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
sodipodi:ry="20.714285" | |||
sodipodi:rx="20.714285" | |||
sodipodi:cy="203.07646" | |||
sodipodi:cx="-2.1428571" | |||
id="path6172-3-9-3-21" | |||
style="fill:url(#linearGradient4898);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |||
sodipodi:type="arc" /> | |||
<path | |||
inkscape:connector-curvature="0" | |||
id="path8165-0" | |||
d="m 120.34637,888.07647 0,4.64285" | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<g | |||
style="display:inline" | |||
id="g8273-5" | |||
transform="translate(263.42854,-494.85714)"> | |||
<path | |||
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
sodipodi:ry="20.714285" | |||
sodipodi:rx="20.714285" | |||
sodipodi:cy="203.07646" | |||
sodipodi:cx="-2.1428571" | |||
id="path6172-3-9-3-2-1" | |||
style="fill:url(#linearGradient4900);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |||
sodipodi:type="arc" /> | |||
<path | |||
inkscape:connector-curvature="0" | |||
id="path8165-9-10" | |||
d="m 142.2413,891.52509 -4.21321,1.95061" | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<path | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" | |||
d="m 362.05344,396.32314 4.0778,2.21981" | |||
id="path8165-9-4-85" | |||
inkscape:connector-curvature="0" /> | |||
<rect | |||
style="color:#000000;fill:url(#linearGradient5018);fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-5-6" | |||
width="160.31299" | |||
height="79.151245" | |||
x="308.61084" | |||
y="426.81552" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="opacity:0.50000006;fill:#ff0000;stroke:url(#linearGradient4904);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6162-9-4" | |||
sodipodi:cx="-4.2857141" | |||
sodipodi:cy="198.79076" | |||
sodipodi:rx="35.714287" | |||
sodipodi:ry="35" | |||
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z" | |||
transform="matrix(0.47724548,0,0,0.48698502,335.16334,369.58303)" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#radialGradient4906);fill-opacity:1;stroke:url(#linearGradient4908);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-6-6" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.63497502,0,0,0.64793348,334.47874,334.81112)" /> | |||
<rect | |||
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-6-2-2" | |||
width="51.698875" | |||
height="62.038593" | |||
x="357.92554" | |||
y="434.70041" /> | |||
<text | |||
xml:space="preserve" | |||
style="font-size:16.68160248px;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" | |||
x="366.28452" | |||
y="464.1091" | |||
id="text4618-1-5" | |||
sodipodi:linespacing="125%"><tspan | |||
sodipodi:role="line" | |||
id="tspan4620-7-8" | |||
x="366.28452" | |||
y="464.1091">OSC</tspan></text> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#linearGradient4910);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-3-9-8-6" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.34133826,0,0,0.34830423,368.00834,408.58542)" /> | |||
<rect | |||
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-6-4-5-2" | |||
width="46.528988" | |||
height="61.944588" | |||
x="414.79419" | |||
y="434.7977" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-7-8" | |||
width="41.3591" | |||
height="26.326447" | |||
x="417.37915" | |||
y="437.89493" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-4-4-4" | |||
width="41.3591" | |||
height="26.326456" | |||
x="417.37915" | |||
y="467.31863" /> | |||
<rect | |||
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-1-7" | |||
width="21.972023" | |||
height="12.388914" | |||
x="417.37915" | |||
y="437.89493" /> | |||
<rect | |||
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-8-85-2" | |||
width="27.141911" | |||
height="12.388914" | |||
x="417.37915" | |||
y="451.83249" /> | |||
<rect | |||
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-86-9-4" | |||
width="14.217191" | |||
height="12.388914" | |||
x="417.37915" | |||
y="467.31863" /> | |||
<rect | |||
style="fill:#00ffd0;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-8-8-7-0" | |||
width="37.481686" | |||
height="12.388914" | |||
x="417.37915" | |||
y="481.25613" /> | |||
<g | |||
style="display:inline" | |||
id="g8185-5-6" | |||
transform="translate(263.42854,-414.7059)"> | |||
<path | |||
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
sodipodi:ry="20.714285" | |||
sodipodi:rx="20.714285" | |||
sodipodi:cy="203.07646" | |||
sodipodi:cx="-2.1428571" | |||
id="path6172-3-9-3-3-2" | |||
style="fill:url(#linearGradient4912);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |||
sodipodi:type="arc" /> | |||
<path | |||
inkscape:connector-curvature="0" | |||
id="path8165-8-9" | |||
d="m 120.34637,888.07647 0,4.64285" | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<g | |||
style="display:inline" | |||
id="g8273-8-9" | |||
transform="translate(263.42854,-414.7059)"> | |||
<path | |||
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
sodipodi:ry="20.714285" | |||
sodipodi:rx="20.714285" | |||
sodipodi:cy="203.07646" | |||
sodipodi:cx="-2.1428571" | |||
id="path6172-3-9-3-2-3-0" | |||
style="fill:url(#linearGradient4914);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |||
sodipodi:type="arc" /> | |||
<path | |||
inkscape:connector-curvature="0" | |||
id="path8165-9-1-8" | |||
d="m 142.2413,891.52509 -4.21321,1.95061" | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<path | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" | |||
d="m 362.05344,476.47437 4.0778,2.21981" | |||
id="path8165-9-4-8-1" | |||
inkscape:connector-curvature="0" /> | |||
</g> | |||
</svg> |
@@ -0,0 +1,853 @@ | |||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |||
<!-- Created with Inkscape (http://www.inkscape.org/) --> | |||
<svg | |||
xmlns:dc="http://purl.org/dc/elements/1.1/" | |||
xmlns:cc="http://creativecommons.org/ns#" | |||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |||
xmlns:svg="http://www.w3.org/2000/svg" | |||
xmlns="http://www.w3.org/2000/svg" | |||
xmlns:xlink="http://www.w3.org/1999/xlink" | |||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |||
width="256" | |||
height="256" | |||
id="svg7563" | |||
version="1.1" | |||
inkscape:version="0.48.2 r9819" | |||
sodipodi:docname="carla.svg"> | |||
<defs | |||
id="defs7565"> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-3-7-8" | |||
id="linearGradient4914" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-3-7-8"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-0-6-8" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-9-31-9" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-03-6" | |||
id="linearGradient4912" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-03-6"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-04-0" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-4-4" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-9-3" | |||
id="linearGradient4910" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-9-3"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-8-3" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-48-3" /> | |||
</linearGradient> | |||
<radialGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-29-7" | |||
id="radialGradient4906" | |||
gradientUnits="userSpaceOnUse" | |||
cx="-2.1428571" | |||
cy="203.07646" | |||
fx="-2.1428571" | |||
fy="203.07646" | |||
r="22.184671" /> | |||
<linearGradient | |||
id="linearGradient6174-29-7"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-3-5" /> | |||
<stop | |||
id="stop8118-9-3" | |||
offset="0.06451613" | |||
style="stop-color:#636363;stop-opacity:1;" /> | |||
<stop | |||
id="stop8116-0-8" | |||
offset="0.28928199" | |||
style="stop-color:#797979;stop-opacity:1;" /> | |||
<stop | |||
id="stop8114-8-8" | |||
offset="0.58732504" | |||
style="stop-color:#a6a6a6;stop-opacity:1;" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-850-3" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6182-63-8" | |||
id="linearGradient4908" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-19.337217" | |||
y1="186.92368" | |||
x2="10.874059" | |||
y2="218.95074" /> | |||
<linearGradient | |||
id="linearGradient6182-63-8"> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="0" | |||
id="stop6184-856-9" /> | |||
<stop | |||
style="stop-color:#3b3b3b;stop-opacity:1;" | |||
offset="1" | |||
id="stop6186-11-6" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6164-63-1" | |||
id="linearGradient4904" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-26.607141" | |||
y1="171.6479" | |||
x2="43.750004" | |||
y2="251.6479" /> | |||
<linearGradient | |||
id="linearGradient6164-63-1"> | |||
<stop | |||
style="stop-color:#919191;stop-opacity:1;" | |||
offset="0" | |||
id="stop6166-94-8" /> | |||
<stop | |||
style="stop-color:#f0f0f0;stop-opacity:1;" | |||
offset="1" | |||
id="stop6168-8-5" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6187-8-7" | |||
id="linearGradient5018" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="translate(-318.57139,-494.85713)" | |||
x1="375.71429" | |||
y1="946.64789" | |||
x2="331.42856" | |||
y2="839.50507" /> | |||
<linearGradient | |||
id="linearGradient6187-8-7"> | |||
<stop | |||
style="stop-color:#1a1a1a;stop-opacity:1;" | |||
offset="0" | |||
id="stop6189-7-89" /> | |||
<stop | |||
style="stop-color:#202020;stop-opacity:1;" | |||
offset="1" | |||
id="stop6191-2-1" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-3-0" | |||
id="linearGradient4900" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-3-0"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-0-3" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-9-0" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-7-9" | |||
id="linearGradient4898" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-7-9"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-6-8" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-4-48" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-3-8-6" | |||
id="linearGradient4896" | |||
gradientUnits="userSpaceOnUse" | |||
x1="10.874059" | |||
y1="218.95074" | |||
x2="-19.337217" | |||
y2="186.92368" /> | |||
<linearGradient | |||
id="linearGradient6174-3-8-6"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-1-8-1" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-8-8-1" /> | |||
</linearGradient> | |||
<radialGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6174-9" | |||
id="radialGradient4892" | |||
gradientUnits="userSpaceOnUse" | |||
cx="-2.1428571" | |||
cy="203.07646" | |||
fx="-2.1428571" | |||
fy="203.07646" | |||
r="22.184671" /> | |||
<linearGradient | |||
id="linearGradient6174-9"> | |||
<stop | |||
style="stop-color:#4d4d4d;stop-opacity:1;" | |||
offset="0" | |||
id="stop6176-0" /> | |||
<stop | |||
id="stop8118-8" | |||
offset="0.06451613" | |||
style="stop-color:#636363;stop-opacity:1;" /> | |||
<stop | |||
id="stop8116-8" | |||
offset="0.28928199" | |||
style="stop-color:#797979;stop-opacity:1;" /> | |||
<stop | |||
id="stop8114-5" | |||
offset="0.58732504" | |||
style="stop-color:#a6a6a6;stop-opacity:1;" /> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="1" | |||
id="stop6178-0" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6182-6" | |||
id="linearGradient4894" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-19.337217" | |||
y1="186.92368" | |||
x2="10.874059" | |||
y2="218.95074" /> | |||
<linearGradient | |||
id="linearGradient6182-6"> | |||
<stop | |||
style="stop-color:#ffffff;stop-opacity:1;" | |||
offset="0" | |||
id="stop6184-3" /> | |||
<stop | |||
style="stop-color:#3b3b3b;stop-opacity:1;" | |||
offset="1" | |||
id="stop6186-8" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6164-1" | |||
id="linearGradient5147" | |||
gradientUnits="userSpaceOnUse" | |||
x1="-26.607141" | |||
y1="171.6479" | |||
x2="43.750004" | |||
y2="251.6479" /> | |||
<linearGradient | |||
id="linearGradient6164-1"> | |||
<stop | |||
style="stop-color:#919191;stop-opacity:1;" | |||
offset="0" | |||
id="stop6166-2" /> | |||
<stop | |||
style="stop-color:#f0f0f0;stop-opacity:1;" | |||
offset="1" | |||
id="stop6168-9" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient6187-8-2" | |||
id="linearGradient5041" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="translate(-318.57139,-494.85713)" | |||
x1="375.71429" | |||
y1="946.64789" | |||
x2="331.42856" | |||
y2="839.50507" /> | |||
<linearGradient | |||
id="linearGradient6187-8-2"> | |||
<stop | |||
style="stop-color:#1a1a1a;stop-opacity:1;" | |||
offset="0" | |||
id="stop6189-7-8" /> | |||
<stop | |||
style="stop-color:#202020;stop-opacity:1;" | |||
offset="1" | |||
id="stop6191-2-3" /> | |||
</linearGradient> | |||
<filter | |||
color-interpolation-filters="sRGB" | |||
inkscape:collect="always" | |||
id="filter6576-0" | |||
x="-0.10272374" | |||
width="1.2054476" | |||
y="-0.10272374" | |||
height="1.2054476"> | |||
<feGaussianBlur | |||
inkscape:collect="always" | |||
stdDeviation="6.8910506" | |||
id="feGaussianBlur6578-6" /> | |||
</filter> | |||
<filter | |||
color-interpolation-filters="sRGB" | |||
inkscape:collect="always" | |||
id="filter8786-1-1"> | |||
<feGaussianBlur | |||
inkscape:collect="always" | |||
stdDeviation="8.96" | |||
id="feGaussianBlur8788-3-4" /> | |||
</filter> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient4657-7-2" | |||
id="linearGradient4884" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)" | |||
x1="241.21584" | |||
y1="795.42145" | |||
x2="-21.002575" | |||
y2="516.61938" /> | |||
<linearGradient | |||
id="linearGradient4657-7-2"> | |||
<stop | |||
style="stop-color:#000000;stop-opacity:1" | |||
offset="0" | |||
id="stop4659-6-0" /> | |||
<stop | |||
id="stop4661-39-6" | |||
offset="0.29307336" | |||
style="stop-color:#500000;stop-opacity:1" /> | |||
<stop | |||
id="stop4663-1-8" | |||
offset="0.80562556" | |||
style="stop-color:#a00000;stop-opacity:1" /> | |||
<stop | |||
style="stop-color:#d40000;stop-opacity:1" | |||
offset="1" | |||
id="stop4665-0-9" /> | |||
</linearGradient> | |||
<linearGradient | |||
inkscape:collect="always" | |||
xlink:href="#linearGradient3902-1-6" | |||
id="linearGradient4886" | |||
gradientUnits="userSpaceOnUse" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)" | |||
x1="320.00772" | |||
y1="662.08124" | |||
x2="-128.07874" | |||
y2="629.75647" /> | |||
<linearGradient | |||
id="linearGradient3902-1-6"> | |||
<stop | |||
style="stop-color:#783c00;stop-opacity:1" | |||
offset="0" | |||
id="stop3904-18-6" /> | |||
<stop | |||
id="stop3936-6-4" | |||
offset="0.07563529" | |||
style="stop-color:#d4a41c;stop-opacity:1" /> | |||
<stop | |||
id="stop3934-4-9" | |||
offset="0.14044002" | |||
style="stop-color:#743800;stop-opacity:1" /> | |||
<stop | |||
id="stop3932-3-5" | |||
offset="0.20430526" | |||
style="stop-color:#fcf87c;stop-opacity:1" /> | |||
<stop | |||
id="stop3930-4-0" | |||
offset="0.26901498" | |||
style="stop-color:#a86c00;stop-opacity:1" /> | |||
<stop | |||
id="stop3928-7-4" | |||
offset="0.3417097" | |||
style="stop-color:#9c6000;stop-opacity:1" /> | |||
<stop | |||
id="stop3926-7-8" | |||
offset="0.41261438" | |||
style="stop-color:#fcfc80;stop-opacity:1" /> | |||
<stop | |||
id="stop3924-0-7" | |||
offset="0.48499879" | |||
style="stop-color:#8c5000;stop-opacity:1" /> | |||
<stop | |||
id="stop3922-7-1" | |||
offset="0.54586536" | |||
style="stop-color:#fcfc80;stop-opacity:1" /> | |||
<stop | |||
id="stop3920-45-7" | |||
offset="0.62692177" | |||
style="stop-color:#d09c14;stop-opacity:1" /> | |||
<stop | |||
id="stop3918-3-2" | |||
offset="0.68774176" | |||
style="stop-color:#804400;stop-opacity:1" /> | |||
<stop | |||
id="stop3916-0-7" | |||
offset="0.75042593" | |||
style="stop-color:#d0a014;stop-opacity:0.9372549;" /> | |||
<stop | |||
id="stop3914-7-2" | |||
offset="0.81777459" | |||
style="stop-color:#743800;stop-opacity:1" /> | |||
<stop | |||
id="stop3912-2-2" | |||
offset="0.87812954" | |||
style="stop-color:#d0a014;stop-opacity:0.74901961;" /> | |||
<stop | |||
id="stop3910-9-6" | |||
offset="0.94099933" | |||
style="stop-color:#743800;stop-opacity:1" /> | |||
<stop | |||
style="stop-color:#fcfc80;stop-opacity:1" | |||
offset="1" | |||
id="stop3906-9-1" /> | |||
</linearGradient> | |||
<linearGradient | |||
y2="516.61938" | |||
x2="-21.002575" | |||
y1="795.42145" | |||
x1="241.21584" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)" | |||
gradientUnits="userSpaceOnUse" | |||
id="linearGradient7559" | |||
xlink:href="#linearGradient4657-7-2" | |||
inkscape:collect="always" /> | |||
<linearGradient | |||
y2="629.75647" | |||
x2="-128.07874" | |||
y1="662.08124" | |||
x1="320.00772" | |||
gradientTransform="matrix(0.83385449,0,0,0.83385449,-12.083733,130.8065)" | |||
gradientUnits="userSpaceOnUse" | |||
id="linearGradient7561" | |||
xlink:href="#linearGradient3902-1-6" | |||
inkscape:collect="always" /> | |||
</defs> | |||
<sodipodi:namedview | |||
id="base" | |||
pagecolor="#ffffff" | |||
bordercolor="#666666" | |||
borderopacity="1.0" | |||
inkscape:pageopacity="0.0" | |||
inkscape:pageshadow="2" | |||
inkscape:zoom="1.4" | |||
inkscape:cx="56.017745" | |||
inkscape:cy="139.84931" | |||
inkscape:document-units="px" | |||
inkscape:current-layer="layer1" | |||
showgrid="false" | |||
fit-margin-top="0" | |||
fit-margin-left="0" | |||
fit-margin-right="0" | |||
fit-margin-bottom="0" | |||
inkscape:window-width="1177" | |||
inkscape:window-height="615" | |||
inkscape:window-x="183" | |||
inkscape:window-y="0" | |||
inkscape:window-maximized="0" /> | |||
<metadata | |||
id="metadata7568"> | |||
<rdf:RDF> | |||
<cc:Work | |||
rdf:about=""> | |||
<dc:format>image/svg+xml</dc:format> | |||
<dc:type | |||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |||
<dc:title /> | |||
</cc:Work> | |||
</rdf:RDF> | |||
</metadata> | |||
<g | |||
inkscape:label="Layer 1" | |||
inkscape:groupmode="layer" | |||
id="layer1" | |||
transform="translate(-263.42857,-301.50504)"> | |||
<g | |||
transform="translate(326.01884,-229.79599)" | |||
style="display:inline" | |||
id="g8790-3-0" | |||
inkscape:export-filename="/home/pj/Documents/svg/path10192-9.png" | |||
inkscape:export-xdpi="89.989967" | |||
inkscape:export-ydpi="89.989967"> | |||
<rect | |||
transform="matrix(0.83385449,0,0,0.83385449,-10.399092,130.80653)" | |||
ry="32" | |||
rx="32" | |||
y="505.79703" | |||
x="-37.086269" | |||
height="256" | |||
width="256" | |||
id="rect3756-4-1-0-0-5" | |||
style="opacity:0.93280634;fill:#1a1a1a;fill-opacity:1;stroke:#1a1a1a;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter8786-1-1)" /> | |||
<rect | |||
ry="26.683344" | |||
rx="26.683344" | |||
y="552.56763" | |||
x="-41.323643" | |||
height="213.46675" | |||
width="213.46675" | |||
id="rect3756-4-1-2-9" | |||
style="fill:url(#linearGradient7559);fill-opacity:1;stroke:url(#linearGradient7561);stroke-width:6.67083597;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> | |||
</g> | |||
<rect | |||
style="opacity:0.89723319;color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6576-0);enable-background:accumulate" | |||
id="rect6570-4" | |||
width="161" | |||
height="161" | |||
x="308.26733" | |||
y="345.81552" | |||
inkscape:export-filename="/home/pj/Documents/svg/path10192-9.png" | |||
inkscape:export-xdpi="89.989967" | |||
inkscape:export-ydpi="89.989967" /> | |||
<rect | |||
style="color:#000000;fill:url(#linearGradient5041);fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-2" | |||
width="160.31299" | |||
height="79.151245" | |||
x="308.61084" | |||
y="346.66428" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="opacity:0.5;fill:#ff0000;stroke:url(#linearGradient5147);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6162-2" | |||
sodipodi:cx="-4.2857141" | |||
sodipodi:cy="198.79076" | |||
sodipodi:rx="35.714287" | |||
sodipodi:ry="35" | |||
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z" | |||
transform="matrix(0.47724548,0,0,0.48698502,335.16334,289.43179)" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#radialGradient4892);fill-opacity:1;stroke:url(#linearGradient4894);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-4" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.63497502,0,0,0.64793348,334.47874,254.65988)" /> | |||
<rect | |||
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-6-7" | |||
width="51.698875" | |||
height="62.038593" | |||
x="357.92554" | |||
y="354.54916" /> | |||
<text | |||
xml:space="preserve" | |||
style="font-size:16.68160248px;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" | |||
x="362.2439" | |||
y="383.95786" | |||
id="text4618-7" | |||
sodipodi:linespacing="125%"><tspan | |||
sodipodi:role="line" | |||
id="tspan4620-5" | |||
x="362.2439" | |||
y="383.95786">Carla</tspan></text> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#linearGradient4896);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-3-9-4" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.34133826,0,0,0.34830423,368.00834,328.43419)" /> | |||
<rect | |||
style="opacity:0.66000001;fill:#4b4b4b;fill-opacity:1;stroke:#949494;stroke-width:0.63269919;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="rect3534-6-4-8" | |||
width="46.528988" | |||
height="61.944588" | |||
x="414.79419" | |||
y="354.64645" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-1" | |||
width="41.3591" | |||
height="26.326447" | |||
x="417.37915" | |||
y="357.74368" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-4-2" | |||
width="41.3591" | |||
height="26.326456" | |||
x="417.37915" | |||
y="387.16739" /> | |||
<rect | |||
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-89" | |||
width="21.972023" | |||
height="12.388914" | |||
x="417.37915" | |||
y="357.74368" /> | |||
<rect | |||
style="fill:#00ff00;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-8-3" | |||
width="27.141911" | |||
height="12.388914" | |||
x="417.37915" | |||
y="371.68124" /> | |||
<rect | |||
style="fill:#00ffd2;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-86-6" | |||
width="14.217191" | |||
height="12.388914" | |||
x="417.37915" | |||
y="387.16739" /> | |||
<rect | |||
style="fill:#00ffd2;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-9-8-8-8" | |||
width="37.481686" | |||
height="12.388914" | |||
x="417.37915" | |||
y="401.10489" /> | |||
<g | |||
style="display:inline" | |||
id="g8185-0" | |||
transform="translate(263.42854,-494.85714)"> | |||
<path | |||
transform="matrix(0.34133826,0,0,0.34830423,121.07781,823.29132)" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
sodipodi:ry="20.714285" | |||
sodipodi:rx="20.714285" | |||
sodipodi:cy="203.07646" | |||
sodipodi:cx="-2.1428571" | |||
id="path6172-3-9-3-21" | |||
style="fill:url(#linearGradient4898);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |||
sodipodi:type="arc" /> | |||
<path | |||
inkscape:connector-curvature="0" | |||
id="path8165-0" | |||
d="m 120.34637,888.07647 0,4.64285" | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<g | |||
style="display:inline" | |||
id="g8273-5" | |||
transform="translate(263.42854,-494.85714)"> | |||
<path | |||
transform="matrix(0.34133826,0,0,0.34830423,137.57584,823.29132)" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
sodipodi:ry="20.714285" | |||
sodipodi:rx="20.714285" | |||
sodipodi:cy="203.07646" | |||
sodipodi:cx="-2.1428571" | |||
id="path6172-3-9-3-2-1" | |||
style="fill:url(#linearGradient4900);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" | |||
sodipodi:type="arc" /> | |||
<path | |||
inkscape:connector-curvature="0" | |||
id="path8165-9-10" | |||
d="m 142.2413,891.52509 -4.21321,1.95061" | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> | |||
</g> | |||
<path | |||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" | |||
d="m 362.05344,396.32314 4.0778,2.21981" | |||
id="path8165-9-4-85" | |||
inkscape:connector-curvature="0" /> | |||
<rect | |||
style="color:#000000;fill:url(#linearGradient5018);fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:3.71435571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-5-6" | |||
width="160.31299" | |||
height="79.151245" | |||
x="308.61084" | |||
y="426.81552" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="opacity:0.50000006;fill:#ff0000;stroke:url(#linearGradient4904);stroke-width:4.71404982;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6162-9-4" | |||
sodipodi:cx="-4.2857141" | |||
sodipodi:cy="198.79076" | |||
sodipodi:rx="35.714287" | |||
sodipodi:ry="35" | |||
d="m 31.428573,198.79076 c 0,19.32996 -15.989831,35 -35.7142871,35 -19.7244559,0 -35.7142869,-15.67004 -35.7142869,-35 0,-19.32997 15.989831,-35 35.7142869,-35 19.7244561,0 35.7142871,15.67003 35.7142871,35 z" | |||
transform="matrix(0.47724548,0,0,0.48698502,335.16334,369.58303)" /> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#radialGradient4906);fill-opacity:1;stroke:url(#linearGradient4908);stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-6-6" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.63497502,0,0,0.64793348,334.47874,334.81112)" /> | |||
<rect | |||
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-6-2-2" | |||
width="51.698875" | |||
height="62.038593" | |||
x="357.92554" | |||
y="434.70041" /> | |||
<text | |||
xml:space="preserve" | |||
style="font-size:16.68160248px;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" | |||
x="362.2439" | |||
y="464.1091" | |||
id="text4618-1-5" | |||
sodipodi:linespacing="125%"><tspan | |||
sodipodi:role="line" | |||
id="tspan4620-7-8" | |||
x="362.2439" | |||
y="464.1091">Carla</tspan></text> | |||
<path | |||
sodipodi:type="arc" | |||
style="fill:url(#linearGradient4910);fill-opacity:1;stroke:#2a2a2a;stroke-width:2.94077349;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" | |||
id="path6172-3-9-8-6" | |||
sodipodi:cx="-2.1428571" | |||
sodipodi:cy="203.07646" | |||
sodipodi:rx="20.714285" | |||
sodipodi:ry="20.714285" | |||
d="m 18.571428,203.07646 c 0,11.44019 -9.2741014,20.71429 -20.7142851,20.71429 -11.4401839,0 -20.7142849,-9.2741 -20.7142849,-20.71429 0,-11.44018 9.274101,-20.71428 20.7142849,-20.71428 11.4401837,0 20.7142851,9.2741 20.7142851,20.71428 z" | |||
transform="matrix(0.34133826,0,0,0.34830423,368.00834,408.58542)" /> | |||
<rect | |||
style="opacity:0.66000001;color:#000000;fill:#4b4b4b;fill-opacity:1;fill-rule:nonzero;stroke:#949494;stroke-width:0.63269919;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" | |||
id="rect3534-6-4-5-2" | |||
width="46.528988" | |||
height="61.944588" | |||
x="414.79419" | |||
y="434.7977" /> | |||
<rect | |||
style="fill:#000000;fill-opacity:1;stroke:none;display:inline" | |||
id="rect3534-6-4-4-7-8" | |||