Conversion to the cmake building system.

Add includes to UI files to resolve FTBFS.

Signed-off-by: gregory guy <g-gregory@gmx.fr>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
pull/2/head
gregory guy 5 years ago committed by Slávek Banko
parent 9fb4e1ccde
commit d4a1613e9f
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -0,0 +1,121 @@
############################################
# #
# Improvements and feedbacks are welcome #
# #
# This file is released under GPL >= 3 #
# #
############################################
cmake_minimum_required( VERSION 2.8 )
#### general package setup
project( tdeedu )
set( VERSION R14.1.0 )
#### include essential cmake modules
include( FindPkgConfig )
include( CheckFunctionExists )
include( CheckSymbolExists )
include( CheckIncludeFile )
include( CheckLibraryExists )
include( CheckCSourceCompiles )
include( CheckCXXSourceCompiles )
#### include our cmake modules
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEMacros )
enable_testing( )
##### setup install paths
include( TDESetupPaths )
tde_setup_paths( )
##### optional stuff
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
option( WITH_ARTS "Enable aRts support" ${WITH_ALL_OPTIONS} )
option( WITH_OCAML_SOLVER "Enable ocalm/facile solver (kalzium)" ${WITH_ALL_OPTIONS} )
option( WITH_LIBUSB "Enable libusb support (kstars)" ${WITH_ALL_OPTIONS} )
option( WITH_V4L "Enable video4linux support (kstars)" ${WITH_ALL_OPTIONS} )
##### user requested modules
option( BUILD_ALL "Build all" ON )
option( BUILD_BLINKEN "Build blinken" ${BUILD_ALL} )
option( BUILD_KALZIUM "Build kalzium" ${BUILD_ALL} )
option( BUILD_KANAGRAM "Build kanagram" ${BUILD_ALL} )
option( BUILD_KBRUCH "Build kbruch" ${BUILD_ALL} )
option( BUILD_KEDUCA "Build keduca" ${BUILD_ALL} )
option( BUILD_KGEOGRAPHY "Build kgeography" ${BUILD_ALL} )
option( BUILD_KHANGMAN "Build khangman" ${BUILD_ALL} )
option( BUILD_KIG "Build kig" ${BUILD_ALL} )
option( BUILD_KITEN "Build kiten" ${BUILD_ALL} )
option( BUILD_KLATIN "Build klatin" ${BUILD_ALL} )
option( BUILD_KLETTRES "Build klettres" ${BUILD_ALL} )
option( BUILD_KMPLOT "Build kmplot" ${BUILD_ALL} )
option( BUILD_KPERCENTAGE "Build kpercentage" ${BUILD_ALL} )
option( BUILD_KSTARS "Build kstars" ${BUILD_ALL} )
option( BUILD_KTOUCH "Build ktouch" ${BUILD_ALL} )
option( BUILD_KTURTLE "Build kturtle" ${BUILD_ALL} )
option( BUILD_KVERBOS "Build kverbos" ${BUILD_ALL} )
option( BUILD_KVOCTRAIN "Build kvoctrain" ${BUILD_ALL} )
option( BUILD_KWORDQUIZ "Build kwordquiz" ${BUILD_ALL} )
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
##### configure checks
include( ConfigureChecks.cmake )
###### global compiler settings
add_definitions( -DHAVE_CONFIG_H )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
##### directories
add_subdirectory( applnk )
add_subdirectory( libtdeedu )
tde_conditional_add_subdirectory( BUILD_BLINKEN blinken )
tde_conditional_add_subdirectory( BUILD_KALZIUM kalzium )
tde_conditional_add_subdirectory( BUILD_KANAGRAM kanagram )
tde_conditional_add_subdirectory( BUILD_KBRUCH kbruch )
tde_conditional_add_subdirectory( BUILD_KEDUCA keduca )
tde_conditional_add_subdirectory( BUILD_KGEOGRAPHY kgeography )
tde_conditional_add_subdirectory( BUILD_KHANGMAN khangman )
tde_conditional_add_subdirectory( BUILD_KIG kig )
tde_conditional_add_subdirectory( BUILD_KITEN kiten )
tde_conditional_add_subdirectory( BUILD_KLATIN klatin )
tde_conditional_add_subdirectory( BUILD_KLETTRES klettres )
tde_conditional_add_subdirectory( BUILD_KMPLOT kmplot )
tde_conditional_add_subdirectory( BUILD_KPERCENTAGE kpercentage )
tde_conditional_add_subdirectory( BUILD_KSTARS kstars )
tde_conditional_add_subdirectory( BUILD_KTOUCH ktouch )
tde_conditional_add_subdirectory( BUILD_KTURTLE kturtle )
tde_conditional_add_subdirectory( BUILD_KVERBOS kverbos )
tde_conditional_add_subdirectory( BUILD_KVOCTRAIN kvoctrain )
tde_conditional_add_subdirectory( BUILD_KWORDQUIZ kwordquiz )
tde_conditional_add_subdirectory( BUILD_DOC doc )
##### write configure files
configure_file( config.h.cmake config.h @ONLY )

@ -0,0 +1,83 @@
###########################################
# #
# Improvements and feedback are welcome #
# #
# This file is released under GPL >= 3 #
# #
###########################################
# required stuff
find_package( TQt )
find_package( TDE )
tde_setup_architecture_flags( )
include(TestBigEndian)
test_big_endian(WORDS_BIGENDIAN)
tde_setup_largefiles( )
##### check for gcc visibility support
if( WITH_GCC_VISIBILITY )
tde_setup_gcc_visibility( )
endif( WITH_GCC_VISIBILITY )
##### check for arts
if( WITH_ARTS )
pkg_search_module( ARTS arts )
if( NOT ARTS_FOUND )
tde_message_fatal( "aRts is requested but was not found on your system" )
endif( NOT ARTS_FOUND )
set( WITHOUT_ARTS false )
endif( WITH_ARTS )
if( NOT WITH_ARTS )
set( WITHOUT_ARTS 1 )
endif( NOT WITH_ARTS )
##### check for Python
if( BUILD_KIG )
find_package( PythonInterp )
find_package( PythonLibs )
if( NOT PYTHONLIBS_FOUND )
tde_message_fatal( "Python is required, but was not found on your system" )
endif( NOT PYTHONLIBS_FOUND )
if( "${PYTHON_VERSION_STRING}" VERSION_LESS "3.0" )
set( KIG_Python_init "initkig"
CACHE STRING "KIG: Init function for python-boost" )
else( )
set( KIG_Python_init "PyInit_kig"
CACHE STRING "KIG: Init function for python-boost" )
endif( )
endif( )
##### check for Doxygen
if( BUILD_DOC AND BUILD_KIG )
find_program( DOXYGEN_BINARY NAMES doxygen )
if( NOT DOXYGEN_BINARY )
tde_message_fatal( "Doxygen is required to build Kig scripting api documentation, but was not found on your system" )
endif( )
endif( )
##### check for boost
if( BUILD_KIG OR BUILD_KBRUCH )
find_package( Boost )
if( NOT Boost_FOUND )
tde_message_fatal( "Boost is required, but was not found on your system" )
endif( NOT Boost_FOUND )
endif( BUILD_KIG OR BUILD_KBRUCH )

@ -0,0 +1,31 @@
##### desktop files
install(
FILES languages.desktop
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Languages
RENAME .directory
)
install(
FILES mathematics.desktop
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Mathematics
RENAME .directory
)
install(
FILES science.desktop
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Science
RENAME .directory
)
install(
FILES tools.desktop
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Tools
RENAME .directory
)
install(
FILES miscellaneous.desktop
DESTINATION ${APPS_INSTALL_DIR}/Edutainment/Miscellaneous
RENAME .directory
)

@ -0,0 +1,13 @@
add_subdirectory( src )
add_subdirectory( images )
add_subdirectory( icons )
add_subdirectory( sounds )
add_subdirectory( fonts )
##### other data
install(
FILES README.packagers
DESTINATION ${DATA_INSTALL_DIR}/blinken
)

@ -0,0 +1,4 @@
install(
FILES steve.ttf
DESTINATION ${DATA_INSTALL_DIR}/blinken/fonts
)

@ -0,0 +1 @@
tde_install_icons( blinken )

@ -0,0 +1,6 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/blinken/images
)

@ -0,0 +1,7 @@
Graphics by Danny Allen (danny@dannyallen.co.uk)
Packaged 5th August 2005
Included here are the cleaned-up SVG sources from my creation of the blinKen graphics.
I have packaged them up for future reference and modification.
Enjoy!

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 65 KiB

@ -0,0 +1,6 @@
file( GLOB _wavs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.wav )
install(
FILES ${_wavs}
DESTINATION ${DATA_INSTALL_DIR}/blinken/sounds
)

@ -0,0 +1,51 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### blinken (executable)
tde_add_executable( blinken AUTOMOC
SOURCES
main.cpp
blinken.cpp
artsplayer.cpp
blinkengame.cpp
number.cpp
highscoredialog.cpp
counter.cpp
fontutils.cpp
fontchecker.cpp
button.cpp
settings.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
artskde-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES blinken.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES blinken.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1,23 @@
#define VERSION "@VERSION@"
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
// blinken and kanagram can build without aRts support.
#cmakedefine WITHOUT_ARTS 1
// Defined to 1 if you have ocaml/facile.
#cmakedefine HAVE_FACILE 1
// Define the version for the kig app.
#define KIGVERSION "0.10.7"
// Define the Python interpreter (python2 vs python3)
#cmakedefine KIG_Python_init @KIG_Python_init@
// Defined to 1 if you have <linux/videodev2.h> header file.
#cmakedefine HAVE_LINUX_VIDEODEV2_H 1

@ -0,0 +1,21 @@
add_subdirectory( man )
tde_conditional_add_subdirectory( BUILD_BLINKEN blinken )
tde_conditional_add_subdirectory( BUILD_KALZIUM kalzium )
tde_conditional_add_subdirectory( BUILD_KANAGRAM kanagram )
tde_conditional_add_subdirectory( BUILD_KBRUCH kbruch )
tde_conditional_add_subdirectory( BUILD_KEDUCA keduca )
tde_conditional_add_subdirectory( BUILD_KGEOGRAPHY kgeography )
tde_conditional_add_subdirectory( BUILD_KHANGMAN khangman )
tde_conditional_add_subdirectory( BUILD_KIG kig )
tde_conditional_add_subdirectory( BUILD_KITEN kiten )
tde_conditional_add_subdirectory( BUILD_KLATIN klatin )
tde_conditional_add_subdirectory( BUILD_KLETTRES klettres )
tde_conditional_add_subdirectory( BUILD_KMPLOT kmplot )
tde_conditional_add_subdirectory( BUILD_KPERCENTAGE kpercentage )
tde_conditional_add_subdirectory( BUILD_KSTARS kstars )
tde_conditional_add_subdirectory( BUILD_KTOUCH ktouch )
tde_conditional_add_subdirectory( BUILD_KTURTLE kturtle )
tde_conditional_add_subdirectory( BUILD_KVERBOS kverbos )
tde_conditional_add_subdirectory( BUILD_KVOCTRAIN kvoctrain )
tde_conditional_add_subdirectory( BUILD_KWORDQUIZ kwordquiz )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION blinken )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kalzium )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kanagram )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kbruch )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION keduca )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kgeography )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION khangman )

@ -0,0 +1,3 @@
add_subdirectory( scripting-api )
tde_create_handbook( DESTINATION kig )

@ -0,0 +1,18 @@
set( top_srcdir ${CMAKE_SOURCE_DIR} )
set( srcdir ${CMAKE_CURRENT_SOURCE_DIR} )
configure_file( Doxyfile.scripting-api.in Doxyfile.scripting-api @ONLY )
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
file( COPY ${_pics} DESTINATION ${CMAKE_CURRENT_BINARY_DIR} )
add_custom_target( kig-scripting-apidox ALL
COMMAND ${DOXYGEN_BINARY} Doxyfile.scripting-api
COMMENT "Build Kig scripting-api documentation"
)
install(
DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/build/html/
DESTINATION ${HTML_INSTALL_DIR}/en/kig/scripting-api
PATTERN "${CMAKE_CURRENT_BINARY_DIR}/build/html/*"
)

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kiten )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION klatin )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION klettres )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kmplot )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kpercentage )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kstars )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION ktouch )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kturtle )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kverbos )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kvoctrain )

@ -0,0 +1 @@
tde_create_handbook( DESTINATION kwordquiz )

@ -0,0 +1,20 @@
tde_conditional_add_subdirectory( BUILD_BLINKEN blinken )
tde_conditional_add_subdirectory( BUILD_KALZIUM kalzium )
tde_conditional_add_subdirectory( BUILD_KANAGRAM kanagram )
tde_conditional_add_subdirectory( BUILD_KBRUCH kbruch )
tde_conditional_add_subdirectory( BUILD_KEDUCA keduca )
tde_conditional_add_subdirectory( BUILD_KGEOGRAPHY kgeography )
tde_conditional_add_subdirectory( BUILD_KHANGMAN khangman )
tde_conditional_add_subdirectory( BUILD_KIG kig )
tde_conditional_add_subdirectory( BUILD_KITEN kiten )
tde_conditional_add_subdirectory( BUILD_KLATIN klatin )
tde_conditional_add_subdirectory( BUILD_KLETTRES klettres )
tde_conditional_add_subdirectory( BUILD_KMPLOT kmplot )
tde_conditional_add_subdirectory( BUILD_KPERCENTAGE kpercentage )
tde_conditional_add_subdirectory( BUILD_KSTARS indi )
tde_conditional_add_subdirectory( BUILD_KSTARS kstars )
tde_conditional_add_subdirectory( BUILD_KTOUCH ktouch )
tde_conditional_add_subdirectory( BUILD_KTURTLE kturtle )
tde_conditional_add_subdirectory( BUILD_KVERBOS kverbos )
tde_conditional_add_subdirectory( BUILD_KVOCTRAIN kvoctrain )
tde_conditional_add_subdirectory( BUILD_KWORDQUIZ kwordquiz )

@ -0,0 +1,5 @@
INSTALL(
FILES blinken.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,52 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH BLINKEN 1 "December 13, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
blinken \- electronic memory game for TDE
.SH SYNOPSIS
.B blinken
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBBlinken\fP is based on an electronic game released in 1978 called
``Simon Says'', which challenges players to remember sequences of
increasing length. On the face of the device, there are 4 different
color buttons, each with its own distinctive sound. These buttons
light up randomly, creating the sequence that the player must then
recall. If the player is successful in remembering the sequence of
lights in the correct order, they advance to the next stage, where an
identical sequence with one extra step is presented.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIblinken \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/blinken/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/blinken/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/blinken/\fP.
.SH AUTHOR
Blinken was written by Albert Astals Cid <tsdgeos@terra.es> and
Danny Allen <danny@dannyallen.co.uk>.
.br
This manual page was prepared by Daniel Schepler <schepler@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,17 @@
INSTALL(
FILES
celestrongps.1
indiserver.1
lx200classic.1
temma.1
lx200_16.1
lx200generic.1
v4ldriver.1
fliccd.1
lx200autostar.1
lx200gps.1
v4lphilips.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH CELESTRONGPS 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
celestrongps \- Celestron GPS driver for INDI telescope control
.SH SYNOPSIS
.B celestrongps
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBcelestrongps\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH FLICCD 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
fliccd \- Finger Lakes Instruments CCD driver for INDI telescope control
.SH SYNOPSIS
.B v4ldriver
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBfliccd\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,123 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH INDISERVER 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
indiserver \- INDI server for telescope control under KStars
.SH SYNOPSIS
.B indiserver
[ \fB\-p\fP \fIport\fP ]
[ \fB\-r\fP \fIattempts\fP ]
[ \fB\-vv\fP ]
\fIdriver\fP [ \fIdriver\fP ... ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBindiserver\fP is a server that sits between the
KStars user interface and the low-level hardware drivers.
.PP
The INDI server is a network server, in that either local or remote clients
may connect to it to control astronomical instruments. The INDI server must
be running on the machine that is physically connected to the
astronomical instruments.
.PP
Note that there is no need for you to run the INDI server directly. Using
the KStars device manager, you can set up astronomical instruments and start
or stop the INDI server all from within KStars.
.PP
You may however choose to run the INDI server manually from the command
line. In this case you must pass the names of one or more drivers for
individual astronomical instruments. The current list of available
drivers is:
.PP
.RS
celestrongps (Celestron GPS)
.br
fliccd (Finger Lakes Instruments CCD)
.br
lx200_16 (LX200 16")
.br
lx200autostar (LX200 Autostar)
.br
lx200classic (LX200 Classic)
.br
lx200generic (LX200 Generic)
.br
lx200gps (LX200 GPS)
.br
temma (Temma Takahashi)
.br
v4ldriver (Video4Linux Generic)
.br
v4lphilips (Philips Webcam)
.RE
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-p\fP \fIport\fP
Specify the port to listen on (defaults to 7624).
.TP
\fB\-r\fP \fIattempts\fP
Specify the maximum number of restart attempts for each driver (defaults to 2).
.TP
\fB\-vv\fP
Write more verbose output to stderr.
.SH EXAMPLE
To start an INDI server running an LX200 GPS driver and listening to
connections on port 8000:
.PP
.RS
\fIprompt$\fP indiserver -p 8000 lx200gps
.RE
.SH SEE ALSO
.BR celestrongps (1),
.BR fliccd (1),
.BR lx200_16 (1),
.BR lx200autostar (1),
.BR lx200classic (1),
.BR lx200generic (1),
.BR lx200gps (1),
.BR kstars (1),
.BR temma (1),
.BR v4ldriver (1),
.BR v4lphilips (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH LX200_16 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
lx200_16 \- LX200 16" driver for INDI telescope control
.SH SYNOPSIS
.B lx200_16
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBlx200_16\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH LX200AUTOSTAR 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
lx200autostar \- LX200 Autostar driver for INDI telescope control
.SH SYNOPSIS
.B lx200autostar
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBlx200autostar\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH LX200CLASSIC 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
lx200classic \- LX200 Classic driver for INDI telescope control
.SH SYNOPSIS
.B lx200classic
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBlx200classic\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH LX200GENERIC 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
lx200generic \- LX200 Generic driver for INDI telescope control
.SH SYNOPSIS
.B lx200generic
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBlx200generic\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH LX200GPS 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
lx200gps \- LX200 GPS driver for INDI telescope control
.SH SYNOPSIS
.B lx200gps
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBlx200gps\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH TEMMA 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
temma \- Temma Takahashi driver for INDI telescope control
.SH SYNOPSIS
.B temma
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBtemma\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH V4LDRIVER 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
v4ldriver \- Video4Linux Generic driver for INDI telescope control
.SH SYNOPSIS
.B v4ldriver
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBv4ldriver\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH V4LPHILIPS 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
v4lphilips \- Philips Webcam driver for INDI telescope control
.SH SYNOPSIS
.B v4lphilips
[ \fB\-v\fP ]
.SH DESCRIPTION
KStars allows you to configure
and control astronomical instruments such as telescopes and focusers via
the INDI protocol. \fBv4lphilips\fP is a device driver for supporting
particular types of external hardware.
.PP
You should normally not need to run this driver directly. Instead you
should use KStars to configure and operate your astronomical instruments.
Most operations can be found under the Devices menu within KStars.
.PP
KStars will start the INDI server internally, and the INDI server will
in turn start this device driver.
.PP
Much more detailed information can be found in the KStars Handbook, as
described below.
.PP
KStars is a graphical desktop planetarium for TDE, and forms part of
the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-v\fP
Write more verbose output to stderr.
.SH SEE ALSO
.BR indiserver (1),
.BR kstars (1).
.PP
The KStars Handbook contains detailed information on how to use INDI for
telescope control. You can read this handbook in the TDE Help Centre.
Alternatively you can enter the URL
\fIhelp:/kstars/indi.html\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/indi.html\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/indi.html\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kalzium.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,55 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KALZIUM 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kalzium \- a chemistry teaching tool for TDE
.SH SYNOPSIS
.B kalzium
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKalzium\fP is a program which shows you the Periodic System of
Elements (PSE). You can use Kalzium to search for information about
the elements or to learn facts about the PSE.
.PP
Kalzium provides you with all kinds of information about the PSE. You
can look up lots of information about the elements and also use
visualisations to show them.
.PP
You can visualize the Periodic Table of the Elements by blocks, groups,
acidic behavior or different states of matter. You can also plot data for a
range of elements (weight, mean weight, density, IE1, IE2, electronegativity),
and you can go back in time to see what elements were known at a given date.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkalzium \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kalzium/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kalzium/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kalzium/\fP.
.SH AUTHOR
Kalzium was written by Carsten Niehaus <cniehaus@kde.org>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kanagram.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,53 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KANAGRAM 1 "December 13, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kanagram \- a letter order game for TDE
.SH SYNOPSIS
.B kanagram
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKAnagram\fP is a game that is based on the word/letter puzzles that the
author played as a child. A word is picked at random and displayed with
its letters in a messed order, with difficulty dependent on the chosen level.
You have an unlimited number of attempts, and scores are kept.
.PP
It is a very simply constructed game, with 3 dificulty levels of play.
It is fully customizable, allowing you to write in your own words and set
your own 'look and feel' of the game. It is aimed for children aged 10+
because of the difficulty, but of course everyone is welcome to try.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkanagram \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kanagram/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kanagram/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kanagram/\fP.
.SH AUTHOR
KAnagram was written by Joshua Keel <joshuakeel@gmail.com> and
Danny Allen <danny@dannyallen.co.uk>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kbruch.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,47 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KBRUCH 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kbruch \- a fraction calculation teaching tool for TDE
.SH SYNOPSIS
.B kbruch
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKBruch\fP is a small program to practice calculating with fractions.
Different exercises are provided for this purpose. The program checks
the user's input and gives feedback.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkbruch \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kbruch/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kbruch/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kbruch/\fP.
.SH AUTHOR
KBruch was written by Sebastian Stein <seb.kde@hpfsc.de>,
Eva Brucherseifer <eva@kde.org> and others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES keduca.1 keducabuilder.1 keduca-shrinker.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,66 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KEDUCA-SHRINKER 1 "September 1, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
keduca-shrinker \- extract a random sample from a large KEduca test file
.SH SYNOPSIS
.B keduca-shrinker
[ \fB\-o, \-\-output\fP=\fIfile\fP ]
[ \fB\-n, \-\-number\fP=\fInumber\fP ]
\fB\-i, \-\-input\fP=\fIfile\fP
.SH DESCRIPTION
\fBkeduca-shrinker\fP is a small program that reads a large KEduca
test file (.edu) and extracts a random sample of questions to create a
new smaller test file. For example, it could take a 100 question test
file as input and then output a test file with 20 questions selected at
random.
.PP
Note that the input file \fBmust\fP be uncompressed. When you save the
original test in the KEduca Editor, you should explicitly clear the "Compress
the file" checkbox. Otherwise keduca-shrinker will not be able to read it.
.PP
\fBKEduca\fP is a flash-card application for working with interactive
form-based tests. It is shipped as part of the official TDE edutainment
module.
.SH OPTIONS
.TP
\fB\-i, \-\-input\fP=\fIfile\fP
The large KEduca test file that should be read as input.
.TP
\fB\-o, \-\-output\fP=\fIfile\fP
The smaller KEduca test file that should be written as output.
This defaults to the input filename with \fI-shrinked\fP appended to its
base. For example, if the input file is \fIfoo.edu\fP then the
default output file is \fIfoo-shrinked.edu\fP.
.TP
\fB\-n, \-\-number\fP=\fInumber\fP
The number of random questions to select from the input file.
This defaults to 20.
.SH SEE ALSO
.BR keduca (1),
.BR keducabuilder (1).
.PP
This tool is not yet part of the official TDE edutainment module.
Its upstream site is
\fIhttps://gna.org/projects/keduca-shrinker/\fP.
.SH AUTHOR
keduca-shrinker was written by Mathieu Roy <yeupou@coleumes.org>.
It is licensed under the GNU General Public License (see the script
itself for details).
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,53 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KEDUCA 1 "September 1, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
keduca \- interactive form-based tests for TDE
.SH SYNOPSIS
.B keduca
.RI "[ " generic-options " ]"
[ \fIfile\fP ]
.SH DESCRIPTION
\fBKEduca\fP is a flash-card application that allows you to work with
interactive form-based tests. This application is used only for viewing
and taking these tests \- you can create and edit tests using the
related application \fBKEducaBuilder\fP.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkeduca \-\-help\fP.
.SH SEE ALSO
.BR keduca-shrinker (1),
.BR keducabuilder (1).
.PP
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/keduca/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/keduca/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/keduca/\fP.
.SH AUTHOR
KEduca was written by Javier Campos <javi@asyris.org>,
Klas Kalass <klas@kde.org>, Henrique Pinto <henrique.pinto@kdemail.net>
and Anne-Marie Mahfouf <annma@kde.org>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,53 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KEDUCABUILDER 1 "September 1, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
keducabuilder \- test/exam editor for KEduca
.SH SYNOPSIS
.B keducabuilder
.RI "[ " generic-options " ]"
[ \fIfile\fP ]
.SH DESCRIPTION
\fBKEducaBuilder\fP is the test editor for \fBKEduca\fP, a flash-card
application for working with interactive form-based tests.
KEducaBuilder is used to create and edit these tests, whereas KEduca
itself can be used to view and take these tests.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkeduca \-\-help\fP.
.SH SEE ALSO
.BR keduca (1),
.BR keduca-shrinker (1).
.PP
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/keduca/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/keduca/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/keduca/\fP.
.SH AUTHOR
KEduca was written by Javier Campos <javi@asyris.org>,
Klas Kalass <klas@kde.org>, Henrique Pinto <henrique.pinto@kdemail.net>
and Anne-Marie Mahfouf <annma@kde.org>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kgeography.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,47 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KGEOGRAPHY 1 "December 13, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kgeography \- geography learning tool for TDE
.SH SYNOPSIS
.B kgeography
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKGeography\fP contains maps allowing you to learn various countries or
the political divisions of several countries. It has several modes,
including a map browser and games involving the names, capitals, or
flags of the map divisions.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkgeography \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kgeography/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kgeography/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kgeography/\fP.
.SH AUTHOR
KGeography was written by Albert Astals Cid <tsdgeos@terra.es>.
.br
This manual page was prepared by Daniel Schepler <schepler@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES khangman.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,52 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KHANGMAN 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
khangman \- the classical hangman game for TDE
.SH SYNOPSIS
.B khangman
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKHangMan\fP is a game based on the well known hangman game. It is aimed
for children aged 6 and above. It has four levels of difficulty:
Animals (animals words), Easy, Medium and Hard.
.PP
A word is picked at random and the letters are hidden. You must guess
the word by trying one letter after another. Each time you guess a wrong
letter, a picture of a hangman is drawn. You must guess the word before
getting hanged! You have 10 tries.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkhangman \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/khangman/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/khangman/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/khangman/\fP.
.SH AUTHOR
KHangMan was written by Primoz Anzur <zerokode@gmx.net> and
Anne-Marie Mahfouf <annma@kde.org>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kig.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,81 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KIG 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kig \- an interactive geometry program for TDE
.SH SYNOPSIS
.B kig
.RI "[ " generic-options " ]"
[ \fIURL\fP ]
.br
.B kig \-c, \-\-convert\-to\-native
[ \fB\-o, \-\-outfile\fP \fInative-file\fP ]
\fIfile\fP
.SH DESCRIPTION
\fBKig\fP is an application for interactive geometry. It is intended to
serve two purposes:
.PP
.RS
\- to allow students to interactively explore mathematical figures and
concepts using the computer;
.PP
\- to serve as a WYSIWYG tool for drawing mathematical figures and
including them in other documents.
.RE
.PP
With this program you can do geometry on a computer just like you would
on a blackboard in a classroom. However, the program allows you to move
and change parts of a geometrical drawing so that you can see how the other
parts change as a result.
.PP
Kig supports loci and user-defined macros. It also supports imports
and exports to/from foreign file formats including Cabri, Dr. Geo, KGeo,
KSeg and XFig.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
Below are the kig-specific options.
For a full summary of options, run \fIkig \-\-help\fP.
.TP
.B \-c, \-\-convert\-to\-native
Do not show a GUI. Instead, convert the specified file to the native
Kig format. The native Kig file will be written to standard output
unless \-\-outfile is passed (see below).
.TP
\fB\-o, \-\-outfile\fP \fInative-file\fP
Used with \-\-convert\-to\-native to specify where to save the newly
created Kig file. Note that a filename of '\-' means standard
output (which is also the default).
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kig/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kig/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kig/\fP.
.SH AUTHOR
Kig was written by Dominique Devriese <devriese@kde.org>,
Maurizio Paolini <paolini@dmf.bs.unicatt.it>,
Franco Pasquarelli <pasqui@dmf.bs.unicatt.it>,
Pino Toscano <toscano.pino@tiscali.it> and others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kiten.1 kitengen.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,52 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KITEN 1 "May 12, 2003"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kiten \- a Japanese reference/study tool for TDE
.SH SYNOPSIS
.B kiten
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKiten\fP is a Japanese reference and study tool for TDE. It is an
application with multiple functions. Firstly, it is a convenient
English to Japanese and Japanese to English dictionary. Secondly, it is
a Kanji dictionary, with multiple ways to look up specific characters.
Thirdly, it is a tool to help you learn Kanji.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkiten \-\-help\fP.
.SH SEE ALSO
.BR kitengen (1).
.PP
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kiten/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kiten/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kiten/\fP.
.SH AUTHOR
Kiten was written by Jason Katz-Brown <jason@katzbrown.com>,
Jim Breen <jwb@csse.monash.edu.au> and
Neil Stevens <neil@qualityassistant.com>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,55 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KITENGEN 1 "May 12, 2003"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kitengen \- index table generator for Kiten
.SH SYNOPSIS
.B kitengen
.I input output.xjdx
.SH DESCRIPTION
\fBkitengen\fP is an index table generator for Kiten.
.PP
This program is for Kiten's internal use and should \fBnot\fP be run
directly.
.PP
\fBKiten\fP is a Japanese reference and study tool for TDE. It is an
application with multiple functions. Firstly, it is a convenient
English to Japanese and Japanese to English dictionary. Secondly, it is
a Kanji dictionary, with multiple ways to look up specific characters.
Thirdly, it is a tool to help you learn Kanji.
.PP
This application is part of the official TDE edutainment module.
.SH SEE ALSO
.BR kiten (1).
.PP
Full user documentation for Kiten is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kiten/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kiten/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kiten/\fP.
.SH AUTHOR
Kiten was written by Jason Katz-Brown <jason@katzbrown.com>,
Jim Breen <jwb@csse.monash.edu.au> and
Neil Stevens <neil@qualityassistant.com>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES klatin.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,56 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KLATIN 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
klatin \- an application to help revise/teach Latin
.SH SYNOPSIS
.B klatin
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKLatin\fP is a program to help revise Latin. There are three "sections"
in which different aspects of the language can be revised. These are the
vocabulary, grammar and verb testing sections. In addition there is a
set of revision notes that can be used for self-guided revision.
.PP
In the vocabulary section an XML file is loaded containing various
words and their local language translations. KLatin asks you what each
of these words translate into. The questions take place in a
multiple-choice environment.
.PP
In the grammar and verb sections KLatin asks for a particular part of a
noun or a verb, such as the "ablative singular", or the "1st person
indicative passive plural", and is not multiple choice.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIklatin \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/klatin/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/klatin/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/klatin/\fP.
.SH AUTHOR
KLatin was written by George Wright <gwright@kde.org> and others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES klettres.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,50 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KLETTRES 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
klettres \- a foreign alphabet tutor for TDE
.SH SYNOPSIS
.B klettres
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKLettres\fP is an application specially designed to help the user to
learn the alphabet in a new language and then to learn to read simple
syllables. The user can be a young child aged from two and a half or an
adult that wants to learn the basics of a foreign language.
.PP
Seven languages are currently available: Czech, Danish, Dutch, English,
French, Italian and Slovak.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIklettres \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/klettres/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/klettres/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/klettres/\fP.
.SH AUTHOR
KLettres was written by Anne-Marie Mahfouf <annma@kde.org> and many others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kmplot.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,58 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KMPLOT 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kmplot \- a mathematical function plotter for TDE
.SH SYNOPSIS
.B kmplot
.RI "[ " generic-options " ]"
[ \fIURL\fP ]
.SH DESCRIPTION
\fBKmPlot\fP is a mathematical function plotter for TDE.
It has a powerful built-in parser. You can plot different functions
simultaneously and combine them to build new functions.
.PP
KmPlot supports parametric functions and functions in polar
coordinates. Several grid modes are supported. Plots may be printed
with high precision in the correct scale.
.PP
KmPlot also provides some numerical and visual features, like
filling and calculating the area between the plot and the first axis,
finding maximum and minimum values,
changing function parameters dynamically and
plotting derivatives and integral functions.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkmplot \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kmplot/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kmplot/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kmplot/\fP.
.SH AUTHOR
KmPlot was written by Klaus-Dieter Moeller <tdmoeller@foni.net>,
Matthias Messmer <bmlmessmer@web.de> and Fredrik Edemar <f_edemar@linux.se>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kpercentage.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,50 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KPERCENTAGE 1 "May 12, 2003"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kpercentage \- a percentage calculation teaching tool for TDE
.SH SYNOPSIS
.B kpercentage
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKPercentage\fP is a small math application that will help pupils to
improve their skills in calculating percentages.
.PP
There is a special training section for the three basic tasks. Finally
the pupil can select a random mode, in which all three tasks are mixed
randomly.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkpercentage \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kpercentage/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kpercentage/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kpercentage/\fP.
.SH AUTHOR
KPercentage was written by Matthias Messmer <bmlmessmer@web.de>,
Carsten Niehaus <cniehaus@gmx.de> and Robert Gogolok <mail@robert-gogolok.de>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kstars.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,117 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KSTARS 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kstars \- a desktop planetarium for TDE
.SH SYNOPSIS
.B kstars
.RI "[ " generic-options " ]"
[ \fB\-\-date\fP \fIdate-and-time\fP ]
[ \fB\-\-paused\fP ]
.PP
.B kstars \fB\-\-dump\fP
[ \fB\-\-filename\fP \fIimage-file\fP ]
[ \fB\-\-height\fP \fIpixels\fP ] [ \fB\-\-width\fP \fIpixels\fP ]
[ \fB\-\-date\fP \fIdate-and-time\fP ]
[ \fB\-\-script\fP \fIscript-file\fP ]
.SH DESCRIPTION
\fBKStars\fP is a graphical desktop planetarium for TDE. It depicts an
accurate simulation of the night sky, including stars, constellations,
star clusters, nebulae, galaxies, all planets, the Sun, the Moon,
comets and asteroids. You can see the sky as it appears from any
location on Earth, on any date.
.PP
The user interface is highly intuitive and flexible. The display can
be panned and zoomed with the mouse, and you can easily identify
objects and track their motion across the sky. KStars includes many
powerful features, yet the interface is clean and simple and fun to use.
.PP
Normally KStars launches a full graphical user interface. By passing the
\fB\-\-dump\fP option, you can make KStars dump an image of the sky to
a graphics file and exit immediately without launching a graphical user
interface at all. Several other options are available to control
precisely how this image is dumped.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
Below are the kstars-specific options.
For a full summary of options, run \fIkstars \-\-help\fP.
.PP
Options that can be used when starting the full graphical user interface
are as follows.
.TP
\fB\-\-date\fP \fIdate-and-time\fP
Starts with the simulation clock set to the given date and time (default is
current date and time).
.TP
\fB\-\-paused\fP
Starts with the simulation clock paused.
.PP
Options that can be used when dumping an image of the sky are as
follows.
.TP
\fB\-\-dump\fP
Dumps the sky image to a graphics file and exits immediately.
Several other options (described below) are available to control
precisely how the image is dumped.
.TP
\fB\-\-date\fP \fIdate-and-time\fP
Specifies the date and time for the sky image to dump (default is
current date and time).
.TP
\fB\-\-filename\fP \fIimage-file\fP
Dumps the sky image to the given file (default is \fIkstars.png\fP).
.TP
\fB\-\-height\fP \fIpixels\fP
Specifies the height of the sky image to dump (default is 480).
.TP
\fB\-\-script\fP \fIscript-file\fP
Specifies a DCOP script to run before the sky image is dumped.
The script can be used to set where the image is pointing, set the
geographic location, set the time and date, change the zoom level, and
adjust other view options.
.br
KStars includes a script builder (found in the Tools menu) to help
with writing DCOP scripts. The full user documentation (discussed
below) contains a more detailed explanation of how such scripts can
be written and used.
.TP
\fB\-\-width\fP \fIpixels\fP
Specifies the width of the sky image to dump (default is 640).
.SH SEE ALSO
.BR indiserver (1).
.PP
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kstars/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kstars/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kstars/\fP.
.SH AUTHOR
KStars was written by Jason Harris <jharris@30doradus.org>,
Heiko Evermann <heiko@evermann.de>, Thomas Kabelmann <tk78@gmx.de>,
Pablo de Vicente <pvicentea@wanadoo.es>, Jasem Mutlaq <mutlaqja@ikarustech.com>,
Carsten Niehaus <cniehaus@gmx.de>, Mark Hollomon <mhh@mindspring.com>,
Vincent Jagot <vincent.jagot@free.fr> and
Martin Piskernig <martin.piskernig@stuwo.at>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES ktouch.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,56 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KTOUCH 1 "January 31, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
ktouch \- a touch typing tutor for TDE
.SH SYNOPSIS
.B ktouch
.RI "[ " generic-options " ]"
[ \fIURL\fP ]
.SH DESCRIPTION
\fBKTouch\fP is a program for learning touch typing \- it helps you learn to
type on a keyboard quickly and correctly. Every finger has its place on
the keyboard with associated keys to press.
.PP
KTouch helps you learn to touch type by providing you with text to
train on, and adjusts to different levels depending on how good you are.
It can display which key to press next, and the correct finger to use.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
Below are the ktouch-specific options.
For a full summary of options, run \fIktouch \-\-help\fP.
.TP
\fIURL\fP
The training file to open.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/ktouch/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/ktouch/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/ktouch/\fP.
.SH AUTHOR
KTouch was written by Haavard Froeiland <haavard@users.sourceforge.net>
and Andreas Nicolai <Andreas.Nicolai@gmx.net>.
.br
This manual page was prepared
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kturtle.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,61 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KTURTLE 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kturtle \- an educational Logo programming environment
.SH SYNOPSIS
.B kturtle
.RI "[ " generic-options " ]"
.SH DESCRIPTION
\fBKTurtle\fP is an educational programming environment using the Logo
programming language. It tries to make programming as easy and
accessible as possible. This makes KTurtle suitable for teaching kids
the basics of mathematics, geometry and programming.
.PP
The commands used to program are in the style of the Logo programming
language. The unique feature of Logo is that the commands are often
translated into the speaking language of the programmer.
.PP
KTurtle is named after "the turtle" that plays a central role in the
programming environment. The user programs the turtle, using the Logo
commands, to draw a picture on the canvas.
.PP
Note that this version of Logo is only focused on the educational
qualities of the programming language and will not try to suit
professional programmers' needs.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkturtle \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kturtle/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kturtle/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kturtle/\fP.
.SH AUTHOR
KTurtle was written by Cies Breijs <cies # kde.nl>,
Walter Schreppers <Walter.Schreppers # ua.ac.be> and
Anne-Marie Mahfouf <annemarie.mahfouf # free.fr>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kverbos.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,54 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KVERBOS 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kverbos \- a Spanish verb form study application for TDE
.SH SYNOPSIS
.B kverbos
.RI "[ " generic-options " ] [ " file " ]"
.SH DESCRIPTION
\fBKverbos\fP allows the user to learn the forms of Spanish verbs. The program
suggests a verb and a time and the user enters the different verb forms.
The program corrects the user input and gives feedback.
.PP
The user can edit the list of the verbs that can be studied. The program
can build regular verb forms by itself. Irregular verb forms have to be
entered by the user.
.PP
If a form of a verb is uncertain then the internet offers good sources:
.br
http://csgrs6k1.uwaterloo.ca/~dmg/lando/verbos/con-jugador.html
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkverbos \-\-help\fP.
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kverbos/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kverbos/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kverbos/\fP.
.SH AUTHOR
Kverbos was written by Arnold Kraschinski <arnold.k67@gmx.de>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kvoctrain.1 langen2kvtml.1 spotlight2kvtml.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,60 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KVOCTRAIN 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kvoctrain \- a vocabulary trainer for TDE
.SH SYNOPSIS
.B kvoctrain
.RI "[ " generic-options " ] [ " file " ]"
.SH DESCRIPTION
\fBKVocTrain\fP is a little utility to help you train your vocabulary when you
are trying to learn a foreign language. You can create your own database
with the words you need. It is intended as a replacement for index
(flash) cards.
.PP
You probably remember flashcards from school. The teacher would write the
original expression on the front side of the card and the translation on
the back. Then look at the cards one after another. If you knew the
translation, you could put it away. If you failed, you put it back to
try again.
.PP
KVocTrain is not intended to teach you grammer or other sophisticated
things. This is and probably will stay beyond the scope of this application.
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fIkvoctrain \-\-help\fP.
.SH SEE ALSO
.BR langen2kvtml (1),
.BR spotlight2kvtml (1).
.PP
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kvoctrain/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kvoctrain/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kvoctrain/\fP.
.SH AUTHOR
KVocTrain was written by Ewald Arnold <kvoctrain@ewald-arnold.de>
and Peter Hedlund <peter@peterandlinda.com>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,83 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH LANGEN2KVTML 1 "November 22, 2002"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
langen2kvtml \- convert Langenscheidt data files to KVocTrain data files
.SH SYNOPSIS
.B langen2kvtml
[ \fB\-\-lang=\fP\fIxx\fP ] [ \fB\-\-trans=\fP\fIxx\fP ]
[ \fB\-\-author=\fP\fIname\fP ] [ \fB\-\-longlesson\fP ]
[ \fB\-\-outdir=\fP\fIdir\fP ] [ \fB\-\-proxy=\fP\fIproxy\fP ]
{ \fB\-\-country=\fP\fIxx\fP | \fIvocfile\fP ... }
.SH DESCRIPTION
\fBlangen2kvtml\fP is a script that will convert Langenscheidt
data files (*.voc) to KVocTrain data files (*.kvtml).
.PP
For each Langenscheidt data file given on the command-line, a
corresponding KVocTrain data file will be created. If no Langenscheidt
data files are given, a set of data files for the given country (see
the \fB\-\-country\fP option) will be downloaded from the internet and
converted. If neither data files nor a country are specified, country
GB (Great Britain) will be assumed.
.PP
Note that you \fBmust\fP run KVocTrain at least once before this script
can be used. In some circumstances this script will edit the user's
KVocTrain preferences file.
.PP
This utility is part of the official TDE edutainment module.
.SH OPTIONS
.TP
\fB\-\-lang=\fP\fIxx\fP
Specifies the original language used in the data file(s). The script
will try to guess this based on the names of the Langenscheidt data files.
.TP
\fB\-\-trans=\fP\fIxx\fP
Specifies the translated language used in the data file(s). This
defaults to de (Deutsch).
.TP
\fB\-\-author=\fP\fIname\fP
Specifies the author of the data file(s). This defaults to
http://www.vokabeln.de.
.TP
\fB\-\-longlesson\fP
Specifies that long lesson names should be used in the converted
KVocTrain data file(s). Short lesson names are the default.
.TP
\fB\-\-outdir=\fP\fIdir\fP
Specifies that the converted KVocTrain data files be written in the
given directory. This defaults to the current directory.
.TP
\fB\-\-proxy=\fP\fIproxy\fP
Specifies a proxy to use when downloading Langenscheidt data files from
the internet.
.TP
\fB\-\-country=\fP\fIxx\fP
Requests that Langenscheidt data files for the given country be
downloaded from the internet and converted. The country should be
specified by the code used at \fIhttp://www.vokabeln.de/\fP, such as
GB for Great Britain, D for Germany and so on.
.SH SEE ALSO
.BR kvoctrain (1),
.BR spotlight2kvtml (1).
.PP
Langenscheidt data files can be downloaded directly from
\fIhttp://www.vokabeln.de/files.htm\fP.
.SH AUTHOR
langen2kvtml was written by Andreas Neuper.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,52 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH SPOTLIGHT2KVTML 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
spotlight2kvtml \- convert a Spotlight Online vocabulary list to a
KVocTrain data file
.SH SYNOPSIS
.B spotlight2kvtml
.I spotfile month year
.SH DESCRIPTION
\fBspotlight2kvtml\fP is used to convert a Spotlight Online vocabulary
list to a KVocTrain data file (*.kvtml).
.PP
The given vocabulary list (\fIspotfile\fP) must be in plain text format
(i.e., you will need to convert the downloaded RTF or Word document into
a plain text file). The name of the new KVocTrain data file
will be derived from the given \fIspotfile\fP.
.PP
The given month and year will be used in the title and lesson names
in the new KVocTrain data file.
.PP
Note that Spotlight Online changes its vocabulary list format from time
to time, so spotlight2kvtml might be out of date and might not behave
correctly.
.PP
This utility is part of the official TDE edutainment module.
.SH SEE ALSO
.BR kvoctrain (1),
.BR langen2kvtml (1).
.PP
Spotlight Online vocabulary lists can be downloaded from
\fIhttp://www.spotlight-online.de/\fP.
.SH AUTHOR
spotlight2kvtml was written by Ewald Arnold <kvoctrain@ewald-arnold.de>
and others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES kwordquiz.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,69 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH KWORDQUIZ 1 "March 16, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
kwordquiz \- a flashcard and vocabulary learning program for TDE
.SH SYNOPSIS
.B kwordquiz
.RI "[ " generic-options " ]"
.PP
.B kwordquiz
.RI "[ " generic-options " ]"
[ \fB\-m, \-\-mode\fP \fInumber\fP ]
[ \fB\-g, \-\-goto\fP \fIsession\fP ]
.I file
.SH DESCRIPTION
\fBKWordQuiz\fP is a flashcard-based tool that helps you to master new
vocabularies. It may be a language or any other kind of terminology.
.PP
KWordQuiz can open several types of vocabulary data. Supported
are \fI.kvtml\fP files used by other TDE programs such as KVocTrain,
\fI.wql\fP files used by WordQuiz for Windows, \fI.csv\fP files with
comma-separated text, and \fI.xml.gz\fP
files created by Pauker (\fIhttp://pauker.sourceforge.net/\fP).
.PP
This application is part of the official TDE edutainment module.
.SH OPTIONS
Below are the kwordquiz-specific options.
For a full summary of options, run \fIkwordquiz \-\-help\fP.
.PP
.TP
\fB\-m, \-\-mode\fP \fInumber\fP
Specify the order and direction in which questions are asked.
The \fInumber\fP argument must be 1, 2, 3, 4 or 5 (corresponding to the
five entries in the Mode menu).
.TP
\fB\-g, \-\-goto\fP \fIsession\fP
Begin a quiz immediately. The \fIsession\fP argument may be
\fBflash\fP (for a flashcard quiz), \fBmc\fP (for a multiple choice
quiz) or \fBqa\fP (for a question and answer quiz).
.SH SEE ALSO
Full user documentation is available through the TDE Help Centre.
You can also enter the URL
\fIhelp:/kwordquiz/\fP
directly into konqueror or you can run
`\fIkhelpcenter help:/kwordquiz/\fP'
from the command-line.
.PP
If the TDE Help Centre is not installed then you can install the package
\fItdeedu-doc-html\fP and read this documentation in HTML format from
\fI/opt/trinity/share/doc/tde/HTML/en/kwordquiz/\fP.
.SH AUTHOR
KWordQuiz was written by Peter Hedlund <peter@peterandlinda.com>.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,5 @@
INSTALL(
FILES test_extdate.1 test_extdatepicker.1
DESTINATION ${MAN_INSTALL_DIR}/man1
COMPONENT doc
)

@ -0,0 +1,47 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH TEST_EXTDATE 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
test_extdate \- text-based tests for the ExtDate classes
.SH SYNOPSIS
.B test_extdate
.SH DESCRIPTION
This is a simple test program for testing the non-GUI functionality of the
ExtDate classes. It compares the results of several operations against
the results from QDate and writes the results to the console.
.PP
The \fBExtDate library\fP consists of a group of classes allowing TDE
applications to access calendar dates outside of the limited range of
years imposed by QDate.
.PP
The QDate class has a limited range of valid dates. It does not
recognize dates prior to 14 Oct 1752 (when the Gregorian calendar
was adopted by England), nor dates after 31 Dec 8000. Both of these
limits are arbitrary.
.PP
This library is part of the official TDE edutainment module.
.SH SEE ALSO
.BR test_extdatepicker (1).
.PP
See \fI/opt/trinity/share/doc/libtdeedu-dev/README.extdate\fP for further
information on this library.
.SH AUTHOR
The ExtDate library was written by Jason Harris <jharris@30doradus.org>
and others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,50 @@
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH TEST_EXTDATEPICKER 1 "October 16, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
test_extdatepicker \- GUI-based tests for the ExtDate classes
.SH SYNOPSIS
.B test_extdatepicker
[ \fIgeneric-options\fP ]
.SH DESCRIPTION
This is a simple test program for testing the graphical functionality of
the ExtDate classes. It presents a KDatePicker widget and an
ExtDatePicker widget side by side for user interaction.
.PP
The \fBExtDate library\fP consists of a group of classes allowing TDE
applications to access calendar dates outside of the limited range of
years imposed by QDate.
.PP
The QDate class has a limited range of valid dates. It does not
recognize dates prior to 14 Oct 1752 (when the Gregorian calendar
was adopted by England), nor dates after 31 Dec 8000. Both of these
limits are arbitrary.
.PP
This library is part of the official TDE edutainment module.
.SH OPTIONS
For a full summary of options, run \fItest_extdatepicker \-\-help\fP.
.SH SEE ALSO
.BR test_extdate (1).
.PP
See \fI/opt/trinity/share/doc/libtdeedu-dev/README.extdate\fP for further
information on this library.
.SH AUTHOR
The ExtDate library was written by Jason Harris <jharris@30doradus.org>
and others.
.br
This manual page was prepared by Ben Burton <bab@debian.org>
for the Debian GNU/Linux system (but may be used by others).

@ -0,0 +1,8 @@
##### configure checks
include( ConfigureChecks.cmake )
##### subdirectories
add_subdirectory( src )

@ -0,0 +1,75 @@
###########################################
# #
# Improvements and feedback are welcome #
# #
# This file is released under GPL >= 3 #
# #
###########################################
##### check for ocaml/facile
if( WITH_OCAML_SOLVER )
if( NOT DEFINED HAVE_OCAML )
message( STATUS "Search for ocaml" )
foreach( _exec ocamlc ocamldep ocamlopt )
string( TOUPPER "${_exec}_EXECUTABLE" _exec_var )
if( NOT DEFINED ${_exec_var} )
find_program( ${_exec_var} NAMES ${_exec} )
if( NOT ${_exec_var} )
tde_message_fatal( "${_exec} is requested, but was not found on your system" )
endif( )
endif( )
endforeach( )
if( NOT DEFINED OCAML_BASEDIR )
execute_process(
COMMAND ${OCAMLOPT_EXECUTABLE} -where
OUTPUT_VARIABLE OCAML_BASEDIR
ERROR_VARIABLE OCAML_BASEDIR
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_STRIP_TRAILING_WHITESPACE
)
if( EXISTS ${OCAML_BASEDIR} AND IS_DIRECTORY ${OCAML_BASEDIR} )
set( OCAML_BASEDIR ${OCAML_BASEDIR} CACHE PATH "Ocaml base directory" )
set( OCAML_LIBRARY_DIR ${OCAML_BASEDIR} CACHE PATH "Ocaml libraries directory" )
else( )
tde_message_fatal( "Ocaml is requested, but was not found on your system" )
endif( )
endif( )
set( HAVE_OCAML 1 CACHE INTERNAL "" )
message( STATUS "Search for ocaml - found" )
endif( )
if( NOT DEFINED HAVE_FACILE )
message( STATUS "Search for facile" )
if( NOT DEFINED FACILE_LIBRARIES )
find_library( FACILE_LIBRARIES
NAMES facile.a
HINTS ${OCAML_BASEDIR}
PATH_SUFFIXES facile ocaml/facile
)
endif( )
if( NOT DEFINED FACILE_INCLUDE_DIR )
find_path( FACILE_INCLUDE_DIR
NAMES facile.cmi
HINTS ${OCAML_BASEDIR}
PATH_SUFFIXES facile lib/ocaml/facile
)
endif( )
if( NOT DEFINED FACILE_LIBRARIES OR NOT DEFINED FACILE_INCLUDE_DIR )
tde_message_fatal( "Facile is requested, but was not found on your system" )
endif( )
set( HAVE_FACILE 1 CACHE INTERNAL "Enable build with ocaml/facile" )
message( STATUS "Search for facile - found" )
endif( )
endif( WITH_OCAML_SOLVER )

@ -0,0 +1,109 @@
add_subdirectory( icons )
add_subdirectory( elementpics )
add_subdirectory( data )
tde_conditional_add_subdirectory( WITH_OCAML_SOLVER solver )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/libtdeedu/tdeeduplot
${CMAKE_SOURCE_DIR}/libtdeedu/tdeeduui
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
${OCAML_LIBRARY_DIR}
)
if( WITH_OCAML_SOLVER )
set( OCAML_LIBRARIES asmrun nums m ${CMAKE_DL_LIBS} )
set( OCAML_SOLVER
${CMAKE_CURRENT_BINARY_DIR}/solver/modwrap.o
${CMAKE_CURRENT_BINARY_DIR}/solver/solver.o
)
else( )
add_custom_target( kalzium_solver COMMENT "Empty kalzium solver" )
endif( )
##### kalzium (executable)
tde_add_executable( kalzium AUTOMOC
SOURCES
prefs.kcfgc
settings_colors.ui
settings_misc.ui
settings_units.ui
plotsetupwidget.ui
molcalcwidgetbase.ui
timewidget.ui
somwidget.ui
spectrumview.ui
eqresult.cpp
eqchemview.cpp
kalzium.cpp
main.cpp
periodictableview.cpp
element.cpp
detailinfodlg.cpp
orbitswidget.cpp
plotwidget.cpp
elementdataviewer.cpp
detailedgraphicaloverview.cpp
molcalcwidget.cpp
timewidget_impl.cpp
somwidget_impl.cpp
kalziumtip.cpp
spectrum.cpp
isotope.cpp
kalziumdataobject.cpp
spectrumwidget.cpp
exporter.cpp
spectrumviewimpl.cpp
kalziumutils.cpp
parser.cpp
moleculeparser.cpp
tempunit.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdehtml-shared
tdeeduplot-shared
tdeeduui-shared
${OCAML_SOLVER}
${OCAML_LIBRARIES}
DEPENDENCIES
kalzium_solver
DESTINATION ${BIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES kalziumui.rc
DESTINATION ${DATA_INSTALL_DIR}/kalzium
)
install(
FILES kalzium.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kalzium.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1,9 @@
add_subdirectory( toolpics )
##### other data
install(
FILES bg.jpg data.xml knowledge.xml tools.xml
DESTINATION ${DATA_INSTALL_DIR}/kalzium/data
)

@ -0,0 +1,6 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.jpg *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/kalzium/data/toolpics
)

@ -0,0 +1,6 @@
file( GLOB _jpgs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.jpg )
install(
FILES ${_jpgs}
DESTINATION ${DATA_INSTALL_DIR}/kalzium/elempics
)

@ -0,0 +1,6 @@
tde_auto_add_subdirectories( htmlview )
##### icons
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kalzium/icons )

@ -0,0 +1,6 @@
file( GLOB _pngs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pngs} icons.svg style.css
DESTINATION ${DATA_INSTALL_DIR}/kalzium/data/htmlview
)

@ -128,8 +128,8 @@
<slot access="protected">slotCalcButtonClicked()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -249,8 +249,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>kcombobox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -902,35 +902,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -0,0 +1,118 @@
##### macro to build ocaml sources
macro( tde_add_ocaml_source _target _ml )
get_filename_component( basename "${_ml}" NAME_WE )
if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${basename}.mli )
add_custom_command(
OUTPUT
${CMAKE_CURRENT_BINARY_DIR}/${basename}.cmi
COMMENT "Compile ${basename}.mli"
COMMAND ${OCAMLC_EXECUTABLE}
-o ${CMAKE_CURRENT_BINARY_DIR}/${basename}.cmi
-I ${FACILE_INCLUDE_DIR}
-c ${CMAKE_CURRENT_SOURCE_DIR}/${basename}.mli
DEPENDS
${CMAKE_CURRENT_SOURCE_DIR}/${basename}.ml
${ARGN}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
set( _build_cmi ${CMAKE_CURRENT_BINARY_DIR}/${basename}.cmi )
else( )
set( _build_cmi "" )
endif( )
add_custom_command(
OUTPUT
${CMAKE_CURRENT_BINARY_DIR}/${basename}.cmx
COMMENT "Compile ${basename}.ml"
COMMAND ${OCAMLOPT_EXECUTABLE}
-o ${CMAKE_CURRENT_BINARY_DIR}/${basename}.cmx
-I ${FACILE_INCLUDE_DIR}
-c ${CMAKE_CURRENT_SOURCE_DIR}/${basename}.ml
DEPENDS
${CMAKE_CURRENT_SOURCE_DIR}/${basename}.ml
${_build_cmi}
${ARGN}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
list( APPEND ${_target}-ocaml
${CMAKE_CURRENT_BINARY_DIR}/${basename}.cmx
)
endmacro( )
# build kalzium ocaml solver
tde_add_ocaml_source( kalzium_solver chemset.ml )
tde_add_ocaml_source( kalzium_solver datastruct.ml
${CMAKE_CURRENT_BINARY_DIR}/chemset.cmi
)
tde_add_ocaml_source( kalzium_solver chem.ml
${CMAKE_CURRENT_BINARY_DIR}/chemset.cmi
${CMAKE_CURRENT_BINARY_DIR}/datastruct.cmi
)
tde_add_ocaml_source( kalzium_solver parser.ml
${CMAKE_CURRENT_BINARY_DIR}/chemset.cmi
)
tde_add_ocaml_source( kalzium_solver lexer.ml
${CMAKE_CURRENT_BINARY_DIR}/chemset.cmi
${CMAKE_CURRENT_BINARY_DIR}/parser.cmi
)
tde_add_ocaml_source( kalzium_solver calc.ml
${CMAKE_CURRENT_BINARY_DIR}/chem.cmi
${CMAKE_CURRENT_BINARY_DIR}/chemset.cmi
${CMAKE_CURRENT_BINARY_DIR}/datastruct.cmi
${CMAKE_CURRENT_BINARY_DIR}/parser.cmi
${CMAKE_CURRENT_BINARY_DIR}/lexer.cmx
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
COMMAND ${OCAMLOPT_EXECUTABLE}
-I ${FACILE_INCLUDE_DIR}
-c ${CMAKE_CURRENT_SOURCE_DIR}/modwrap.c
DEPENDS
${CMAKE_CURRENT_SOURCE_DIR}/modwrap.c
${CMAKE_CURRENT_BINARY_DIR}/solver.o
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/solver.o
COMMAND ${OCAMLOPT_EXECUTABLE} -output-obj
-o ${CMAKE_CURRENT_BINARY_DIR}/solver.o
${FACILE_INCLUDE_DIR}/facile.cmxa
${kalzium_solver-ocaml}
DEPENDS
${kalzium_solver-ocaml}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
add_custom_target( kalzium_solver
DEPENDS
${CMAKE_CURRENT_BINARY_DIR}/modwrap.o
${CMAKE_CURRENT_BINARY_DIR}/solver.o
)

@ -179,7 +179,7 @@ the state of matter</string>
<connections>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -217,8 +217,8 @@
<slot access="protected">slotExportAsImage()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>spectrumwidget.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">spectrumwidget.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -195,7 +195,7 @@ of the elements</string>
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -0,0 +1,5 @@
add_subdirectory( data )
add_subdirectory( images )
add_subdirectory( src )
add_subdirectory( icons )
add_subdirectory( sounds )

@ -0,0 +1,6 @@
file( GLOB _kvtmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvtml )
install(
FILES ${_kvtmls}
DESTINATION ${DATA_INSTALL_DIR}/kanagram/data/en
)

@ -0,0 +1 @@
tde_install_icons( )

@ -0,0 +1,6 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/kanagram/images
)

@ -0,0 +1,9 @@
Graphics by Danny Allen (danny@dannyallen.co.uk)
Packaged 5th August 2005
Included here are the cleaned-up SVG sources from my creation of the Kanagram graphics.
I have packaged them up for future reference and modification.
To get the correct PNG output from the "eyes" sources, select the blue rectangle in the background, send it to the back layer, and whilst keeping the rectangle selected, open the export dialog and only export the area covered by the rectangle.
Enjoy!

@ -0,0 +1,631 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/3b.png"
sodipodi:docname="1.svg"
sodipodi:docbase="/home/danny/work/kde/kanagram/package"
inkscape:version="0.42"
sodipodi:version="0.32"
id="svg1"
height="580.00000pt"
width="800.00000pt">
<defs
id="defs3" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="687"
inkscape:window-width="1020"
inkscape:current-layer="svg1"
inkscape:cy="348.67243"
inkscape:cx="852.46852"
inkscape:zoom="0.46152920"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes4.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1438"
style="color:#000000;fill:#a530ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<rect
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000"
id="rect1423"
width="1301.4059"
height="863.53064"
x="-195.51637"
y="-63.175365" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<image
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)"
y="-123.83352"
x="-1762.9265"
id="image9203"
height="1100.8124"
width="727.32251"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
xlink:href="filing_cabinet.jpg" />
<g
style="opacity:0.85000000;"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
id="g8468">
<rect
ry="5.0000000"
rx="5.0000000"
y="-216.89449"
x="-1919.7949"
height="1555.6349"
width="1873.8330"
id="rect8467"
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="rect8035"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8037"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8038"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8039"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8040"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8041"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8058"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8059"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8060"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8062"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8063"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8064"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8066"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8067"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8068"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8070"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8071"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8072"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8074"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8075"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8076"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8078"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8079"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8080"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8134"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8135"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8136"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8138"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8139"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8140"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8142"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8143"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8144"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8146"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8147"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8148"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8151"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8152"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8153"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8155"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8156"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8157"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8159"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8160"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8161"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8163"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8164"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8165"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8168"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8169"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8170"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8172"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8173"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8174"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8176"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8177"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8178"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8180"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8181"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8182"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8185"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8186"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8187"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8189"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8190"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8191"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8193"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8194"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8195"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8197"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8198"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8199"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
</g>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes5.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1437"
style="color:#000000;fill:#0b30ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<g
transform="matrix(1.000000,0.000000,0.000000,1.002187,-320.0000,-1.275608)"
id="g2196">
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 1034.9085,27.155615 L 1280.1973,27.155615 C 1281.7504,27.155615 1283.0006,28.262758 1283.0006,29.637997 L 1283.0006,640.68130 C 1283.0006,642.05654 1281.7504,643.16369 1280.1973,643.16369 L 1034.9085,643.16369 C 1033.3555,643.16369 1032.1052,642.05654 1032.1052,640.68130 L 1032.1052,29.637997 C 1032.1052,28.262758 1033.3555,27.155615 1034.9085,27.155615 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 1053.8309,463.19073 L 1261.2751,463.19073 C 1262.8282,463.19073 1264.0784,464.11273 1264.0784,465.25799 L 1264.0784,585.24278 C 1264.0784,586.38803 1262.8282,587.31003 1261.2751,587.31003 L 1053.8309,587.31003 C 1052.2779,587.31003 1051.0276,586.38803 1051.0276,585.24278 L 1051.0276,465.25799 C 1051.0276,464.11273 1052.2779,463.19073 1053.8309,463.19073 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6170919"
rx="3.5489125"
y="528.32001"
x="1022.6943"
height="157.13208"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917908;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 1017.6955,538.31091 L 1297.4106,538.31091 C 1299.5047,538.31091 1301.1906,539.55412 1301.1906,541.09837 L 1301.1906,702.88428 C 1301.1906,704.42853 1299.5047,705.67174 1297.4106,705.67174 L 1017.6955,705.67174 C 1015.6014,705.67174 1013.9155,704.42853 1013.9155,702.88428 L 1013.9155,541.09837 C 1013.9155,539.55412 1015.6014,538.31091 1017.6955,538.31091 z "
id="rect2182" />
</g>
<g
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
id="g3225"
transform="matrix(0.989236,0.146328,-0.146328,0.989236,68.62349,-124.9860)">
<ellipse
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140"
rx="12.724093"
ry="23.412333"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,893.8136,480.4799)"
cy="30.480103"
cx="19.086142"
id="path835"
sodipodi:cx="19.086142"
sodipodi:cy="30.480103"
sodipodi:rx="12.724093"
sodipodi:ry="23.412333" />
<ellipse
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140"
rx="12.724093"
ry="23.412333"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,869.8141,480.7731)"
cy="30.480103"
cx="19.086142"
id="path836"
sodipodi:cx="19.086142"
sodipodi:cy="30.480103"
sodipodi:rx="12.724093"
sodipodi:ry="23.412333" />
<path
style="font-size:12.000000px;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 861.55624,498.03699 C 861.55624,505.48122 867.33676,511.52291 874.45918,511.52291 C 881.58161,511.52291 887.36213,505.48122 887.36213,498.03699 C 887.36213,490.59276 881.58161,484.55106 874.45918,484.55106 C 867.33676,484.55106 861.55624,490.59276 861.55624,498.03699 z "
id="path840" />
<path
id="path841"
style="font-size:12.000000px;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 862.91264,504.64845 C 860.15843,510.07669 854.24183,512.87290 848.52319,511.44896 C 842.80454,510.02503 838.72972,504.74098 838.61303,498.59789 C 838.49633,492.45480 842.36725,487.00587 848.02732,485.34580 C 853.68738,483.68574 859.70550,486.23427 862.66370,491.54397" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="path2463"
sodipodi:cx="852.21881"
sodipodi:cy="499.93869"
sodipodi:rx="2.2104237"
sodipodi:ry="2.2104237"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
transform="matrix(1.266302,0.000000,0.000000,1.266302,-235.5885,-134.1395)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="path3223"
sodipodi:cx="852.21881"
sodipodi:cy="499.93869"
sodipodi:rx="2.2104237"
sodipodi:ry="2.2104237"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
transform="matrix(1.266302,0.000000,0.000000,1.266302,-212.0776,-134.1395)" />
</g>
<path
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:3.1250002;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
d="M 686.81250,318.28125 C 685.25947,318.28125 684.00000,319.19849 684.00000,320.34375 L 684.00000,450.31250 C 684.00000,451.45776 685.25949,452.37501 686.81250,452.37500 L 729.96875,452.37500 L 799.43750,503.21875 L 780.03125,452.37500 L 948.53125,452.37500 C 950.08427,452.37500 951.31250,451.45775 951.31250,450.31250 L 951.31250,320.34375 C 951.31250,319.19850 950.08426,318.28125 948.53125,318.28125 L 686.81250,318.28125 z "
id="rect3233"
sodipodi:nodetypes="cccccccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

@ -0,0 +1,631 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/3b.png"
sodipodi:docname="2.svg"
sodipodi:docbase="/home/danny/work/kde/kanagram/package"
inkscape:version="0.42"
sodipodi:version="0.32"
id="svg1"
height="580.00000pt"
width="800.00000pt">
<defs
id="defs3" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="687"
inkscape:window-width="1020"
inkscape:current-layer="svg1"
inkscape:cy="348.67243"
inkscape:cx="852.46852"
inkscape:zoom="0.46152920"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes4.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1438"
style="color:#000000;fill:#a530ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<rect
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000"
id="rect1423"
width="1301.4059"
height="863.53064"
x="-195.51637"
y="-63.175365" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<image
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)"
y="-123.83352"
x="-1762.9265"
id="image9203"
height="1100.8124"
width="727.32251"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
xlink:href="filing_cabinet.jpg" />
<g
style="opacity:0.85000000;"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
id="g8468">
<rect
ry="5.0000000"
rx="5.0000000"
y="-216.89449"
x="-1919.7949"
height="1555.6349"
width="1873.8330"
id="rect8467"
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="rect8035"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8037"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8038"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8039"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8040"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8041"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8058"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8059"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8060"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8062"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8063"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8064"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8066"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8067"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8068"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8070"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8071"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8072"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8074"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8075"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8076"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8078"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8079"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8080"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8134"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8135"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8136"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8138"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8139"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8140"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8142"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8143"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8144"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8146"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8147"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8148"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8151"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8152"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8153"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8155"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8156"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8157"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8159"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8160"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8161"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8163"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8164"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8165"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8168"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8169"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8170"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8172"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8173"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8174"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8176"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8177"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8178"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8180"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8181"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8182"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8185"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8186"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8187"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8189"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8190"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8191"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8193"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8194"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8195"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8197"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8198"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8199"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
</g>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes5.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1437"
style="color:#000000;fill:#0b30ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<g
transform="matrix(1.000000,0.000000,0.000000,1.002187,-320.0000,-1.275608)"
id="g2196">
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 1034.9085,27.155615 L 1280.1973,27.155615 C 1281.7504,27.155615 1283.0006,28.262758 1283.0006,29.637997 L 1283.0006,640.68130 C 1283.0006,642.05654 1281.7504,643.16369 1280.1973,643.16369 L 1034.9085,643.16369 C 1033.3555,643.16369 1032.1052,642.05654 1032.1052,640.68130 L 1032.1052,29.637997 C 1032.1052,28.262758 1033.3555,27.155615 1034.9085,27.155615 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 1053.8309,463.19073 L 1261.2751,463.19073 C 1262.8282,463.19073 1264.0784,464.11273 1264.0784,465.25799 L 1264.0784,585.24278 C 1264.0784,586.38803 1262.8282,587.31003 1261.2751,587.31003 L 1053.8309,587.31003 C 1052.2779,587.31003 1051.0276,586.38803 1051.0276,585.24278 L 1051.0276,465.25799 C 1051.0276,464.11273 1052.2779,463.19073 1053.8309,463.19073 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6170919"
rx="3.5489125"
y="528.32001"
x="1022.6943"
height="157.13208"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917908;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 1017.6955,538.31091 L 1297.4106,538.31091 C 1299.5047,538.31091 1301.1906,539.55412 1301.1906,541.09837 L 1301.1906,702.88428 C 1301.1906,704.42853 1299.5047,705.67174 1297.4106,705.67174 L 1017.6955,705.67174 C 1015.6014,705.67174 1013.9155,704.42853 1013.9155,702.88428 L 1013.9155,541.09837 C 1013.9155,539.55412 1015.6014,538.31091 1017.6955,538.31091 z "
id="rect2182" />
</g>
<g
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
id="g3225"
transform="matrix(0.985462,0.169896,-0.169896,0.985462,38.62160,-143.4445)">
<ellipse
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140"
rx="12.724093"
ry="23.412333"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,893.8136,480.4799)"
cy="30.480103"
cx="19.086142"
id="path835"
sodipodi:cx="19.086142"
sodipodi:cy="30.480103"
sodipodi:rx="12.724093"
sodipodi:ry="23.412333" />
<ellipse
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140"
rx="12.724093"
ry="23.412333"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,869.8141,480.7731)"
cy="30.480103"
cx="19.086142"
id="path836"
sodipodi:cx="19.086142"
sodipodi:cy="30.480103"
sodipodi:rx="12.724093"
sodipodi:ry="23.412333" />
<path
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 861.55624,498.03699 C 861.55624,505.48122 867.33676,511.52291 874.45918,511.52291 C 881.58161,511.52291 887.36213,505.48122 887.36213,498.03699 C 887.36213,490.59276 881.58161,484.55106 874.45918,484.55106 C 867.33676,484.55106 861.55624,490.59276 861.55624,498.03699 z "
id="path840" />
<path
id="path841"
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 862.91264,504.64845 C 860.15843,510.07669 854.24183,512.87290 848.52319,511.44896 C 842.80454,510.02503 838.72972,504.74098 838.61303,498.59789 C 838.49633,492.45480 842.36725,487.00587 848.02732,485.34580 C 853.68738,483.68574 859.70550,486.23427 862.66370,491.54397" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
id="path2463"
sodipodi:cx="852.21881"
sodipodi:cy="499.93869"
sodipodi:rx="2.2104237"
sodipodi:ry="2.2104237"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
transform="matrix(1.266302,0.000000,0.000000,1.266302,-235.5885,-134.1395)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
id="path3223"
sodipodi:cx="852.21881"
sodipodi:cy="499.93869"
sodipodi:rx="2.2104237"
sodipodi:ry="2.2104237"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
transform="matrix(1.266302,0.000000,0.000000,1.266302,-212.0776,-134.1395)" />
</g>
<path
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:3.1250002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
d="M 686.81250,318.28125 C 685.25947,318.28125 684.00000,319.19849 684.00000,320.34375 L 684.00000,450.31250 C 684.00000,451.45776 685.25949,452.37501 686.81250,452.37500 L 696.96875,452.37500 L 766.43750,503.21875 L 747.03125,452.37500 L 948.53120,452.37500 C 950.08430,452.37500 951.31250,451.45775 951.31250,450.31250 L 951.31250,320.34375 C 951.31250,319.19850 950.08430,318.28125 948.53120,318.28125 L 686.81250,318.28125 z "
id="rect3233"
sodipodi:nodetypes="cccccccccccc" />
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

@ -0,0 +1,639 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/3b.png"
sodipodi:docname="eyes5.svg"
sodipodi:docbase="/home/danny/work/kde/kanagram/package"
inkscape:version="0.42"
sodipodi:version="0.32"
id="svg1"
height="580.00000pt"
width="800.00000pt">
<defs
id="defs3" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="687"
inkscape:window-width="1020"
inkscape:current-layer="svg1"
inkscape:cy="348.67243"
inkscape:cx="852.46852"
inkscape:zoom="0.46152920"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes4.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1438"
style="color:#000000;fill:#a530ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<rect
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000"
id="rect1423"
width="1301.4059"
height="863.53064"
x="-195.51637"
y="-63.175365" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<image
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)"
y="-123.83352"
x="-1762.9265"
id="image9203"
height="1100.8124"
width="727.32251"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
xlink:href="filing_cabinet.jpg" />
<g
style="opacity:0.85000000;"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
id="g8468">
<rect
ry="5.0000000"
rx="5.0000000"
y="-216.89449"
x="-1919.7949"
height="1555.6349"
width="1873.8330"
id="rect8467"
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="rect8035"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8037"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8038"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8039"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8040"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8041"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8058"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8059"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8060"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8062"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8063"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8064"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8066"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8067"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8068"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8070"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8071"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8072"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8074"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8075"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8076"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8078"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8079"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8080"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8134"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8135"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8136"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8138"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8139"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8140"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8142"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8143"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8144"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8146"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8147"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8148"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8151"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8152"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8153"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8155"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8156"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8157"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8159"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8160"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8161"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8163"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8164"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8165"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8168"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8169"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8170"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8172"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8173"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8174"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8176"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8177"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8178"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8180"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8181"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8182"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8185"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8186"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8187"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8189"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8190"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8191"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8193"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8194"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8195"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8197"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8198"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8199"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
</g>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes5.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1437"
style="color:#000000;fill:#0b30ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<g
transform="matrix(1.000000,0.000000,0.000000,1.002187,-320.0000,-1.275608)"
id="g2196">
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 1034.9085,27.155615 L 1280.1973,27.155615 C 1281.7504,27.155615 1283.0006,28.262758 1283.0006,29.637997 L 1283.0006,640.68130 C 1283.0006,642.05654 1281.7504,643.16369 1280.1973,643.16369 L 1034.9085,643.16369 C 1033.3555,643.16369 1032.1052,642.05654 1032.1052,640.68130 L 1032.1052,29.637997 C 1032.1052,28.262758 1033.3555,27.155615 1034.9085,27.155615 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 1053.8309,463.19073 L 1261.2751,463.19073 C 1262.8282,463.19073 1264.0784,464.11273 1264.0784,465.25799 L 1264.0784,585.24278 C 1264.0784,586.38803 1262.8282,587.31003 1261.2751,587.31003 L 1053.8309,587.31003 C 1052.2779,587.31003 1051.0276,586.38803 1051.0276,585.24278 L 1051.0276,465.25799 C 1051.0276,464.11273 1052.2779,463.19073 1053.8309,463.19073 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6170919"
rx="3.5489125"
y="528.32001"
x="1022.6943"
height="157.13208"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917908;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 1017.6955,538.31091 L 1297.4106,538.31091 C 1299.5047,538.31091 1301.1906,539.55412 1301.1906,541.09837 L 1301.1906,702.88428 C 1301.1906,704.42853 1299.5047,705.67174 1297.4106,705.67174 L 1017.6955,705.67174 C 1015.6014,705.67174 1013.9155,704.42853 1013.9155,702.88428 L 1013.9155,541.09837 C 1013.9155,539.55412 1015.6014,538.31091 1017.6955,538.31091 z "
id="rect2182" />
</g>
<g
id="g2984">
<g
transform="matrix(0.985462,0.169896,-0.169896,0.985462,44.62160,-146.4445)"
id="g3225"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<ellipse
sodipodi:ry="23.412333"
sodipodi:rx="12.724093"
sodipodi:cy="30.480103"
sodipodi:cx="19.086142"
id="path835"
cx="19.086142"
cy="30.480103"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,893.8136,480.4799)"
ry="23.412333"
rx="12.724093"
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140" />
<ellipse
sodipodi:ry="23.412333"
sodipodi:rx="12.724093"
sodipodi:cy="30.480103"
sodipodi:cx="19.086142"
id="path836"
cx="19.086142"
cy="30.480103"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,869.8141,480.7731)"
ry="23.412333"
rx="12.724093"
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140" />
<path
id="path840"
d="M 861.55624,498.03699 C 861.55624,505.48122 867.33676,511.52291 874.45918,511.52291 C 881.58161,511.52291 887.36213,505.48122 887.36213,498.03699 C 887.36213,490.59276 881.58161,484.55106 874.45918,484.55106 C 867.33676,484.55106 861.55624,490.59276 861.55624,498.03699 z "
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<path
d="M 862.91264,504.64845 C 860.15843,510.07669 854.24183,512.87290 848.52319,511.44896 C 842.80454,510.02503 838.72972,504.74098 838.61303,498.59789 C 838.49633,492.45480 842.36725,487.00587 848.02732,485.34580 C 853.68738,483.68574 859.70550,486.23427 862.66370,491.54397"
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
id="path841" />
<path
transform="matrix(1.266302,1.827558e-16,-7.169287e-18,1.266302,-227.0253,-131.5567)"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
sodipodi:ry="2.2104237"
sodipodi:rx="2.2104237"
sodipodi:cy="499.93869"
sodipodi:cx="852.21881"
id="path2463"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(1.266302,1.827558e-16,-7.169287e-18,1.266302,-203.5144,-131.5567)"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
sodipodi:ry="2.2104237"
sodipodi:rx="2.2104237"
sodipodi:cy="499.93869"
sodipodi:cx="852.21881"
id="path3223"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
</g>
<path
sodipodi:nodetypes="ccccc"
id="path2980"
d="M 799.18750,508.18750 L 797.78125,513.00000 L 815.78125,518.25000 L 817.18750,510.43750 L 799.18750,508.18750 z "
style="fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:5.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
</g>
<path
sodipodi:nodetypes="cccccccccccc"
id="rect3233"
d="M 686.81250,318.28125 C 685.25947,318.28125 684.00000,319.19849 684.00000,320.34375 L 684.00000,450.31250 C 684.00000,451.45776 685.25949,452.37501 686.81250,452.37500 L 706.96875,452.37500 L 776.43750,503.21875 L 757.03125,452.37500 L 948.53120,452.37500 C 950.08430,452.37500 951.31250,451.45775 951.31250,450.31250 L 951.31250,320.34375 C 951.31250,319.19850 950.08430,318.28125 948.53120,318.28125 L 686.81250,318.28125 z "
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:3.1250002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
</svg>

After

Width:  |  Height:  |  Size: 70 KiB

@ -0,0 +1,631 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/3b.png"
sodipodi:docname="6.svg"
sodipodi:docbase="/home/danny/work/kde/kanagram/package"
inkscape:version="0.42"
sodipodi:version="0.32"
id="svg1"
height="580.00000pt"
width="800.00000pt">
<defs
id="defs3" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="687"
inkscape:window-width="1020"
inkscape:current-layer="svg1"
inkscape:cy="348.67243"
inkscape:cx="852.46852"
inkscape:zoom="0.46152920"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes4.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1438"
style="color:#000000;fill:#a530ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<rect
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000"
id="rect1423"
width="1301.4059"
height="863.53064"
x="-195.51637"
y="-63.175365" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<image
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)"
y="-123.83352"
x="-1762.9265"
id="image9203"
height="1100.8124"
width="727.32251"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
xlink:href="filing_cabinet.jpg" />
<g
style="opacity:0.85000000;"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
id="g8468">
<rect
ry="5.0000000"
rx="5.0000000"
y="-216.89449"
x="-1919.7949"
height="1555.6349"
width="1873.8330"
id="rect8467"
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="rect8035"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8037"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8038"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8039"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8040"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8041"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8058"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8059"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8060"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8062"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8063"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8064"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8066"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8067"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8068"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8070"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8071"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8072"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8074"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8075"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8076"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8078"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8079"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8080"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8134"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8135"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8136"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8138"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8139"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8140"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8142"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8143"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8144"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8146"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8147"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8148"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8151"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8152"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8153"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8155"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8156"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8157"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8159"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8160"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8161"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8163"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8164"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8165"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8168"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8169"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8170"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8172"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8173"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8174"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8176"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8177"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8178"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8180"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8181"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8182"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8185"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8186"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8187"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8189"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8190"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8191"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8193"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8194"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8195"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8197"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8198"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8199"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
</g>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes5.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1437"
style="color:#000000;fill:#0b30ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<g
transform="matrix(1.000000,0.000000,0.000000,1.002187,-320.0000,-1.275608)"
id="g2196">
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 1034.9085,27.155615 L 1280.1973,27.155615 C 1281.7504,27.155615 1283.0006,28.262758 1283.0006,29.637997 L 1283.0006,640.68130 C 1283.0006,642.05654 1281.7504,643.16369 1280.1973,643.16369 L 1034.9085,643.16369 C 1033.3555,643.16369 1032.1052,642.05654 1032.1052,640.68130 L 1032.1052,29.637997 C 1032.1052,28.262758 1033.3555,27.155615 1034.9085,27.155615 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 1053.8309,463.19073 L 1261.2751,463.19073 C 1262.8282,463.19073 1264.0784,464.11273 1264.0784,465.25799 L 1264.0784,585.24278 C 1264.0784,586.38803 1262.8282,587.31003 1261.2751,587.31003 L 1053.8309,587.31003 C 1052.2779,587.31003 1051.0276,586.38803 1051.0276,585.24278 L 1051.0276,465.25799 C 1051.0276,464.11273 1052.2779,463.19073 1053.8309,463.19073 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6170919"
rx="3.5489125"
y="528.32001"
x="1022.6943"
height="157.13208"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917908;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 1017.6955,538.31091 L 1297.4106,538.31091 C 1299.5047,538.31091 1301.1906,539.55412 1301.1906,541.09837 L 1301.1906,702.88428 C 1301.1906,704.42853 1299.5047,705.67174 1297.4106,705.67174 L 1017.6955,705.67174 C 1015.6014,705.67174 1013.9155,704.42853 1013.9155,702.88428 L 1013.9155,541.09837 C 1013.9155,539.55412 1015.6014,538.31091 1017.6955,538.31091 z "
id="rect2182" />
</g>
<path
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:3.1250002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
d="M 686.81250,318.28125 C 685.25947,318.28125 684.00000,319.19849 684.00000,320.34375 L 684.00000,450.31250 C 684.00000,451.45776 685.25949,452.37501 686.81250,452.37500 L 766.96875,452.37500 L 836.43750,503.21875 L 817.03125,452.37500 L 948.53120,452.37500 C 950.08430,452.37500 951.31250,451.45775 951.31250,450.31250 L 951.31250,320.34375 C 951.31250,319.19850 950.08430,318.28125 948.53120,318.28125 L 686.81250,318.28125 z "
id="rect3233"
sodipodi:nodetypes="cccccccccccc" />
<g
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
id="g2204"
transform="matrix(1.330638,0.229405,-0.229405,1.330638,-153.2423,-365.2393)">
<ellipse
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140"
rx="12.724093"
ry="23.412333"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,893.8136,480.4799)"
cy="30.480103"
cx="19.086142"
id="ellipse2206"
sodipodi:cx="19.086142"
sodipodi:cy="30.480103"
sodipodi:rx="12.724093"
sodipodi:ry="23.412333" />
<ellipse
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140"
rx="12.724093"
ry="23.412333"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,869.8141,480.7731)"
cy="30.480103"
cx="19.086142"
id="ellipse2208"
sodipodi:cx="19.086142"
sodipodi:cy="30.480103"
sodipodi:rx="12.724093"
sodipodi:ry="23.412333" />
<path
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 861.55624,498.03699 C 861.55624,505.48122 867.33676,511.52291 874.45918,511.52291 C 881.58161,511.52291 887.36213,505.48122 887.36213,498.03699 C 887.36213,490.59276 881.58161,484.55106 874.45918,484.55106 C 867.33676,484.55106 861.55624,490.59276 861.55624,498.03699 z "
id="path2210" />
<path
id="path2212"
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 862.91264,504.64845 C 860.15843,510.07669 854.24183,512.87290 848.52319,511.44896 C 842.80454,510.02503 838.72972,504.74098 838.61303,498.59789 C 838.49633,492.45480 842.36725,487.00587 848.02732,485.34580 C 853.68738,483.68574 859.70550,486.23427 862.66370,491.54397" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
id="path2214"
sodipodi:cx="852.21881"
sodipodi:cy="499.93869"
sodipodi:rx="2.2104237"
sodipodi:ry="2.2104237"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
transform="matrix(1.266302,-1.484002e-17,2.900241e-18,1.266302,-231.2097,-134.8943)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
id="path2216"
sodipodi:cx="852.21881"
sodipodi:cy="499.93869"
sodipodi:rx="2.2104237"
sodipodi:ry="2.2104237"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
transform="matrix(1.266302,-1.484002e-17,2.900241e-18,1.266302,-207.6988,-134.8943)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

@ -0,0 +1,631 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/3b.png"
sodipodi:docname="7.svg"
sodipodi:docbase="/home/danny/work/kde/kanagram/package"
inkscape:version="0.42"
sodipodi:version="0.32"
id="svg1"
height="580.00000pt"
width="800.00000pt">
<defs
id="defs3" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="687"
inkscape:window-width="1020"
inkscape:current-layer="svg1"
inkscape:cy="348.67243"
inkscape:cx="852.46852"
inkscape:zoom="0.46152920"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes4.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1438"
style="color:#000000;fill:#a530ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<rect
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000"
id="rect1423"
width="1301.4059"
height="863.53064"
x="-195.51637"
y="-63.175365" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<image
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)"
y="-123.83352"
x="-1762.9265"
id="image9203"
height="1100.8124"
width="727.32251"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
xlink:href="filing_cabinet.jpg" />
<g
style="opacity:0.85000000;"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
id="g8468">
<rect
ry="5.0000000"
rx="5.0000000"
y="-216.89449"
x="-1919.7949"
height="1555.6349"
width="1873.8330"
id="rect8467"
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="rect8035"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8037"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8038"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8039"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8040"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8041"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8058"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8059"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8060"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8062"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8063"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8064"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8066"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8067"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8068"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8070"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8071"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8072"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8074"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8075"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8076"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8078"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8079"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8080"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8134"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8135"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8136"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8138"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8139"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8140"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8142"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8143"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8144"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8146"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8147"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8148"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8151"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8152"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8153"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8155"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8156"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8157"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8159"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8160"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8161"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8163"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8164"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8165"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8168"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8169"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8170"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8172"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8173"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8174"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8176"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8177"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8178"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8180"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8181"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8182"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8185"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8186"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8187"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8189"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8190"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8191"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8193"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8194"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8195"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8197"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8198"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8199"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
</g>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes5.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1437"
style="color:#000000;fill:#0b30ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<g
transform="matrix(1.000000,0.000000,0.000000,1.002187,-320.0000,-1.275608)"
id="g2196">
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 1034.9085,27.155615 L 1280.1973,27.155615 C 1281.7504,27.155615 1283.0006,28.262758 1283.0006,29.637997 L 1283.0006,640.68130 C 1283.0006,642.05654 1281.7504,643.16369 1280.1973,643.16369 L 1034.9085,643.16369 C 1033.3555,643.16369 1032.1052,642.05654 1032.1052,640.68130 L 1032.1052,29.637997 C 1032.1052,28.262758 1033.3555,27.155615 1034.9085,27.155615 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 1053.8309,463.19073 L 1261.2751,463.19073 C 1262.8282,463.19073 1264.0784,464.11273 1264.0784,465.25799 L 1264.0784,585.24278 C 1264.0784,586.38803 1262.8282,587.31003 1261.2751,587.31003 L 1053.8309,587.31003 C 1052.2779,587.31003 1051.0276,586.38803 1051.0276,585.24278 L 1051.0276,465.25799 C 1051.0276,464.11273 1052.2779,463.19073 1053.8309,463.19073 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6170919"
rx="3.5489125"
y="528.32001"
x="1022.6943"
height="157.13208"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917908;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 1017.6955,538.31091 L 1297.4106,538.31091 C 1299.5047,538.31091 1301.1906,539.55412 1301.1906,541.09837 L 1301.1906,702.88428 C 1301.1906,704.42853 1299.5047,705.67174 1297.4106,705.67174 L 1017.6955,705.67174 C 1015.6014,705.67174 1013.9155,704.42853 1013.9155,702.88428 L 1013.9155,541.09837 C 1013.9155,539.55412 1015.6014,538.31091 1017.6955,538.31091 z "
id="rect2182" />
</g>
<g
transform="matrix(0.985462,0.169896,-0.169896,0.985462,48.62160,-135.4445)"
id="g3225"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<ellipse
sodipodi:ry="23.412333"
sodipodi:rx="12.724093"
sodipodi:cy="30.480103"
sodipodi:cx="19.086142"
id="path835"
cx="19.086142"
cy="30.480103"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,893.8136,480.4799)"
ry="23.412333"
rx="12.724093"
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140" />
<ellipse
sodipodi:ry="23.412333"
sodipodi:rx="12.724093"
sodipodi:cy="30.480103"
sodipodi:cx="19.086142"
id="path836"
cx="19.086142"
cy="30.480103"
transform="matrix(-1.014056,0.000000,0.000000,0.576018,869.8141,480.7731)"
ry="23.412333"
rx="12.724093"
style="font-size:12.000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140" />
<path
id="path840"
d="M 861.55624,498.03699 C 861.55624,505.48122 867.33676,511.52291 874.45918,511.52291 C 881.58161,511.52291 887.36213,505.48122 887.36213,498.03699 C 887.36213,490.59276 881.58161,484.55106 874.45918,484.55106 C 867.33676,484.55106 861.55624,490.59276 861.55624,498.03699 z "
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<path
d="M 862.91264,504.64845 C 860.15843,510.07669 854.24183,512.87290 848.52319,511.44896 C 842.80454,510.02503 838.72972,504.74098 838.61303,498.59789 C 838.49633,492.45480 842.36725,487.00587 848.02732,485.34580 C 853.68738,483.68574 859.70550,486.23427 862.66370,491.54397"
style="font-size:12.000000;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.9999962;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
id="path841" />
<path
transform="matrix(1.266302,1.827558e-16,-7.169287e-18,1.266302,-230.1852,-138.1154)"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
sodipodi:ry="2.2104237"
sodipodi:rx="2.2104237"
sodipodi:cy="499.93869"
sodipodi:cx="852.21881"
id="path2463"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(1.266302,1.827558e-16,-7.169287e-18,1.266302,-206.8442,-139.1009)"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
sodipodi:ry="2.2104237"
sodipodi:rx="2.2104237"
sodipodi:cy="499.93869"
sodipodi:cx="852.21881"
id="path3223"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.4678156;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
</g>
<path
sodipodi:nodetypes="cccccccccccc"
id="rect3233"
d="M 686.81250,318.28125 C 685.25947,318.28125 684.00000,319.19849 684.00000,320.34375 L 684.00000,450.31250 C 684.00000,451.45776 685.25949,452.37501 686.81250,452.37500 L 706.96875,452.37500 L 776.43750,503.21875 L 757.03125,452.37500 L 948.53120,452.37500 C 950.08430,452.37500 951.31250,451.45775 951.31250,450.31250 L 951.31250,320.34375 C 951.31250,319.19850 950.08430,318.28125 948.53120,318.28125 L 686.81250,318.28125 z "
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:3.1250002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

@ -0,0 +1,655 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/3b.png"
sodipodi:docname="8.svg"
sodipodi:docbase="/home/danny/work/kde/kanagram/package"
inkscape:version="0.42"
sodipodi:version="0.32"
id="svg1"
height="580.00000pt"
width="800.00000pt">
<defs
id="defs3" />
<sodipodi:namedview
inkscape:guide-bbox="true"
showguides="true"
inkscape:window-y="0"
inkscape:window-x="0"
inkscape:window-height="687"
inkscape:window-width="1020"
inkscape:current-layer="svg1"
inkscape:cy="348.67243"
inkscape:cx="852.46852"
inkscape:zoom="0.46152920"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes4.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1438"
style="color:#000000;fill:#a530ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<rect
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000"
id="rect1423"
width="1301.4059"
height="863.53064"
x="-195.51637"
y="-63.175365" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1" />
<image
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)"
y="-123.83352"
x="-1762.9265"
id="image9203"
height="1100.8124"
width="727.32251"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
xlink:href="filing_cabinet.jpg" />
<g
style="opacity:0.85000000;"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
id="g8468">
<rect
ry="5.0000000"
rx="5.0000000"
y="-216.89449"
x="-1919.7949"
height="1555.6349"
width="1873.8330"
id="rect8467"
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="rect8035"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8037"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8038"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8039"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8040"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,-142.5000)"
sodipodi:nodetypes="ccccccccc"
id="path8041"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8058"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8059"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8060"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8062"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8063"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,-33.07610)"
sodipodi:nodetypes="ccccccccc"
id="path8064"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8066"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8067"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8068"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8070"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8071"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,76.34780)"
sodipodi:nodetypes="ccccccccc"
id="path8072"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8074"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8075"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8076"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8078"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8079"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,185.7717)"
sodipodi:nodetypes="ccccccccc"
id="path8080"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8134"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8135"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8136"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8138"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8139"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,295.1956)"
sodipodi:nodetypes="ccccccccc"
id="path8140"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8142"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8143"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8144"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8146"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8147"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,404.6195)"
sodipodi:nodetypes="ccccccccc"
id="path8148"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8151"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8152"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8153"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8155"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8156"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,514.0434)"
sodipodi:nodetypes="ccccccccc"
id="path8157"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8159"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8160"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8161"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8163"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8164"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,623.4673)"
sodipodi:nodetypes="ccccccccc"
id="path8165"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8168"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8169"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8170"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8172"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8173"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,732.8912)"
sodipodi:nodetypes="ccccccccc"
id="path8174"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8176"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8177"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8178"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8180"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8181"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,842.3151)"
sodipodi:nodetypes="ccccccccc"
id="path8182"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8185"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8186"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(0.000000,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8187"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8189"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8190"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(-10.11150,951.7390)"
sodipodi:nodetypes="ccccccccc"
id="path8191"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8193"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8194"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(75.00000,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8195"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8197"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8198"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
<path
transform="translate(64.88850,1061.163)"
sodipodi:nodetypes="ccccccccc"
id="path8199"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;" />
</g>
<rect
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/eyes5.png"
y="315.04523"
x="676.29474"
height="204.91002"
width="322.41095"
id="rect1437"
style="color:#000000;fill:#0b30ab;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#a530ab;stroke-width:2.5894978;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible" />
<g
transform="matrix(1.000000,0.000000,0.000000,1.002187,-320.0000,-1.275608)"
id="g2196">
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 1034.9085,27.155615 L 1280.1973,27.155615 C 1281.7504,27.155615 1283.0006,28.262758 1283.0006,29.637997 L 1283.0006,640.68130 C 1283.0006,642.05654 1281.7504,643.16369 1280.1973,643.16369 L 1034.9085,643.16369 C 1033.3555,643.16369 1032.1052,642.05654 1032.1052,640.68130 L 1032.1052,29.637997 C 1032.1052,28.262758 1033.3555,27.155615 1034.9085,27.155615 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 1053.8309,463.19073 L 1261.2751,463.19073 C 1262.8282,463.19073 1264.0784,464.11273 1264.0784,465.25799 L 1264.0784,585.24278 C 1264.0784,586.38803 1262.8282,587.31003 1261.2751,587.31003 L 1053.8309,587.31003 C 1052.2779,587.31003 1051.0276,586.38803 1051.0276,585.24278 L 1051.0276,465.25799 C 1051.0276,464.11273 1052.2779,463.19073 1053.8309,463.19073 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917955;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6170919"
rx="3.5489125"
y="528.32001"
x="1022.6943"
height="157.13208"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917908;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4917951;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 1017.6955,538.31091 L 1297.4106,538.31091 C 1299.5047,538.31091 1301.1906,539.55412 1301.1906,541.09837 L 1301.1906,702.88428 C 1301.1906,704.42853 1299.5047,705.67174 1297.4106,705.67174 L 1017.6955,705.67174 C 1015.6014,705.67174 1013.9155,704.42853 1013.9155,702.88428 L 1013.9155,541.09837 C 1013.9155,539.55412 1015.6014,538.31091 1017.6955,538.31091 z "
id="rect2182" />
</g>
<path
inkscape:export-ydpi="58.500000"
inkscape:export-xdpi="58.500000"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kmessedwords/eyes1.png"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:3.1250002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
d="M 686.81250,318.28125 C 685.25947,318.28125 684.00000,319.19849 684.00000,320.34375 L 684.00000,450.31250 C 684.00000,451.45776 685.25949,452.37501 686.81250,452.37500 L 746.96875,452.37500 L 816.43750,503.21875 L 797.03125,452.37500 L 948.53120,452.37500 C 950.08430,452.37500 951.31250,451.45775 951.31250,450.31250 L 951.31250,320.34375 C 951.31250,319.19850 950.08430,318.28125 948.53120,318.28125 L 686.81250,318.28125 z "
id="rect3233"
sodipodi:nodetypes="cccccccccccc" />
<g
id="g3390">
<text
xml:space="preserve"
style="font-size:11.499317px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#e6e6e6;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
x="970.36041"
y="132.98987"
id="text1434"
sodipodi:linespacing="100.00000%"
transform="matrix(0.925753,0.378129,-0.378129,0.925753,0.000000,0.000000)"><tspan
sodipodi:role="line"
id="tspan1436"
x="970.36041"
y="132.98987">z</tspan></text>
<text
xml:space="preserve"
style="font-size:15.491717px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#e6e6e6;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
x="778.72693"
y="578.08173"
id="text2196"
sodipodi:linespacing="100.00000%"
transform="matrix(0.993027,-0.117886,0.117886,0.993027,0.000000,0.000000)"><tspan
sodipodi:role="line"
id="tspan2198"
x="778.72693"
y="578.08173">z</tspan></text>
<g
id="g2211"
transform="matrix(0.739756,0.000000,0.000000,0.739756,244.9859,135.2980)">
<ellipse
sodipodi:ry="23.412333"
sodipodi:rx="12.724093"
sodipodi:cy="30.480103"
sodipodi:cx="19.086142"
id="path835"
cx="19.086142"
cy="30.480103"
transform="matrix(-0.999314,-0.172284,-9.786315e-2,0.567644,847.8093,489.9055)"
ry="23.412333"
rx="12.724093"
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140" />
<ellipse
sodipodi:ry="23.412333"
sodipodi:rx="12.724093"
sodipodi:cy="30.480103"
sodipodi:cx="19.086142"
id="path836"
cx="19.086142"
cy="30.480103"
transform="matrix(-0.999314,-0.172284,-9.786315e-2,0.567644,824.1089,486.1171)"
ry="23.412333"
rx="12.724093"
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:2.9524140" />
<path
id="path840"
d="M 813.03804,501.72699 C 811.77330,509.06299 816.44332,515.99894 823.46220,517.20901 C 830.48108,518.41908 837.20402,513.44731 838.46877,506.11130 C 839.73351,498.77530 835.06349,491.83935 828.04461,490.62927 C 821.02573,489.41920 814.30279,494.39098 813.03804,501.72699 z "
style="font-size:12.000000px;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.1545210;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<path
d="M 813.25146,508.47278 C 809.61506,513.35417 803.30941,515.10452 797.91583,512.72971 C 792.52224,510.35491 789.40439,504.45538 790.33309,498.38177 C 791.26177,492.30816 796.00217,487.59610 801.86199,486.92179 C 807.72180,486.24749 813.21944,489.78142 815.23254,495.51652"
style="font-size:12.000000px;fill:none;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:4.1545210;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
id="path841" />
<path
transform="matrix(1.247892,5.534447e-2,-0.215140,0.321020,-153.7519,299.1406)"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
sodipodi:ry="2.2104237"
sodipodi:rx="2.2104237"
sodipodi:cy="499.93869"
sodipodi:cx="852.21881"
id="path2463"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.0505199;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
<path
transform="matrix(1.247892,5.534447e-2,-0.215140,0.321020,-130.7519,303.1406)"
d="M 854.42923 499.93869 A 2.2104237 2.2104237 0 1 1 850.00839,499.93869 A 2.2104237 2.2104237 0 1 1 854.42923 499.93869 z"
sodipodi:ry="2.2104237"
sodipodi:rx="2.2104237"
sodipodi:cy="499.93869"
sodipodi:cx="852.21881"
id="path2204"
style="color:#000000;fill:#e6e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#e6e6e6;stroke-width:2.0505199;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
sodipodi:type="arc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 70 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 124 KiB

@ -0,0 +1,978 @@
<?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://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="800.00000pt"
height="580.00000pt"
id="svg1"
sodipodi:version="0.32"
inkscape:version="0.42"
sodipodi:docbase="/home/danny/work/kde/kanagram/graphics_sources"
sodipodi:docname="icon_buttons.svg"
inkscape:export-filename="/home/danny/icon_buttons.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<defs
id="defs3" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.45759532"
inkscape:cx="400.55505"
inkscape:cy="243.90413"
inkscape:current-layer="svg1"
inkscape:window-width="1020"
inkscape:window-height="687"
inkscape:window-x="0"
inkscape:window-y="0"
showguides="true"
inkscape:guide-bbox="true" />
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7833"
width="75.000000"
height="75.000000"
x="1240.0530"
y="557.64886"
inkscape:export-filename="/home/danny/work/kde/kanagram/quit_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7835"
width="60.000000"
height="60.000000"
x="1247.5530"
y="337.63809"
inkscape:export-filename="/home/danny/work/kde/kanagram/help_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7837"
width="60.000000"
height="60.000000"
x="1247.5530"
y="198.32043"
inkscape:export-filename="/home/danny/work/kde/kanagram/config_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7839"
width="60.000000"
height="60.000000"
x="1247.5530"
y="59.002838"
inkscape:export-filename="/home/danny/work/kde/kanagram/next_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<rect
y="-63.175365"
x="-195.51637"
height="863.53064"
width="1301.4059"
id="rect1423"
style="overflow:visible;display:inline;visibility:visible;marker-end:none;marker-mid:none;marker-start:none;marker:none;stroke-opacity:1.0000000;stroke-dashoffset:0.0000000;stroke-dasharray:3.1250005 3.1250005;stroke-miterlimit:4.0000000;stroke-linejoin:round;stroke-linecap:round;stroke-width:3.1250005;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:#ffffff;color:#000000" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1" />
<image
xlink:href="filing_cabinet.jpg"
sodipodi:absref="/home/danny/work/kde/kmessedwords/filing_cabinet.jpg"
width="727.32251"
height="1100.8124"
id="image9203"
x="-1762.9265"
y="-123.83352"
transform="matrix(0.947375,0.000000,0.000000,0.947375,-92.77338,-11.42881)" />
<g
id="g8468"
transform="matrix(0.674253,0.000000,0.000000,0.674253,1148.576,7.509661)"
style="opacity:0.85000000;">
<rect
style="color:#000000;fill:#ab766d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
id="rect8467"
width="1873.8330"
height="1555.6349"
x="-1919.7949"
y="-216.89449"
rx="5.0000000"
ry="5.0000000" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="rect8035"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,-142.5000)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8037"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,-142.5000)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8038"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,-142.5000)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8039"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,-142.5000)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8040"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,-142.5000)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8041"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,-142.5000)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8058"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,-33.07610)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8059"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,-33.07610)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8060"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,-33.07610)" />
<path
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8062"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,-33.07610)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8063"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,-33.07610)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8064"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,-33.07610)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8066"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,76.34780)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8067"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,76.34780)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8068"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,76.34780)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8070"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,76.34780)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8071"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,76.34780)" />
<path
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8072"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,76.34780)" />
<path
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8074"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,185.7717)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8075"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,185.7717)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8076"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,185.7717)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8078"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,185.7717)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8079"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,185.7717)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8080"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,185.7717)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8134"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,295.1956)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8135"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,295.1956)" />
<path
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8136"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,295.1956)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8138"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,295.1956)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8139"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,295.1956)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8140"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,295.1956)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8142"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,404.6195)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8143"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,404.6195)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8144"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,404.6195)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8146"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,404.6195)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8147"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,404.6195)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8148"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,404.6195)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8151"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,514.0434)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8152"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,514.0434)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8153"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,514.0434)" />
<path
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8155"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,514.0434)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8156"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,514.0434)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8157"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,514.0434)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8159"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,623.4673)" />
<path
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8160"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,623.4673)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8161"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,623.4673)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8163"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,623.4673)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8164"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,623.4673)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8165"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,623.4673)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8168"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,732.8912)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8169"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,732.8912)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8170"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,732.8912)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8172"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,732.8912)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8173"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,732.8912)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8174"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,732.8912)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8176"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,842.3151)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8177"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,842.3151)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8178"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,842.3151)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8180"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,842.3151)" />
<path
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8181"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,842.3151)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8182"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,842.3151)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8185"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,951.7390)" />
<path
style="color:#000000;fill:#8b3b2b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8186"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,951.7390)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8187"
sodipodi:nodetypes="ccccccccc"
transform="translate(0.000000,951.7390)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8189"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,951.7390)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8190"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,951.7390)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8191"
sodipodi:nodetypes="ccccccccc"
transform="translate(-10.11150,951.7390)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1798.1223,44.735020 L -1546.4928,44.735020 C -1543.7228,44.735020 -1541.4928,46.965020 -1541.4928,49.735020 L -1541.4928,139.15890 C -1541.4928,141.92890 -1543.7228,144.15890 -1546.4928,144.15890 L -1798.1223,144.15890 C -1800.8923,144.15890 -1803.1223,141.92890 -1803.1223,139.15890 L -1803.1223,49.735020 C -1803.1223,46.965020 -1800.8923,44.735020 -1798.1223,44.735020 z "
id="path8193"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,1061.163)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1526.4928,44.735020 L -1274.8633,44.735020 C -1272.0933,44.735020 -1269.8633,46.965020 -1269.8633,49.735020 L -1269.8633,139.15890 C -1269.8633,141.92890 -1272.0933,144.15890 -1274.8633,144.15890 L -1526.4928,144.15890 C -1529.2628,144.15890 -1531.4928,141.92890 -1531.4928,139.15890 L -1531.4928,49.735020 C -1531.4928,46.965020 -1529.2628,44.735020 -1526.4928,44.735020 z "
id="path8194"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,1061.163)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -1254.8633,44.735020 L -1003.2338,44.735020 C -1000.4638,44.735020 -998.23380,46.965020 -998.23380,49.735020 L -998.23380,139.15890 C -998.23380,141.92890 -1000.4638,144.15890 -1003.2338,144.15890 L -1254.8633,144.15890 C -1257.6333,144.15890 -1259.8633,141.92890 -1259.8633,139.15890 L -1259.8633,49.735020 C -1259.8633,46.965020 -1257.6333,44.735020 -1254.8633,44.735020 z "
id="path8195"
sodipodi:nodetypes="ccccccccc"
transform="translate(75.00000,1061.163)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -973.12230,44.735020 L -721.49280,44.735020 C -718.72280,44.735020 -716.49280,46.965020 -716.49280,49.735020 L -716.49280,139.15890 C -716.49280,141.92890 -718.72280,144.15890 -721.49280,144.15890 L -973.12230,144.15890 C -975.89230,144.15890 -978.12230,141.92890 -978.12230,139.15890 L -978.12230,49.735020 C -978.12230,46.965020 -975.89230,44.735020 -973.12230,44.735020 z "
id="path8197"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,1061.163)" />
<path
style="color:#000000;fill:#b24a38;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -701.49280,44.735020 L -449.86330,44.735020 C -447.09330,44.735020 -444.86330,46.965020 -444.86330,49.735020 L -444.86330,139.15890 C -444.86330,141.92890 -447.09330,144.15890 -449.86330,144.15890 L -701.49280,144.15890 C -704.26280,144.15890 -706.49280,141.92890 -706.49280,139.15890 L -706.49280,49.735020 C -706.49280,46.965020 -704.26280,44.735020 -701.49280,44.735020 z "
id="path8198"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,1061.163)" />
<path
style="color:#000000;fill:#af2d17;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7e473d;stroke-width:14.831229;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -429.86330,44.735020 L -178.23380,44.735020 C -175.46380,44.735020 -173.23380,46.965020 -173.23380,49.735020 L -173.23380,139.15890 C -173.23380,141.92890 -175.46380,144.15890 -178.23380,144.15890 L -429.86330,144.15890 C -432.63330,144.15890 -434.86330,141.92890 -434.86330,139.15890 L -434.86330,49.735020 C -434.86330,46.965020 -432.63330,44.735020 -429.86330,44.735020 z "
id="path8199"
sodipodi:nodetypes="ccccccccc"
transform="translate(64.88850,1061.163)" />
</g>
<path
style="color:#000000;fill:#a55229;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7f4224;stroke-width:11.123422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -55.003941,-30.712688 L 869.34597,-30.712688 C 870.45397,-30.712688 871.34597,-29.820688 871.34597,-28.712688 L 871.34597,628.94020 C 871.34597,630.04820 870.45397,630.94020 869.34597,630.94020 L -55.003941,630.94020 C -56.111941,630.94020 -57.003941,630.04820 -57.003941,628.94020 L -57.003941,-28.712688 C -57.003941,-29.820688 -56.111941,-30.712688 -55.003941,-30.712688 z "
id="rect1117"
transform="matrix(0.674253,0.000000,0.000000,0.674253,70.84492,170.4820)" />
<path
style="color:#000000;fill:#2d2d2d;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7f4224;stroke-width:7.4156108;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -12.917450,13.729022 L 827.25948,13.729022 C 828.21864,13.729022 828.99081,14.501195 828.99081,15.460351 L 828.99081,584.76716 C 828.99081,585.72632 828.21864,586.49849 827.25948,586.49849 L -12.917450,586.49849 C -13.876606,586.49849 -14.648779,585.72632 -14.648779,584.76716 L -14.648779,15.460351 C -14.648779,14.501195 -13.876606,13.729022 -12.917450,13.729022 z "
id="rect1739"
sodipodi:nodetypes="ccccccccc"
transform="matrix(0.674253,0.000000,0.000000,0.674253,70.84492,170.4820)" />
<path
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#7f4224;stroke-width:7.4156151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000;"
d="M -12.620237,14.599293 L -56.419512,-29.199982"
id="path1742"
transform="matrix(0.674253,0.000000,0.000000,0.674253,70.84492,170.4820)" />
<path
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#7f4224;stroke-width:7.4156151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000;"
d="M 828.58049,14.599293 L 872.37976,-29.199982"
id="path2987"
transform="matrix(0.674253,0.000000,0.000000,0.674253,70.84492,170.4820)" />
<path
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#7f4224;stroke-width:7.4156151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000;"
d="M -12.620237,314.59929 L -56.419512,270.80002"
id="path2988"
transform="matrix(0.674253,0.000000,0.000000,-0.674253,70.84492,777.5789)" />
<path
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#7f4224;stroke-width:7.4156151;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000;"
d="M 828.58049,585.80001 L 872.37976,629.59928"
id="path2989"
transform="matrix(0.674253,0.000000,0.000000,0.674253,70.84492,170.4820)" />
<path
style="color:#000000;fill:#fb9660;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#6b3d27;stroke-width:11.123422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -54.398346,654.69513 L 864.66867,654.69513 L 864.66867,683.19710 L -54.398346,683.19710 L -54.398346,654.69513 z "
id="path1073"
sodipodi:nodetypes="ccccc"
transform="matrix(0.674253,0.000000,0.000000,0.674253,72.21760,170.4820)" />
<path
style="color:#000000;fill:#f18347;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#6b3d27;stroke-width:11.123422;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;"
d="M -79.398346,627.19513 L 889.66867,627.19513 L 864.66867,655.69710 L -54.398346,655.69710 L -79.398346,627.19513 z "
id="rect1697"
sodipodi:nodetypes="ccccc"
transform="matrix(0.674253,0.000000,0.000000,0.674253,72.21760,170.4820)" />
<g
id="g4820"
transform="matrix(0.628274,0.000000,0.000000,0.628274,145.0612,254.0232)">
<path
style="color:#000000;fill:#e1e1e1;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:7.9583120;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 127.92325,531.30830 L 26.584650,531.30830 C 13.825199,531.30830 3.5531501,523.60463 3.5531501,514.03549 C 3.5531501,504.46636 13.825199,496.76270 26.584650,496.76270 L 127.92325,496.76270"
id="rect4197"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;fill:#c7c7c7;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:7.9583120;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 145.19688,514.03549 C 145.19688,523.57053 137.45829,531.30912 127.92325,531.30912 C 118.38821,531.30912 110.64963,523.57053 110.64963,514.03549 C 110.64963,504.50045 118.38821,496.76187 127.92325,496.76187 C 137.45829,496.76187 145.19688,504.50045 145.19688,514.03549 z "
id="path4193" />
</g>
<g
id="g2161"
transform="translate(7.000000,0.000000)">
<path
sodipodi:nodetypes="ccccc"
id="path2140"
d="M 572.16809,43.374188 L 568.63256,122.01380 L 124.16538,123.78157 L 117.09431,37.464285 L 572.16809,43.374188 z "
style="fill:#464646;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:5.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<path
sodipodi:nodetypes="cc"
id="path2142"
d="M -148.34524,35.696520 L 1184.5510,44.535354"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#464646;stroke-width:10.000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<path
sodipodi:nodetypes="ccccc"
id="path2144"
d="M 562.16809,33.374188 L 558.63256,112.01380 L 114.16538,113.78157 L 107.09431,27.464285 L 562.16809,33.374188 z "
style="fill:#e1e1e1;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#7f7f7f;stroke-width:5.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<path
sodipodi:nodetypes="cc"
id="path2146"
d="M -148.34524,28.196520 L 1184.5510,37.035354"
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#7f7f7f;stroke-width:10.000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
<g
style="fill:#c84d1d;fill-opacity:1.0000000"
transform="translate(83.75000,7.500000)"
id="g2148">
<path
transform="matrix(0.219067,0.000000,0.000000,0.213405,17.39984,-8.559191)"
id="path2150"
style="fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
d="M 182.81250,241.87500 L 156.90625,267.81250 L 179.53125,303.71875 C 175.71390,310.33399 172.67296,317.43534 170.46875,324.90625 L 129.56250,335.46875 L 129.56250,368.56250 L 170.68750,381.43750 C 172.80792,388.39718 175.69213,395.00503 179.21875,401.21875 L 155.46875,433.34375 L 182.81250,460.68750 L 213.34375,436.53125 C 220.78782,441.12382 228.85519,444.75868 237.43750,447.25000 L 246.87500,490.93750 L 281.43750,490.93750 L 288.75000,448.21875 C 297.41254,446.05182 305.60304,442.70007 313.18750,438.40625 L 345.50000,462.12500 L 371.40625,433.34375 L 366.07582,419.12039 L 349.85707,425.96414 L 329.90625,400.21875 C 315.23305,420.26336 291.59736,433.34375 264.87500,433.34375 C 220.37511,433.34375 184.25000,397.21864 184.25000,352.71875 C 184.25000,321.16303 202.47047,293.91634 228.90625,280.68750 L 228.90625,261.12500 C 225.03054,262.64969 221.30617,264.45493 217.68750,266.43750 L 182.81250,241.87500 z " />
<path
transform="matrix(0.219067,0.000000,0.000000,0.213405,17.39984,-8.559191)"
id="path2152"
style="fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
d="M 237.17711,215.20644 L 237.17711,413.19334 L 288.58245,409.63060 L 289.09141,325.65158 L 352.20292,417.26505 L 404.11722,399.96029 L 339.47882,309.87370 L 339.47882,308.85577 L 402.08137,226.40364 L 349.14914,209.09888 L 286.03763,297.14961 L 288.53763,209.60784 L 237.17711,215.20644 z " />
</g>
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc"
id="path1366"
d="M 383.46725,55.805791 L 378.95287,85.037214 C 378.40626,88.576177 377.41496,91.522077 375.97898,93.874787 C 374.54286,96.227535 372.77127,98.051685 370.66421,99.347235 C 368.55343,100.66607 366.21999,101.49759 363.66387,101.84185 C 361.12740,102.21295 358.45052,102.18095 355.63335,101.74588 C 353.42151,101.40429 351.05668,100.74108 348.53890,99.756335 C 346.04444,98.775135 343.96295,97.512055 342.29450,95.967115 C 340.64935,94.425847 339.97417,92.700557 340.26902,90.791387 C 340.45599,89.580657 341.11932,88.526977 342.25898,87.630270 C 343.39511,86.756831 344.53355,86.408253 345.67443,86.584445 C 346.48927,86.710286 347.61917,87.266192 349.06405,88.252147 C 350.53224,89.241707 351.74978,90.001857 352.71666,90.532587 C 353.70684,91.066907 355.12162,91.476107 356.96100,91.760177 C 360.29041,92.274357 362.79644,91.791267 364.47923,90.310957 C 366.18161,88.857517 367.28814,86.477735 367.79872,83.171629 L 367.65902,83.150054 C 365.23053,85.754759 361.62978,86.688550 356.85683,85.951436 C 353.41101,85.419278 350.60419,84.068042 348.43634,81.897723 C 346.27210,79.704111 344.80315,77.021956 344.02941,73.851195 C 343.28259,70.660731 343.18058,67.307677 343.72354,63.791956 C 344.29165,60.113326 345.57335,56.830930 347.56852,53.944681 C 349.59058,51.038916 352.05553,48.892709 354.96337,47.506268 C 357.87475,46.096504 360.91368,45.636162 364.08014,46.125117 C 366.19888,46.452386 367.95291,47.057022 369.34239,47.939037 C 370.75505,48.824702 371.98119,50.146389 373.02086,51.904044 C 373.58736,51.014211 374.36695,50.288373 375.35959,49.726453 C 376.35576,49.141339 377.49412,48.947694 378.77472,49.145404 C 380.40446,49.397155 381.65692,50.162693 382.53212,51.442019 C 383.41076,52.698141 383.72248,54.152729 383.46725,55.805791 M 370.16109,67.874862 C 370.58179,65.150785 370.25532,62.788116 369.18187,60.786762 C 368.11188,58.762193 366.37786,57.564737 363.97978,57.194327 C 361.60492,56.827623 359.59039,57.446170 357.93630,59.050044 C 356.30539,60.657546 355.28142,62.811720 354.86432,65.512492 C 354.58386,67.328553 354.62942,69.040030 355.00111,70.646865 C 355.37632,72.230445 356.05798,73.527672 357.04611,74.538409 C 358.05748,75.552795 359.37813,76.185829 361.00794,76.437530 C 362.61438,76.685621 364.05278,76.478685 365.32312,75.816676 C 366.61668,75.158313 367.66600,74.152271 368.47103,72.798631 C 369.30283,71.425316 369.86624,69.784088 370.16109,67.874862"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#7f42c0;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
<path
sodipodi:nodetypes="ccccccccccccccccccccccccc"
id="path1367"
d="M 246.72044,84.179261 L 250.03147,56.459235 C 250.22985,54.798391 250.90936,53.479704 252.06998,52.503164 C 253.25675,51.506121 254.66887,51.105364 256.30630,51.300887 C 257.66305,51.463005 258.78941,51.965260 259.68526,52.807756 C 260.60731,53.629755 261.20991,54.543998 261.49299,55.550546 C 263.66129,52.891273 267.04960,51.836792 271.65791,52.387174 C 274.30122,52.702966 276.61830,53.466134 278.60911,54.676663 C 280.62322,55.890036 282.10802,57.562179 283.06362,59.692975 C 284.04528,61.803267 284.35729,64.355497 283.99964,67.349733 L 281.49332,88.332728 C 281.29214,90.016986 280.59817,91.357702 279.41139,92.354810 C 278.22462,93.351910 276.81249,93.752670 275.17501,93.557080 C 273.53752,93.361490 272.26091,92.627730 271.34522,91.355736 C 270.42943,90.083742 270.06935,88.629038 270.26494,86.991548 L 272.40245,69.096324 C 272.64553,67.061200 272.29137,65.358115 271.34005,63.986937 C 270.41485,62.595254 268.98150,61.783435 267.03993,61.551463 C 265.12176,61.322406 263.53752,61.773787 262.28716,62.905610 C 261.03685,64.037499 260.29151,65.609325 260.05122,67.621025 L 257.91372,85.516249 C 257.71533,87.177153 257.02136,88.517809 255.83180,89.538327 C 254.66843,90.538226 253.25631,90.938987 251.59540,90.740600 C 249.95798,90.545017 248.67997,89.822931 247.76143,88.574357 C 246.86905,87.305161 246.52205,85.840165 246.72044,84.179261"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#55b636;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccc"
id="path1368"
d="M 232.76409,53.539149 L 235.58354,81.313481 C 235.75485,83.001038 235.37026,84.460903 234.42975,85.693009 C 233.48917,86.925121 232.19857,87.624449 230.55794,87.790994 C 229.26880,87.921859 228.14323,87.680943 227.18124,87.068185 C 226.24260,86.453057 225.50070,85.675931 224.95549,84.736681 C 223.84678,86.412141 222.55235,87.656473 221.07204,88.469743 C 219.61754,89.304166 217.83560,89.828411 215.72617,90.042545 C 212.51511,90.368510 209.49372,89.763548 206.66196,88.227606 C 203.85129,86.665942 201.51312,84.393253 199.64732,81.409551 C 197.80266,78.399993 196.68999,75.020185 196.30931,71.270057 C 195.93338,67.566849 196.34774,64.067550 197.55235,60.772092 C 198.77813,57.450975 200.62365,54.753517 203.08893,52.679926 C 205.55189,50.582860 208.37713,49.372570 211.56479,49.048921 C 213.69762,48.832471 215.54743,48.976227 217.11410,49.480190 C 218.70417,49.981847 220.22352,50.952424 221.67207,52.391869 C 221.99634,51.388118 222.56817,50.489451 223.38746,49.695811 C 224.20432,48.878836 225.25732,48.404946 226.54646,48.274021 C 228.18709,48.107536 229.59190,48.533246 230.76088,49.551150 C 231.92743,50.545721 232.59516,51.875052 232.76409,53.539149 M 214.25323,59.787149 C 211.86251,60.029898 210.06854,61.135501 208.87126,63.104024 C 207.69738,65.070222 207.24847,67.412757 207.52452,70.131568 C 207.70053,71.866050 208.16946,73.452343 208.93110,74.890474 C 209.69038,76.305265 210.68826,77.387942 211.92479,78.138567 C 213.18472,78.886878 214.61160,79.180071 216.20544,79.018276 C 218.61956,78.773211 220.41354,77.667608 221.58741,75.701400 C 222.75886,73.711809 223.20420,71.334105 222.92344,68.568378 C 222.64507,65.826101 221.73457,63.621624 220.19196,61.954827 C 218.64691,60.264685 216.66736,59.542144 214.25323,59.787149"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#c38823;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc"
id="path1369"
d="M 479.72567,90.535822 L 479.72567,62.618748 C 479.72567,60.946098 480.24391,59.556128 481.28052,58.448828 C 482.34067,57.318068 483.69530,56.752658 485.34441,56.752598 C 486.71081,56.752658 487.88874,57.117778 488.87818,57.848078 C 489.89122,58.554918 490.59799,59.391238 490.99852,60.357108 C 491.91729,58.943618 493.24834,57.871658 494.99172,57.141298 C 496.73506,56.387478 498.64327,56.010538 500.71644,56.010478 C 502.62472,56.010538 504.53295,56.387478 506.44123,57.141298 C 508.34945,57.871658 509.93972,59.049638 511.21190,60.675128 C 513.14371,59.214528 514.89880,58.071948 516.47730,57.247328 C 518.07920,56.422818 519.96391,56.010538 522.13139,56.010478 C 524.79344,56.010538 527.18469,56.493508 529.30501,57.459378 C 531.44880,58.425308 533.12146,59.909548 534.32302,61.911968 C 535.54804,63.890938 536.16056,66.388148 536.16061,69.403668 L 536.16061,90.535822 C 536.16056,92.208532 535.63049,93.622032 534.57041,94.776432 C 533.53374,95.907255 532.17911,96.472665 530.50652,96.472665 C 528.85733,96.472665 527.50270,95.907255 526.44262,94.776432 C 525.40601,93.622032 524.88770,92.208532 524.88777,90.535822 L 524.88777,72.513388 C 524.88770,70.581588 524.38115,68.956038 523.36819,67.636758 C 522.37868,66.317468 521.00052,65.657848 519.23367,65.657788 C 517.46670,65.657848 516.07671,66.317468 515.06375,67.636758 C 514.07424,68.956038 513.57951,70.581588 513.57956,72.513388 L 513.57956,90.535822 C 513.57951,92.208532 513.04943,93.622032 511.98936,94.776432 C 510.95269,95.907255 509.59811,96.472665 507.92546,96.472665 C 506.27628,96.472665 504.92172,95.907255 503.86157,94.776432 C 502.82496,93.622032 502.30665,92.208532 502.30672,90.535822 L 502.30672,72.513388 C 502.30665,70.581588 501.80017,68.956038 500.78713,67.636758 C 499.79769,66.317468 498.41947,65.657848 496.65261,65.657788 C 494.88564,65.657848 493.49573,66.317468 492.48269,67.636758 C 491.49325,68.956038 490.99845,70.581588 490.99852,72.513388 L 490.99852,90.535822 C 490.99845,92.208532 490.46838,93.622032 489.40826,94.776432 C 488.37170,95.907255 487.01707,96.472665 485.34441,96.472665 C 483.69530,96.472665 482.34067,95.907255 481.28052,94.776432 C 480.24391,93.622032 479.72567,92.208532 479.72567,90.535822"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#843256;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
<path
sodipodi:nodetypes="cccccccccccccccccc"
id="path1370"
d="M 396.97905,91.078922 L 394.50623,63.271581 C 394.35807,61.605506 394.75122,60.175089 395.68563,58.980325 C 396.64143,57.760106 397.94065,57.076929 399.58330,56.930794 C 400.94432,56.809823 402.14996,57.069169 403.20027,57.708951 C 404.27193,58.323281 405.04995,59.093714 405.53445,60.020310 C 407.69477,56.919095 410.15943,55.245303 412.92845,54.999002 C 414.45378,54.863420 415.84035,55.295951 417.08829,56.296585 C 418.35758,57.271707 419.06842,58.615756 419.22075,60.328747 C 419.37726,62.088781 418.93952,63.416715 417.90757,64.312563 C 416.89907,65.206458 415.17172,66.128727 412.72557,67.079437 C 410.23241,68.034378 408.58903,69.102915 407.79543,70.285096 C 406.99970,71.443915 406.72704,73.431198 406.97745,76.247136 L 408.20760,90.080402 C 408.35577,91.746532 407.95298,93.201432 406.99927,94.445202 C 406.06689,95.663395 404.76767,96.346575 403.10160,96.494735 C 401.45895,96.640805 400.05956,96.197615 398.90343,95.165132 C 397.76869,94.107092 397.12722,92.745052 396.97905,91.078922"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#be318a;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccc"
id="path1371"
d="M 330.33382,57.578524 L 331.56969,85.468229 C 331.64479,87.162795 331.17782,88.598435 330.16878,89.775075 C 329.15968,90.951725 327.83141,91.576545 326.18397,91.649555 C 324.88947,91.706915 323.77942,91.402395 322.85382,90.735935 C 321.95166,90.068445 321.25515,89.250395 320.76422,88.281665 C 319.56205,89.891385 318.19897,91.060115 316.67482,91.787915 C 315.17523,92.538295 313.36637,92.960385 311.24818,93.054245 C 308.02377,93.197125 305.04167,92.421375 302.30181,90.726925 C 299.58447,89.007995 297.37929,86.606055 295.68614,83.521098 C 294.01556,80.411535 293.09684,76.973936 292.92997,73.208231 C 292.76519,69.489641 293.37781,66.019558 294.76784,62.797914 C 296.18044,59.551857 298.17633,56.963683 300.75551,55.033602 C 303.33372,53.079951 306.22319,52.032239 309.42409,51.890338 C 311.56578,51.795494 313.40443,52.044182 314.93991,52.636398 C 316.49889,53.227642 317.96060,54.283028 319.32498,55.802498 C 319.70578,54.818805 320.32778,53.954102 321.19086,53.208323 C 322.05285,52.439109 323.13109,52.025851 324.42559,51.968428 C 326.07303,51.895485 327.45136,52.400372 328.56058,53.483090 C 329.66870,54.542372 330.25978,55.907514 330.33382,57.578524 M 311.49770,62.764041 C 309.09705,62.870481 307.24312,63.872305 305.93586,65.769577 C 304.65210,67.665857 304.07073,69.979082 304.19177,72.709190 C 304.26889,74.450873 304.64687,76.061259 305.32552,77.540365 C 306.00314,78.996035 306.93785,80.133691 308.12971,80.953402 C 309.34506,81.772132 310.75296,82.145972 312.35342,82.075051 C 314.77757,81.967630 316.63150,80.965805 317.91526,79.069515 C 319.19792,77.149741 319.77772,74.801201 319.65466,72.023986 C 319.53263,69.270318 318.74894,67.017643 317.30358,65.265841 C 315.85712,63.490594 313.92185,62.656680 311.49770,62.764041"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#5173bc;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccc"
id="path1372"
d="M 467.08017,62.443132 L 464.00490,90.190309 C 463.81805,91.876219 463.13550,93.222779 461.95724,94.229939 C 460.77893,95.237089 459.37026,95.649825 457.73123,95.468175 C 456.44335,95.325435 455.39346,94.853559 454.58158,94.052469 C 453.79302,93.253959 453.23083,92.338379 452.89500,91.305589 C 451.45921,92.710899 449.93235,93.655689 448.31428,94.140009 C 446.71699,94.650419 444.86471,94.788819 442.75734,94.555259 C 439.54941,94.199719 436.72241,92.973829 434.27628,90.877539 C 431.85618,88.760519 430.04733,86.047539 428.84963,82.738589 C 427.67802,79.408795 427.29983,75.870698 427.71505,72.124238 C 428.12509,68.424650 429.26496,65.090364 431.13468,62.121308 C 433.03047,59.131609 435.40125,56.881794 438.24697,55.372074 C 441.09535,53.838913 444.11173,53.248828 447.29629,53.601718 C 449.42703,53.837931 451.20541,54.366892 452.63134,55.188579 C 454.08063,56.012926 455.36231,57.280889 456.47633,58.992402 C 457.00412,58.079114 457.75191,57.320551 458.71957,56.716631 C 459.68976,56.089387 460.81879,55.847165 462.10669,55.989843 C 463.74570,56.171559 465.02980,56.882750 465.95899,58.123417 C 466.89070,59.340760 467.26442,60.780661 467.08017,62.443132 M 447.67006,64.665060 C 445.28167,64.400411 443.29554,65.104681 441.71161,66.777923 C 440.15105,68.453805 439.22028,70.649858 438.91930,73.366023 C 438.72719,75.098797 438.85258,76.748188 439.29528,78.314184 C 439.74056,79.856864 440.48886,81.124935 441.54021,82.118469 C 442.61494,83.114649 443.94844,83.700909 445.54072,83.877389 C 447.95249,84.144689 449.93861,83.440419 451.49917,81.764519 C 453.06226,80.065253 453.99693,77.834065 454.30316,75.071044 C 454.60680,72.331449 454.17948,69.984936 453.02124,68.031389 C 451.86552,66.054507 450.08181,64.932420 447.67006,64.665060"
style="font-size:12.000000;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#0aa3b9;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:VAG Rounded Black SSi;text-anchor:start;writing-mode:lr-tb" />
</g>
<path
sodipodi:nodetypes="ccccccccc"
id="path2170"
d="M 714.90850,25.939396 L 960.19730,25.939396 C 961.75040,25.939396 963.00060,27.048961 963.00060,28.427207 L 963.00060,640.80686 C 963.00060,642.18511 961.75040,643.29468 960.19730,643.29468 L 714.90850,643.29468 C 713.35550,643.29468 712.10520,642.18511 712.10520,640.80686 L 712.10520,28.427207 C 712.10520,27.048961 713.35550,25.939396 714.90850,25.939396 z "
style="color:#000000;fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999833;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.0717728"
rx="2.8033009"
y="184.29291"
x="731.02759"
height="124.39074"
width="213.05084"
id="rect2172"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999833;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.0717728"
rx="2.8033009"
y="44.975296"
x="731.02759"
height="124.39074"
width="213.05084"
id="rect2174"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999833;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="rect2178"
d="M 733.83090,462.92812 L 941.27510,462.92812 C 942.82820,462.92812 944.07840,463.85214 944.07840,464.99990 L 944.07840,585.24710 C 944.07840,586.39485 942.82820,587.31887 941.27510,587.31887 L 733.83090,587.31887 C 732.27790,587.31887 731.02760,586.39485 731.02760,585.24710 L 731.02760,464.99990 C 731.02760,463.85214 732.27790,462.92812 733.83090,462.92812 z "
style="color:#000000;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999833;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.6228154"
rx="3.5489125"
y="528.19983"
x="702.69427"
height="157.47572"
width="269.71738"
id="rect2180"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999785;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.7935510"
rx="3.7799344"
y="538.21259"
x="693.91553"
height="167.72684"
width="287.27505"
id="rect2182"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999828;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
ry="2.0717728"
rx="2.8033009"
y="323.61053"
x="731.02759"
height="124.39074"
width="213.05084"
id="rect2184"
style="color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4f4f4f;stroke-width:7.4999833;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="path2186"
d="M 767.92460,634.94345 C 768.71760,651.02833 779.05870,662.75893 791.20570,670.05206 C 803.84390,677.64013 819.92260,681.77784 837.56730,681.77785 C 855.21200,681.77785 871.29070,677.64013 883.92890,670.05206 C 896.07590,662.75893 906.39050,651.02834 907.18130,634.94345 L 883.98620,634.94345 C 883.05190,637.56592 880.26770,641.50875 873.67720,645.46572 C 865.20500,650.55253 852.11320,654.26866 837.56730,654.26866 C 823.02140,654.26865 809.92960,650.55253 801.45730,645.46572 C 794.86690,641.50875 792.06180,637.56592 791.11980,634.94345 L 767.92460,634.94345 z "
style="color:#000000;fill:#8c8c8c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:25.000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="path2188"
d="M 787.05640,401.17257 C 787.63140,412.83778 795.13110,421.34516 803.94050,426.63436 C 813.10610,432.13746 824.76690,435.13824 837.56330,435.13825 C 850.35970,435.13825 862.02050,432.13746 871.18610,426.63436 C 879.99550,421.34516 887.47590,412.83779 888.04940,401.17257 L 871.22770,401.17257 C 870.55010,403.07445 868.53090,405.93392 863.75130,408.80362 C 857.60700,412.49273 848.11240,415.18778 837.56330,415.18778 C 827.01420,415.18778 817.51960,412.49273 811.37530,408.80362 C 806.59570,405.93392 804.56130,403.07445 803.87820,401.17257 L 787.05640,401.17257 z "
style="color:#000000;fill:#8c8c8c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:25.000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="path2190"
d="M 787.05640,261.85490 C 787.63140,273.52012 795.13110,282.02750 803.94050,287.31670 C 813.10610,292.81981 824.76690,295.82058 837.56330,295.82059 C 850.35970,295.82059 862.02050,292.81981 871.18610,287.31670 C 879.99550,282.02750 887.47590,273.52013 888.04940,261.85490 L 871.22770,261.85490 C 870.55010,263.75679 868.53090,266.61625 863.75130,269.48596 C 857.60700,273.17507 848.11240,275.87012 837.56330,275.87012 C 827.01420,275.87012 817.51960,273.17507 811.37530,269.48596 C 806.59570,266.61625 804.56130,263.75679 803.87820,261.85490 L 787.05640,261.85490 z "
style="color:#000000;fill:#8c8c8c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:25.000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<path
id="path2192"
d="M 787.05640,122.53730 C 787.63140,134.20252 795.13110,142.70990 803.94050,147.99909 C 813.10610,153.50219 824.76690,156.50298 837.56330,156.50299 C 850.35970,156.50299 862.02050,153.50219 871.18610,147.99909 C 879.99550,142.70990 887.47590,134.20253 888.04940,122.53730 L 871.22770,122.53730 C 870.55010,124.43919 868.53090,127.29865 863.75130,130.16835 C 857.60700,133.85746 848.11240,136.55250 837.56330,136.55250 C 827.01420,136.55250 817.51960,133.85746 811.37530,130.16835 C 806.59570,127.29865 804.56130,124.43919 803.87820,122.53730 L 787.05640,122.53730 z "
style="color:#000000;fill:#8c8c8c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:25.000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7105"
width="75.000000"
height="75.000000"
x="1150.0530"
y="557.64886"
inkscape:export-filename="/home/danny/work/kde/kanagram/quit.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<g
id="g2183"
transform="matrix(1.013677,0.000000,0.000000,1.013677,419.6389,-8.139854)"
inkscape:export-filename="/home/danny/work/kde/kanagram/quit.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<path
style="font-size:12.000000px;fill:#666666;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#666666;stroke-width:0.98650759;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
d="M 767.77865,570.05844 L 767.77865,580.72915 C 776.04683,585.10543 780.74642,594.30216 779.09854,603.77463 C 777.25641,614.36418 768.09964,621.96672 757.35147,621.87019 C 746.60328,621.77368 737.58060,613.94924 735.92891,603.32832 C 734.46942,593.94404 739.16969,584.90018 747.32982,580.60741 L 747.32982,570.09901 C 736.52612,573.80394 728.76827,582.92628 726.55646,593.63136 C 725.81042,597.24227 725.71956,601.01331 726.31310,604.82953 C 728.68698,620.09439 741.82253,631.50957 757.27030,631.64829 C 772.71807,631.78701 786.06669,620.61732 788.71435,605.39754 C 791.36214,590.17777 782.52798,575.18528 767.94098,570.09901 C 767.88601,570.07981 767.83390,570.07555 767.77865,570.05844 z "
id="path696" />
<path
style="font-size:12.000000px;fill:#666666;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#666666;stroke-width:0.98650759;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
d="M 752.64657,558.64820 L 752.64657,594.96815 L 762.45954,594.96815 L 762.45954,558.64820 L 752.64657,558.64820 z "
id="path701"
sodipodi:nodetypes="ccccc" />
</g>
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7103"
width="60.000000"
height="60.000000"
x="1157.5530"
y="337.63809"
inkscape:export-filename="/home/danny/work/kde/kanagram/help.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<path
style="font-size:12.000000px;fill:#666666;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:5.0000014;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 1187.5531,337.63810 C 1171.0175,337.63812 1157.5531,351.10266 1157.5531,367.63810 C 1157.5531,384.17356 1171.0175,397.63810 1187.5531,397.63810 C 1204.0885,397.63813 1217.5531,384.17355 1217.5531,367.63810 C 1217.5531,351.10268 1204.0885,337.63810 1187.5531,337.63810 z M 1186.9593,343.88810 C 1189.0256,343.88811 1191.0265,344.20977 1192.8343,344.82560 C 1194.6394,345.44057 1196.2452,346.34293 1197.6468,347.54435 C 1199.0529,348.74960 1200.1452,350.19307 1200.9281,351.91935 C 1201.7412,353.64741 1202.1156,355.59202 1202.1156,357.66935 C 1202.1155,361.35497 1201.1932,364.31301 1199.2406,366.45060 C 1197.4700,368.39080 1195.0272,369.64459 1192.0843,370.35685 L 1192.0843,370.98185 C 1192.0843,372.00629 1191.8312,372.94257 1191.3656,373.76310 C 1190.9132,374.57726 1190.2577,375.21620 1189.4593,375.66935 C 1189.4489,375.66957 1189.4385,375.66957 1189.4281,375.66935 C 1188.6315,376.11193 1187.7538,376.35685 1186.7718,376.35685 C 1185.7899,376.35684 1184.8664,376.10900 1184.0531,375.66935 C 1184.0426,375.66957 1184.0322,375.66957 1184.0218,375.66935 C 1183.2360,375.21099 1182.6052,374.58010 1182.1468,373.79435 C 1182.1466,373.78393 1182.1466,373.77352 1182.1468,373.76310 C 1181.7023,372.94088 1181.4593,371.99703 1181.4593,370.98185 L 1181.4593,366.32560 C 1181.4593,365.26955 1181.6519,364.32344 1182.2093,363.60685 C 1182.6960,362.98112 1183.3269,362.55725 1184.0218,362.32560 C 1184.6499,362.11623 1185.5200,361.88165 1186.6781,361.66935 C 1188.0586,361.41272 1189.0221,360.95555 1189.6156,360.35685 C 1190.2090,359.75815 1190.5218,359.01180 1190.5218,357.95060 C 1190.5218,357.17722 1190.2092,356.52783 1189.5218,355.85685 C 1189.5111,355.84674 1189.5007,355.83632 1189.4906,355.82560 C 1188.8598,355.17944 1188.0784,354.88810 1186.9593,354.88810 C 1185.8794,354.88811 1185.1311,355.07565 1184.6156,355.41935 C 1184.0521,355.80572 1183.4700,356.42761 1182.8343,357.26310 C 1182.1572,358.15924 1181.4520,358.87793 1180.7718,359.38810 C 1180.0084,359.95453 1179.0211,360.16935 1177.8968,360.16935 C 1176.5466,360.16935 1175.3431,359.59625 1174.3968,358.60685 C 1173.4716,357.59548 1172.9906,356.34274 1172.9906,354.98185 C 1172.9905,352.73657 1173.7350,350.71279 1175.2093,349.01310 C 1176.6514,347.35071 1178.4390,346.07461 1180.5843,345.20060 C 1182.7107,344.33429 1184.8292,343.88810 1186.9593,343.88810 z M 1186.6781,379.63810 C 1187.7035,379.63811 1188.7006,379.94295 1189.5843,380.48185 C 1190.4668,381.01987 1191.1373,381.71502 1191.6468,382.60685 C 1192.1883,383.49472 1192.4593,384.50275 1192.4593,385.54435 C 1192.4593,386.60223 1192.1881,387.60377 1191.6468,388.51310 C 1191.1289,389.39802 1190.4176,390.09502 1189.5218,390.60685 C 1188.6401,391.12302 1187.6779,391.38810 1186.6781,391.38810 C 1185.6782,391.38811 1184.7024,391.12078 1183.8031,390.60685 C 1182.9378,390.10037 1182.1896,389.43430 1181.6468,388.54435 C 1181.6466,388.53393 1181.6466,388.52352 1181.6468,388.51310 C 1181.1263,387.60200 1180.8656,386.59325 1180.8656,385.54435 C 1180.8656,384.51192 1181.1261,383.52792 1181.6468,382.63810 C 1181.6466,382.62768 1181.6466,382.61727 1181.6468,382.60685 C 1182.1849,381.70305 1182.9334,381.01209 1183.8031,380.48185 C 1184.6868,379.94293 1185.6526,379.63810 1186.6781,379.63810 z "
id="path839"
inkscape:export-filename="/home/danny/work/kde/kanagram/help.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect7101"
width="60.000000"
height="60.000000"
x="1157.5530"
y="198.32043"
inkscape:export-filename="/home/danny/work/kde/kanagram/config.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<g
id="g5240"
transform="matrix(1.023220,0.000000,0.000000,1.023220,332.2236,-7.295073)"
inkscape:export-filename="/home/danny/work/kde/kanagram/config.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<path
sodipodi:nodetypes="cccc"
id="path1727"
d="M 832.38890,243.40235 L 819.70407,257.14425 L 809.04277,252.52335 L 824.20416,236.09347"
style="font-size:12.000000px;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#666666;stroke-width:4.8865376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
<path
style="font-size:12.000000px;fill:#666666;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#666666;stroke-width:4.8865376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
d="M 822.94932,229.98430 C 826.31521,240.77029 837.76081,246.77145 848.54680,243.40556 C 856.74757,240.84641 862.13552,233.60565 862.79604,225.53511 L 842.59663,231.83857 L 837.87884,216.72038 L 857.89005,210.47565 C 852.72007,204.51763 844.35875,201.82516 836.35098,204.32408 C 825.56498,207.68997 819.58341,219.19831 822.94932,229.98430 z "
id="path586" />
<path
sodipodi:nodetypes="cccc"
id="path5234"
d="M 819.70407,257.14425 L 832.38890,243.40235 L 824.20416,236.09347 L 809.04277,252.52335"
style="font-size:12.000000px;fill:#666666;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:6.2499995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
</g>
<path
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:5.0000014;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 1277.5530,337.63810 C 1261.0174,337.63812 1247.5530,351.10266 1247.5530,367.63810 C 1247.5530,384.17356 1261.0174,397.63810 1277.5530,397.63810 C 1294.0884,397.63813 1307.5530,384.17355 1307.5530,367.63810 C 1307.5530,351.10268 1294.0884,337.63810 1277.5530,337.63810 z M 1276.9592,343.88810 C 1279.0255,343.88811 1281.0264,344.20977 1282.8342,344.82560 C 1284.6393,345.44057 1286.2451,346.34293 1287.6467,347.54435 C 1289.0528,348.74960 1290.1451,350.19307 1290.9280,351.91935 C 1291.7411,353.64741 1292.1155,355.59202 1292.1155,357.66935 C 1292.1154,361.35497 1291.1931,364.31301 1289.2405,366.45060 C 1287.4699,368.39080 1285.0271,369.64459 1282.0842,370.35685 L 1282.0842,370.98185 C 1282.0842,372.00629 1281.8311,372.94257 1281.3655,373.76310 C 1280.9131,374.57726 1280.2576,375.21620 1279.4592,375.66935 C 1279.4488,375.66957 1279.4384,375.66957 1279.4280,375.66935 C 1278.6314,376.11193 1277.7537,376.35685 1276.7717,376.35685 C 1275.7898,376.35684 1274.8663,376.10900 1274.0530,375.66935 C 1274.0425,375.66957 1274.0321,375.66957 1274.0217,375.66935 C 1273.2359,375.21099 1272.6051,374.58010 1272.1467,373.79435 C 1272.1465,373.78393 1272.1465,373.77352 1272.1467,373.76310 C 1271.7022,372.94088 1271.4592,371.99703 1271.4592,370.98185 L 1271.4592,366.32560 C 1271.4592,365.26955 1271.6518,364.32344 1272.2092,363.60685 C 1272.6959,362.98112 1273.3268,362.55725 1274.0217,362.32560 C 1274.6498,362.11623 1275.5199,361.88165 1276.6780,361.66935 C 1278.0585,361.41272 1279.0220,360.95555 1279.6155,360.35685 C 1280.2089,359.75815 1280.5217,359.01180 1280.5217,357.95060 C 1280.5217,357.17722 1280.2091,356.52783 1279.5217,355.85685 C 1279.5110,355.84674 1279.5006,355.83632 1279.4905,355.82560 C 1278.8597,355.17944 1278.0783,354.88810 1276.9592,354.88810 C 1275.8793,354.88811 1275.1310,355.07565 1274.6155,355.41935 C 1274.0520,355.80572 1273.4699,356.42761 1272.8342,357.26310 C 1272.1571,358.15924 1271.4519,358.87793 1270.7717,359.38810 C 1270.0083,359.95453 1269.0210,360.16935 1267.8967,360.16935 C 1266.5465,360.16935 1265.3430,359.59625 1264.3967,358.60685 C 1263.4715,357.59548 1262.9905,356.34274 1262.9905,354.98185 C 1262.9904,352.73657 1263.7349,350.71279 1265.2092,349.01310 C 1266.6513,347.35071 1268.4389,346.07461 1270.5842,345.20060 C 1272.7106,344.33429 1274.8291,343.88810 1276.9592,343.88810 z M 1276.6780,379.63810 C 1277.7034,379.63811 1278.7005,379.94295 1279.5842,380.48185 C 1280.4667,381.01987 1281.1372,381.71502 1281.6467,382.60685 C 1282.1882,383.49472 1282.4592,384.50275 1282.4592,385.54435 C 1282.4592,386.60223 1282.1880,387.60377 1281.6467,388.51310 C 1281.1288,389.39802 1280.4175,390.09502 1279.5217,390.60685 C 1278.6400,391.12302 1277.6778,391.38810 1276.6780,391.38810 C 1275.6781,391.38811 1274.7023,391.12078 1273.8030,390.60685 C 1272.9377,390.10037 1272.1895,389.43430 1271.6467,388.54435 C 1271.6465,388.53393 1271.6465,388.52352 1271.6467,388.51310 C 1271.1262,387.60200 1270.8655,386.59325 1270.8655,385.54435 C 1270.8655,384.51192 1271.1260,383.52792 1271.6467,382.63810 C 1271.6465,382.62768 1271.6465,382.61727 1271.6467,382.60685 C 1272.1848,381.70305 1272.9333,381.01209 1273.8030,380.48185 C 1274.6867,379.94293 1275.6525,379.63810 1276.6780,379.63810 z "
id="path6723"
inkscape:export-filename="/home/danny/work/kde/kanagram/help_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<g
id="g6727"
transform="matrix(1.023220,0.000000,0.000000,1.023220,422.2235,-7.295073)"
inkscape:export-filename="/home/danny/work/kde/kanagram/config_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<path
sodipodi:nodetypes="cccc"
id="path6729"
d="M 832.38890,243.40235 L 819.70407,257.14425 L 809.04277,252.52335 L 824.20416,236.09347"
style="font-size:12.000000px;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#373737;stroke-width:4.8865376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
<path
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#373737;stroke-width:4.8865376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
d="M 822.94932,229.98430 C 826.31521,240.77029 837.76081,246.77145 848.54680,243.40556 C 856.74757,240.84641 862.13552,233.60565 862.79604,225.53511 L 842.59663,231.83857 L 837.87884,216.72038 L 857.89005,210.47565 C 852.72007,204.51763 844.35875,201.82516 836.35098,204.32408 C 825.56498,207.68997 819.58341,219.19831 822.94932,229.98430 z "
id="path6731" />
<path
sodipodi:nodetypes="cccc"
id="path6733"
d="M 819.70407,257.14425 L 832.38890,243.40235 L 824.20416,236.09347 L 809.04277,252.52335"
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:6.2499995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
</g>
<g
id="g2187"
transform="matrix(1.013677,0.000000,0.000000,1.013677,509.6389,-8.139871)"
inkscape:export-filename="/home/danny/work/kde/kanagram/quit_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000">
<path
style="font-size:12.000000px;fill:#383838;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#383838;stroke-width:0.98650759;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
d="M 767.77865,570.05844 L 767.77865,580.72915 C 776.04683,585.10543 780.74642,594.30216 779.09854,603.77463 C 777.25641,614.36418 768.09964,621.96672 757.35147,621.87019 C 746.60328,621.77368 737.58060,613.94924 735.92891,603.32832 C 734.46942,593.94404 739.16969,584.90018 747.32982,580.60741 L 747.32982,570.09901 C 736.52612,573.80394 728.76827,582.92628 726.55646,593.63136 C 725.81042,597.24227 725.71956,601.01331 726.31310,604.82953 C 728.68698,620.09439 741.82253,631.50957 757.27030,631.64829 C 772.71807,631.78701 786.06669,620.61732 788.71435,605.39754 C 791.36214,590.17777 782.52798,575.18528 767.94098,570.09901 C 767.88601,570.07981 767.83390,570.07555 767.77865,570.05844 z "
id="path2189" />
<path
style="font-size:12.000000px;fill:#383838;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#383838;stroke-width:0.98650759;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
d="M 752.64657,558.64820 L 752.64657,594.96815 L 762.45954,594.96815 L 762.45954,558.64820 L 752.64657,558.64820 z "
id="path2191"
sodipodi:nodetypes="ccccc" />
</g>
<rect
style="opacity:1.0000000;color:#000000;fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
id="rect6373"
width="60.000000"
height="60.000000"
x="1157.5530"
y="59.002838"
inkscape:export-filename="/home/danny/work/kde/kanagram/next.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<path
style="font-size:12.000000px;fill:#666666;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:3.1250005;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1.0000000"
d="M 1157.5559,98.468100 C 1157.6732,99.632400 1158.6573,100.51680 1159.8289,100.51100 L 1186.3769,100.51100 L 1186.3769,116.67290 C 1186.3507,117.62210 1186.9188,118.48740 1187.8008,118.84160 C 1188.6829,119.19610 1189.6926,118.96480 1190.3319,118.26200 L 1216.9254,90.568500 C 1217.7623,89.691803 1217.7623,88.313003 1216.9254,87.436103 L 1190.3319,59.742903 C 1189.6981,59.046803 1188.7001,58.813203 1187.8226,59.155703 C 1186.9452,59.498203 1186.3702,60.345603 1186.3769,61.286503 L 1186.3769,77.493803 L 1159.8289,77.493803 C 1158.5735,77.493903 1157.5560,78.510303 1157.5559,79.763803 L 1157.5559,98.241000 C 1157.5521,98.316800 1157.5521,98.392400 1157.5559,98.468100 z "
id="path877"
sodipodi:nodetypes="ccccsccccscccccc"
inkscape:export-filename="/home/danny/work/kde/kanagram/next.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<path
style="font-size:12.000000px;fill:#373737;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:3.1250005;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1.0000000"
d="M 1247.5558,98.468101 C 1247.6731,99.632401 1248.6572,100.51680 1249.8288,100.51100 L 1276.3768,100.51100 L 1276.3768,116.67290 C 1276.3506,117.62210 1276.9187,118.48740 1277.8007,118.84160 C 1278.6828,119.19610 1279.6925,118.96480 1280.3318,118.26200 L 1306.9253,90.568501 C 1307.7622,89.691804 1307.7622,88.313004 1306.9253,87.436104 L 1280.3318,59.742904 C 1279.6980,59.046804 1278.7000,58.813204 1277.8225,59.155704 C 1276.9451,59.498204 1276.3701,60.345604 1276.3768,61.286504 L 1276.3768,77.493804 L 1249.8288,77.493804 C 1248.5734,77.493904 1247.5559,78.510304 1247.5558,79.763804 L 1247.5558,98.241001 C 1247.5520,98.316801 1247.5520,98.392401 1247.5558,98.468101 z "
id="path5645"
sodipodi:nodetypes="ccccsccccscccccc"
inkscape:export-filename="/home/danny/work/kde/kanagram/next_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<g
transform="translate(-2.034594,0.000000)"
id="g5736"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/arrow.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000"
style="stroke-opacity:1.0000000;stroke:#9b9b9b">
<path
style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#9b9b9b;stroke-width:3.1250000;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 600.58507,224.60699 C 600.58507,224.33477 599.54621,201.09279 599.54621,198.63554 C 599.54621,192.53826 614.78280,208.13608 615.64851,209.52122 C 617.07310,211.80056 607.03874,223.74557 600.58507,224.60699 z "
id="path10433"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#9b9b9b;stroke-width:3.1250000;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 600.60527,204.38494 C 602.34077,202.95468 605.23798,201.54047 607.58068,200.44721 C 608.84293,199.85816 608.58597,200.93307 608.93075,201.23476 C 609.79868,201.99419 606.53580,205.08583 606.00559,205.51000 C 605.26448,206.10289 604.62430,207.05936 603.86796,207.64763 C 603.18503,208.17880 602.29044,208.41413 601.50532,208.88520 C 600.72330,209.35441 600.49633,210.11564 600.15525,210.79781 C 599.94584,211.21662 603.04183,209.82384 603.30543,209.56024 C 604.48388,208.38179 606.72428,207.95279 608.25572,207.53513 C 608.91836,207.35440 609.53239,207.21229 610.16833,207.08510 C 612.04404,206.70996 607.32765,210.58116 607.01815,210.79781 C 604.46328,212.58622 602.78690,215.06332 601.05529,217.66071 C 600.83028,217.99823 600.60527,218.33575 600.38026,218.67327 C 599.61068,219.82764 603.16063,216.56794 603.53044,216.19813 C 605.43402,214.29455 607.61212,213.31349 609.94332,212.14789 C 611.40114,211.41898 612.00343,211.45487 611.18089,212.93544 C 610.16466,214.76465 607.89788,215.93198 606.79313,217.77322 C 606.54907,218.17999 606.49311,218.67327 606.34310,219.12330 C 606.10523,219.83691 608.43220,216.26799 611.06838,214.51053 C 611.96201,213.91478 613.01817,213.90033 613.99355,213.72298"
id="path10437" />
</g>
<path
style="color:#000000;fill:#9b9b9b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#9b9b9b;stroke-width:3.1250019;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
d="M 597.57706,267.89741 L 597.57706,240.51954 L 613.75060,254.20848 L 597.57706,267.89741 z "
id="path2187"
sodipodi:nodetypes="cccc"
inkscape:export-filename="/home/danny/work/kde/kanagram/stuff/basic_arrow_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
<g
transform="matrix(0.867369,0.000000,0.000000,0.887313,539.3276,495.2545)"
id="g1712"
style="fill:#9b9b9b;fill-opacity:1.0000000"
inkscape:export-filename="/home/danny/upover.png"
inkscape:export-xdpi="72.000000"
inkscape:export-ydpi="72.000000">
<path
style="color:#000000;fill:#9b9b9b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:5.3579950;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
d="M 29.509650,8.4339169 C 28.525148,8.5234726 27.663991,8.8655723 27.167727,9.3642594 L 2.7886990,33.730365 C 2.1937763,34.317639 2.1886702,35.043646 2.7753127,35.633686 C 3.3619552,36.223726 4.4507470,36.587682 5.6297222,36.587843 L 54.387800,36.587832 C 55.566776,36.587670 56.655567,36.223714 57.242209,35.633674 C 57.828851,35.043633 57.823744,34.317626 57.228821,33.730353 L 32.849771,9.3642581 C 32.174009,8.6872992 30.848697,8.3181530 29.509650,8.4339169 z "
id="path1088"
sodipodi:nodetypes="cccsccsccc" />
</g>
<g
transform="matrix(0.867369,0.000000,0.000000,0.887313,479.3276,495.2545)"
id="g1754"
style="fill:#ffffff;fill-opacity:1.0000000"
inkscape:export-filename="/home/danny/upover.png"
inkscape:export-xdpi="72.000000"
inkscape:export-ydpi="72.000000">
<path
style="color:#000000;fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:5.3579950;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
d="M 29.509650,8.4339169 C 28.525148,8.5234726 27.663991,8.8655723 27.167727,9.3642594 L 2.7886990,33.730365 C 2.1937763,34.317639 2.1886702,35.043646 2.7753127,35.633686 C 3.3619552,36.223726 4.4507470,36.587682 5.6297222,36.587843 L 54.387800,36.587832 C 55.566776,36.587670 56.655567,36.223714 57.242209,35.633674 C 57.828851,35.043633 57.823744,34.317626 57.228821,33.730353 L 32.849771,9.3642581 C 32.174009,8.6872992 30.848697,8.3181530 29.509650,8.4339169 z "
id="path1756"
sodipodi:nodetypes="cccsccsccc" />
</g>
<g
transform="translate(-32.03459,0.000000)"
id="g2484"
inkscape:export-filename="/home/danny/work/kde/MOCKUPS/kanagram/arrow.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000"
style="stroke:#ffffff;stroke-opacity:1.0000000">
<path
style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.1250000;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 600.58507,224.60699 C 600.58507,224.33477 599.54621,201.09279 599.54621,198.63554 C 599.54621,192.53826 614.78280,208.13608 615.64851,209.52122 C 617.07310,211.80056 607.03874,223.74557 600.58507,224.60699 z "
id="path2486"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.1250000;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
d="M 600.60527,204.38494 C 602.34077,202.95468 605.23798,201.54047 607.58068,200.44721 C 608.84293,199.85816 608.58597,200.93307 608.93075,201.23476 C 609.79868,201.99419 606.53580,205.08583 606.00559,205.51000 C 605.26448,206.10289 604.62430,207.05936 603.86796,207.64763 C 603.18503,208.17880 602.29044,208.41413 601.50532,208.88520 C 600.72330,209.35441 600.49633,210.11564 600.15525,210.79781 C 599.94584,211.21662 603.04183,209.82384 603.30543,209.56024 C 604.48388,208.38179 606.72428,207.95279 608.25572,207.53513 C 608.91836,207.35440 609.53239,207.21229 610.16833,207.08510 C 612.04404,206.70996 607.32765,210.58116 607.01815,210.79781 C 604.46328,212.58622 602.78690,215.06332 601.05529,217.66071 C 600.83028,217.99823 600.60527,218.33575 600.38026,218.67327 C 599.61068,219.82764 603.16063,216.56794 603.53044,216.19813 C 605.43402,214.29455 607.61212,213.31349 609.94332,212.14789 C 611.40114,211.41898 612.00343,211.45487 611.18089,212.93544 C 610.16466,214.76465 607.89788,215.93198 606.79313,217.77322 C 606.54907,218.17999 606.49311,218.67327 606.34310,219.12330 C 606.10523,219.83691 608.43220,216.26799 611.06838,214.51053 C 611.96201,213.91478 613.01817,213.90033 613.99355,213.72298"
id="path2488" />
</g>
<path
style="color:#000000;fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:3.1250019;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible"
d="M 567.57706,267.89741 L 567.57706,240.51954 L 583.75060,254.20848 L 567.57706,267.89741 z "
id="path2490"
sodipodi:nodetypes="cccc"
inkscape:export-filename="/home/danny/work/kde/kanagram/stuff/basic_arrow_over.png"
inkscape:export-xdpi="58.500000"
inkscape:export-ydpi="58.500000" />
</svg>

After

Width:  |  Height:  |  Size: 120 KiB

@ -0,0 +1,6 @@
file( GLOB _oggs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.ogg )
install(
FILES ${_oggs}
DESTINATION ${DATA_INSTALL_DIR}/kanagram/sounds
)

@ -0,0 +1,68 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kanagram (executable)
tde_add_executable( kanagram AUTOMOC
SOURCES
mainsettingswidget.ui
vocabsettingswidget.ui
vocabeditwidget.ui
newstuffwidget.ui
main.cpp
kanagram.cpp
kanagramgame.cpp
fontutils.cpp
mainsettings.cpp
vocabsettings.cpp
vocabedit.cpp
keduvocdocument.cpp
keduvocexpression.cpp
keduvockvtmlreader.cpp
keduvockvtmlwriter.cpp
leitnerbox.cpp
leitnersystem.cpp
multiplechoice.cpp
grammarmanager.cpp
leitnersystemview.cpp
newstuffdialog.cpp
newstuff.cpp
kanagramsettings.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdenewstuff-shared
artskde-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES kanagram.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kanagram.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -212,5 +212,5 @@ void LeitnerSystemView::mousePressEvent(TQMouseEvent* e)
updateContents();
}
}
#include "leitnersystemview.moc"

@ -0,0 +1,8 @@
add_subdirectory( src )
add_subdirectory( testcases )
file( STRINGS "VERSION" _KBRUCH_VERSION )
file( WRITE ${CMAKE_CURRENT_SOURCE_DIR}/src/version.h
"#undef KBRUCH_VERSION\n#define KBRUCH_VERSION \"${_KBRUCH_VERSION}\""
)

@ -0,0 +1,69 @@
add_subdirectory( svg-source)
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kbruch (executable)
tde_add_executable( kbruch AUTOMOC
SOURCES
settingsclass.kcfgc
taskvieweroptionsbase.ui
exercisebase.cpp
task.cpp ratio.cpp
taskview.cpp
statisticsview.cpp
primenumber.cpp
kbruch.cpp
mainqtwidget.cpp
taskwidget.cpp
fractionbasewidget.cpp
resultwidget.cpp
exercisecompare.cpp
ratiowidget.cpp
rationalwidget.cpp
exerciseconvert.cpp
exercisefactorize.cpp
factorizedwidget.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES kbruchui.rc
DESTINATION ${DATA_INSTALL_DIR}/kbruch
)
install(
FILES kbruch.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kbruch.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1,3 @@
##### icons
tde_install_icons( )

@ -215,10 +215,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontdialog.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdefontdialog.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -0,0 +1,33 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/../src
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
${Boost_LIBRARY_DIRS}
)
##### kbruch_test (test)
tde_add_check_executable( kbruch_test AUTOMOC
SOURCES
${CMAKE_SOURCE_DIR}/kbruch/src/primenumber.cpp
${CMAKE_SOURCE_DIR}/kbruch/src/ratio.cpp
${CMAKE_SOURCE_DIR}/kbruch/src/task.cpp
ratio_test.cpp
primenumber_test.cpp
kbruch_test.cpp
LINK
tdeui-shared
TEST
)

@ -16,8 +16,8 @@
***************************************************************************/
// for BOOST testing
#include <boost/test/unit_test.hpp>
using boost::unit_test_framework::test_suite;
#include <boost/test/included/unit_test.hpp>
using namespace boost::unit_test;
// the test classes
#include "primenumber_test.cpp"
@ -27,11 +27,12 @@ using boost::unit_test_framework::test_suite;
test_suite* init_unit_test_suite(int /* argc */, char** /* argv */)
{
// create the top test suite
std::auto_ptr<test_suite> top_test_suite(BOOST_TEST_SUITE("Master test suite"));
test_suite* top_test_suite = BOOST_TEST_SUITE("Master test suite");
// add test suites to the top test suite
top_test_suite->add(new primenumber_test_suite());
top_test_suite->add(new ratio_test_suite());
return top_test_suite.release();
framework::master_test_suite().add( top_test_suite );
return 0;
}

@ -0,0 +1,9 @@
add_subdirectory( libkeduca )
add_subdirectory( keduca )
add_subdirectory( keducabuilder )
add_subdirectory( resources )
install(
PROGRAMS keduca-shrinker
DESTINATION ${BIN_INSTALL_DIR}
)

@ -0,0 +1,154 @@
#!/usr/bin/perl
#
# Copyright (c) 2005 Mathieu Roy <yeupou--gnu.org>
# http://yeupou.coleumes.org
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
#
# $Id: keduca-shrinker.pl,v 1.3 2005/04/23 11:30:50 yeupou Exp $
use Getopt::Long;
my $getopt;
my $debug;
my $help;
my $input;
my $output;
my $number = "20";
########### Get options, give help
eval {
$getopt = GetOptions("debug" => \$debug,
"help" => \$help,
"number=s" => \$number,
"input=s" => \$input,
"output=s" => \$ouput);
};
if ($help) {
print STDERR <<EOF;
Usage: $0 [OPTION] --input [FILE]
A small program that take a kdeduca test file (.edu) as input with say 100
question and output a kdeduca test file with 20 questions selected randomly.
-i, --input=FILE Input keduca file.
-o, --output=FILE Output keduca file, shrinked.
(By default, the suffix -shrinked will be added)
-n, --number=NUMBER Number expected of questions, in the shrinked
version.
($number by default)
Project Homepage: https://gna.org/projects/keduca-shrinker/
EOF
exit(1);
}
# Test input file existence
unless ($input) {
print "No input file.\n";
}
unless (-r $input) {
print "Input file not readable.\n";
exit;
}
open(INPUT, "< $input");
# Test output writability
unless ($output) {
$output = $input;
$output =~ s/.edu$//;
$output .= "-shrinked.edu";
}
if (-e $output && ! -w $output) {
print "Output file not writable.\n";
exit;
}
open(OUTPUT, "> $output");
########### Define subs
sub fisher_yates_shuffle {
my $table = shift;
my $i;
for ($i = @$table; --$i;) {
my $j = int rand($i+1);
next if $i == $j;
@$table[$i,$j] = @$table[$j,$i];
}
}
########### Grab the file header, store questions in an array.
# I know, it's XML, it may be simple to call an xml parser.
# But in fact, we have nothing to parse here, we do not care about
# the real content, so...
my $structure = "header";
my $header;
my $footer;
my @questions;
my $newquestion;
while (<INPUT>) {
## Grab the structure (footer and header)
# the header last when data begins
# the footer begin when data ends
$header .= $_ if $structure eq "header";
$structure = "content" if /\<Data\>/m;
$structure = "footer" if /\<\/Data\>/m;
$footer .= $_ if $structure eq "footer";
## Grab the questions
if ($structure eq "content") {
$newquestion .= $_;
# If we found the string </question>, that the end of a question
if (/\<\/question\>/m) {
push(@questions, $newquestion);
$newquestion = "";
}
}
}
########### Select the number of questions we want
# warn the user if there's nothing to do
if (scalar(@questions) < $number) {
print "There are only ".scalar(@questions)." questions in the input file, less than $number.\n";
# Copy & exit
system("cp", $input, $output);
exit;
} else {
# Shuffle
fisher_yates_shuffle(\@questions);
# Keeps only the desired amount (number-1, as 0 is counted)
$#questions = ($number-1);
}
########### Final output
print OUTPUT $header;
print OUTPUT @questions;
print OUTPUT $footer;
close(INPUT);
close(OUTPUT);

@ -0,0 +1,74 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_BINARY_DIR}/keduca/libkeduca
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### keduca (executable)
tde_add_executable( keduca AUTOMOC
SOURCES
main.cpp
keduca.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeparts-shared
keduca-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### libkeducapart (kpart)
tde_add_kpart( libkeducapart AUTOMOC
SOURCES
configdialogbase.ui
keduca_part.cpp
tderadioeduca.cpp
kquestion.cpp
kgroupeduca.cpp
keducaview.cpp
keducaprefs.cpp
kcheckeduca.cpp
settings.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeparts-shared
keduca-static
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### other data
install(
FILES keducaui.rc keduca_partui.rc
DESTINATION ${DATA_INSTALL_DIR}/keduca
)
install(
FILES keduca.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)
install(
FILES keduca_part.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
)

@ -0,0 +1,45 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_BINARY_DIR}/keduca/libkeduca
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### keducabuilder (executable)
tde_add_executable( keducabuilder AUTOMOC
SOURCES
kcontroladdeditbase.ui
keducaeditorstartdialogbase.ui
keducaeditorstartdialog.cpp
ktagcombobox.cpp
klangcombo.cpp
kcontrolheader.cpp
keducabuilder.cpp
kcontroladdedit.cpp
main.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
keduca-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES keducabuilderui.rc
DESTINATION ${DATA_INSTALL_DIR}/keduca
)

@ -864,17 +864,12 @@
<forwards>
<forward>class TQListViewItem;</forward>
</forwards>
<includehints>
<includehint>kurlrequester.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kcombobox.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>tdelistview.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -460,13 +460,8 @@
<tabstop>buttonCancel</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -313,8 +313,10 @@
<tabstop>openRecentDocumentRB</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
</includes>
</UI>

@ -0,0 +1,29 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### keduca (static)
tde_add_library( keduca STATIC_PIC AUTOMOC
SOURCES
kgallerydialogbase.ui
fileread.cpp
kgallerydialog.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeprint-shared
)

@ -0,0 +1,20 @@
add_subdirectory( pics )
add_subdirectory( icons )
##### icons
tde_install_icons( )
##### other data
install(
FILES x-edu.desktop x-edugallery.desktop
DESTINATION ${MIME_INSTALL_DIR}/application
)
install(
FILES keduca.desktop keducabuilder.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)

@ -0,0 +1 @@
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/keduca/icons )

@ -0,0 +1,6 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/keduca/pics
)

@ -0,0 +1,4 @@
add_subdirectory( src )
add_subdirectory( data )
add_subdirectory( icons )
add_subdirectory( tools )

@ -0,0 +1,11 @@
add_subdirectory( flags )
##### other data
file( GLOB _pngs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
file( GLOB _kgms RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kgm )
install(
FILES ${_pngs} ${_kgms}
DESTINATION ${DATA_INSTALL_DIR}/kgeography/
)

@ -0,0 +1,12 @@
add_subdirectory( italy )
#add_subdirectory( svg )
##### other data
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/kgeography/flags
)

@ -0,0 +1,6 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/kgeography/flags/italy
)

@ -0,0 +1 @@
tde_install_icons( kgeography )

@ -0,0 +1,63 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kgeography (executable)
tde_add_executable( kgeography AUTOMOC
SOURCES
main.cpp
mapwidget.cpp
division.cpp
map.cpp
mapparser.cpp
kgeography.cpp
mapchooser.cpp
mypopup.cpp
popupmanager.cpp
flagdivisionasker.cpp
askwidget.cpp
mapasker.cpp
capitaldivisionasker.cpp
divisioncapitalasker.cpp
boxasker.cpp
divisionflagasker.cpp
answer.cpp
answersdialog.cpp
settings.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES kgeographyui.rc
DESTINATION ${DATA_INSTALL_DIR}/kgeography
)
install(
FILES kgeography.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kgeography.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1,6 @@
install(
PROGRAMS gen_map.pl
DESTINATION ${BIN_INSTALL_DIR}
RENAME kgeography_gen_map.pl
)

@ -0,0 +1 @@
add_subdirectory( khangman )

@ -0,0 +1,68 @@
add_subdirectory( data )
add_subdirectory( pics )
add_subdirectory( sounds )
add_subdirectory( icons )
add_subdirectory( fonts )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/libtdeedu/tdeeducore
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### khangman (executable)
tde_add_executable( khangman AUTOMOC
SOURCES
prefs.kcfgc
normal.ui
advanced.ui
timerdlg.ui
khangman.cpp
main.cpp
khangmanview.cpp
khnewstuff.cpp
timer.cpp
fontchecker.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdenewstuff-shared
tdeeducore-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES khangmanui.rc
DESTINATION ${DATA_INSTALL_DIR}/khangman
)
install(
FILES khangman.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES khangman.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)
install(
FILES khangmanrc
DESTINATION ${CONFIG_INSTALL_DIR}
)

@ -0,0 +1 @@
add_subdirectory( en )

@ -0,0 +1,6 @@
file( GLOB _kvtmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvtml )
install(
FILES ${_kvtmls}
DESTINATION ${DATA_INSTALL_DIR}/khangman/data/en
)

@ -0,0 +1,4 @@
install(
FILES Dustismo_Roman.ttf Domestic_Manners.ttf
DESTINATION ${DATA_INSTALL_DIR}/khangman/fonts
)

@ -0,0 +1 @@
tde_auto_add_subdirectories( )

@ -0,0 +1,6 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/khangman/pics/desert
)

@ -0,0 +1,8 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
list( REMOVE_ITEM _pics animation11.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/khangman/pics/sea
)

@ -0,0 +1,4 @@
install(
FILES new_game.ogg EW_Dialogue_Appear.ogg
DESTINATION ${DATA_INSTALL_DIR}/khangman/sounds
)

@ -222,8 +222,7 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kactivelabel.h</include>
</includes>
</UI>

@ -0,0 +1,52 @@
add_subdirectory( objects )
add_subdirectory( misc )
add_subdirectory( modes )
add_subdirectory( filters )
add_subdirectory( kig )
add_subdirectory( mimetypes )
add_subdirectory( macros )
add_subdirectory( tdefile )
add_subdirectory( data )
add_subdirectory( icons )
add_subdirectory( pykig )
add_subdirectory( scripting )
add_subdirectory( examples )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### libkigpart (kpart)
file( WRITE dummy.cpp "" )
tde_add_kpart( libkigpart AUTOMOC
SOURCES
dummy.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeparts-shared
kigmisc-static
kigobjects-static
kigfilters-static
kigmodes-static
kigscripting-static
EMBED
kigpart-static
DESTINATION ${PLUGIN_INSTALL_DIR}
)

@ -161,6 +161,12 @@ AC_DEFUN([REGINA_LIB_BOOST_PYTHON], [
LIBS="-l$pylib $extralibs"
PYVERSHORT=${pyver#python}
PYVERSUFFIX=py${PYVERSHORT%.*}${PYVERSHORT#*.}
PYVERMAJOR=${PYVERSHORT%.*}
if test $PYVERMAJOR -lt 3; then
KIG_Python_init=initkig
else
KIG_Python_init=PyInit_kig
fi
AC_TRY_LINK([
#include <Python.h>
], [
@ -221,6 +227,8 @@ AC_DEFUN([REGINA_LIB_BOOST_PYTHON], [
if test "$__regina_py_ok" = "1"; then
AC_DEFINE(HAVE_BOOST_PYTHON, 1,
[Define to 1 if you have a usable boost.python installation.])
AC_DEFINE_UNQUOTED(KIG_Python_init, $KIG_Python_init,
[KIG: Init function for python-boost])
else
BOOST_PYTHON_INCLUDES=
BOOST_PYTHON_LIBS=

@ -0,0 +1,4 @@
install(
FILES tips
DESTINATION ${DATA_INSTALL_DIR}/kig
)

@ -0,0 +1,15 @@
install(
FILES
cubic-locus.kig
ellipse.kig
figure_angle.fgeo
figure_manyobjects.fgeo
fregier.kigt
locustest.kig
parabolaBDF.kigt
session_alotofthings.fgeo
sine-curve.kig
sine-curve.png
DESTINATION ${DATA_INSTALL_DIR}/kig/examples
)

@ -0,0 +1,41 @@
#add_subdirectory( tests )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kigfilters (static)
tde_add_library( kigfilters STATIC_PIC AUTOMOC
SOURCES
imageexporteroptionsbase.ui
latexexporteroptions.ui
svgexporteroptions.ui
drgeo-filter-chooserbase.ui
cabri-filter.cc
exporter.cc
filter.cc
filters-common.cc
imageexporteroptions.cc
kgeo-filter.cc
kseg-filter.cc
latexexporter.cc
native-filter.cc
svgexporter.cc
drgeo-filter.cc
drgeo-filter-chooser.cc
LINK
kigmisc-static
)

@ -132,9 +132,8 @@ Please select which to import:</string>
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
</includes>
</UI>

@ -145,8 +145,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -0,0 +1 @@
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kig/icons )

@ -0,0 +1,67 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kigpart (static)
tde_add_library( kigpart STATIC_PIC AUTOMOC
SOURCES
kig_document.cc
kig_part.cpp
kig_view.cpp
kig_commands.cpp
LINK
tdeprint-shared
tdeio-shared
)
##### kig (executable)
tde_add_executable( kig AUTOMOC
SOURCES
main.cpp
kig.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeparts-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES kigui.rc kigpartui.rc
DESTINATION ${DATA_INSTALL_DIR}/kig
)
install(
FILES kig.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kig_part.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
)

@ -0,0 +1,6 @@
file( GLOB _kigts RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kigt )
install(
FILES ${_kigts}
DESTINATION ${DATA_INSTALL_DIR}/kig/builtin-macros
)

@ -0,0 +1,35 @@
tde_install_icons( )
##### other data
set( kig_magics cabri.magic drgeo.magic )
foreach( _magic ${kig_magics} )
add_custom_command(
OUTPUT ${_magic}.mgc
COMMAND file -C -m ${CMAKE_CURRENT_SOURCE_DIR}/${_magic}
)
list( APPEND kig_magics_bin ${CMAKE_CURRENT_BINARY_DIR}/${_magic}.mgc )
endforeach( )
add_custom_target(
kig_magics ALL
DEPENDS ${kig_magics_bin}
)
install(
FILES ${kig_magics} ${kig_magics_bin}
DESTINATION ${CONFIG_INSTALL_DIR}/magic
)
install(
FILES
x-kig.desktop
x-kgeo.desktop
x-kseg.desktop
x-cabri.desktop
x-drgeo.desktop
DESTINATION ${MIME_INSTALL_DIR}/application
)

@ -0,0 +1,40 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kigmisc (static)
tde_add_library( kigmisc STATIC_PIC AUTOMOC
SOURCES
argsparser.cpp
builtin_stuff.cc
calcpaths.cc
common.cpp
conic-common.cpp
coordinate.cpp
coordinate_system.cpp
cubic-common.cc
goniometry.cc
guiaction.cc
kigfiledialog.cc
kiginputdialog.cc
kignumerics.cpp
kigpainter.cpp
kigtransform.cpp
lists.cc
object_constructor.cc
object_hierarchy.cc
rect.cc screeninfo.cc
special_constructors.cc
)

@ -0,0 +1,38 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kigmodes (static)
tde_add_library( kigmodes STATIC_PIC AUTOMOC
SOURCES
edittypebase.ui
macrowizardbase.ui
textlabelwizardbase.ui
typesdialogbase.ui
base_mode.cc
construct_mode.cc
dragrectmode.cc
edittype.cc
label.cc
linkslabel.cpp
macro.cc
macrowizard.cc
mode.cc
moving.cc
normal.cc
popup.cc
textlabelwizard.cc
typesdialog.cpp
)

@ -276,12 +276,9 @@
<slot>cancelSlot()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kicondialog.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kicondialog.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -181,8 +181,7 @@
</widget>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -327,14 +327,8 @@
<slot>cancelSlot()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -0,0 +1,58 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kigobjects (static)
tde_add_library( kigobjects STATIC_PIC AUTOMOC
SOURCES
angle_type.cc
arc_type.cc
base_type.cc
bogus_imp.cc
circle_imp.cc
circle_type.cc
polygon_type.cc
common.cc
conic_imp.cc
conic_types.cc
cubic_imp.cc
cubic_type.cc
curve_imp.cc
intersection_types.cc
inversion_type.cc
line_imp.cc
line_type.cc
locus_imp.cc
object_calcer.cc
object_drawer.cc
object_factory.cc
object_holder.cc
object_imp.cc
object_imp_factory.cc
object_type.cc
object_type_factory.cc
other_imp.cc
other_type.cc
point_imp.cc
point_type.cc
polygon_imp.cc
tangent_type.cc
centerofcurvature_type.cc
tests_type.cc
text_imp.cc
text_type.cc
transform_types.cc
vector_type.cc
)

@ -0,0 +1,4 @@
install(
PROGRAMS pykig.py
DESTINATION ${BIN_INSTALL_DIR}
)

@ -0,0 +1,41 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${PYTHON_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
${Boost_LIBRARY_DIRS}
)
##### kigscripting (static)
tde_add_library( kigscripting STATIC_PIC AUTOMOC
SOURCES
newscriptwizardbase.ui
python_type.cc
python_scripter.cc
script-common.cc
script_mode.cc
newscriptwizard.cc
LINK
katepartinterfaces
${PYTHON_LIBRARIES}
${Boost_LIBRARIES}
)
##### other data
install(
FILES python-kig.xml
DESTINATION ${DATA_INSTALL_DIR}/katepart/syntax
)

@ -15,6 +15,7 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
// 02110-1301, USA.
#include "config.h"
#include "python_scripter.h"
#include <iostream>
@ -357,7 +358,7 @@ PythonScripter::PythonScripter()
// the newstring stuff is to prevent warnings about conversion from
// const char* to char*..
char* s = newstring( "kig" );
PyImport_AppendInittab( s, initkig );
PyImport_AppendInittab( s, KIG_Python_init );
// we can't delete this yet, since python keeps a pointer to it..
// This means we have a small but harmless memory leak here, but it
// doesn't hurt at all, since it could only be freed at the end of

@ -0,0 +1,50 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### tdefile_drgeo (kpart)
tde_add_kpart( tdefile_drgeo AUTOMOC
SOURCES
tdefile_drgeo.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### tdefile_kig (kpart)
tde_add_kpart( tdefile_kig AUTOMOC
SOURCES
tdefile_kig.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### other data
install(
FILES tdefile_drgeo.desktop tdefile_kig.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
)

@ -0,0 +1,107 @@
add_subdirectory( pics )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kiten (executable)
tde_add_executable( kiten AUTOMOC
SOURCES
configsearching.ui
configlearn.ui
configfont.ui
configdictionariesbase.ui
main.cpp
kiten.cpp
learn.cpp
kloader.cpp
ksaver.cpp
configdictionaries.cpp
optiondialog.cpp
kitenconfig.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
kiten-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### kitengen (executable)
tde_add_executable( kitengen
SOURCES
xjdxgen.c
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### kiten (shared)
tde_add_library( kiten SHARED AUTOMOC
SOURCES
kitenconfig.kcfgc
asyndeta.cpp
dict.cpp
widgets.cpp
kromajiedit.cpp
rad.cpp
deinf.cpp
LINK
tdecore-shared
tdeui-shared
tdeprint-shared
VERSION 1.0.0
DESTINATION ${LIB_INSTALL_DIR}
)
##### other data
install(
FILES edict kanjidic radkfile vconj romkana.cnv
DESTINATION ${DATA_INSTALL_DIR}/kiten
)
install(
FILES kitenui.rc learnui.rc eeditui.rc
DESTINATION ${DATA_INSTALL_DIR}/kiten
)
install(
FILES kiten.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kiten.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)
install(
FILES asyndeta.h dict.h widgets.h kromajiedit.h rad.h deinf.h
DESTINATION ${INCLUDE_INSTALL_DIR}/libkiten
)

@ -306,8 +306,7 @@
</hbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
<includehint>tdelistview.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -27,7 +27,7 @@
</hbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontdialog.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdefontdialog.h</include>
</includes>
</UI>

@ -0,0 +1 @@
tde_install_icons( )

@ -0,0 +1 @@
add_subdirectory( klatin )

@ -0,0 +1,61 @@
add_subdirectory( data )
add_subdirectory( icons )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/libtdeedu/tdeeducore
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### klatin (executable)
tde_add_executable( klatin AUTOMOC
SOURCES
klatinchoose.ui
klatingrammarwidget.ui
klatinvocabwidget.ui
klatinverbswidget.ui
klatinresultsdialog.ui
klatinsettings_vocabpage.ui
main.cpp
klatin.cpp
klatingrammar.cpp
klatinverbs.cpp
klatinvocab.cpp
settings.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeeducore-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES klatinui.rc
DESTINATION ${DATA_INSTALL_DIR}/klatin
)
install(
FILES klatin.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES klatin.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1 @@
tde_auto_add_subdirectories( )

@ -0,0 +1,6 @@
file( GLOB _klats RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.klat )
install(
FILES ${_klats}
DESTINATION ${DATA_INSTALL_DIR}/klatin/data/grammar
)

@ -0,0 +1,6 @@
file( GLOB _klats RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.klat )
install(
FILES ${_klats}
DESTINATION ${DATA_INSTALL_DIR}/klatin/data/verbs
)

@ -0,0 +1 @@
tde_auto_add_subdirectories( )

@ -0,0 +1,6 @@
file( GLOB _kvtmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvtml )
install(
FILES ${_kvtmls}
DESTINATION ${DATA_INSTALL_DIR}/klatin/data/vocabs/de
)

@ -0,0 +1,6 @@
file( GLOB _kvtmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvtml )
install(
FILES ${_kvtmls}
DESTINATION ${DATA_INSTALL_DIR}/klatin/data/vocabs/en
)

@ -0,0 +1,6 @@
file( GLOB _kvtmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvtml )
install(
FILES ${_kvtmls}
DESTINATION ${DATA_INSTALL_DIR}/klatin/data/vocabs/pl
)

@ -0,0 +1,6 @@
file( GLOB _kvtmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvtml )
install(
FILES ${_kvtmls}
DESTINATION ${DATA_INSTALL_DIR}/klatin/data/vocabs/sk
)

@ -0,0 +1 @@
tde_install_icons( )

@ -257,8 +257,7 @@ verb and noun tables</string>
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -376,7 +376,9 @@ Line 4</string>
<tabstop>ChooseSection</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -217,7 +217,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -172,10 +172,10 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kurlrequester.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -420,7 +420,9 @@ Line 4</string>
<tabstop>ChangeButton</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -382,11 +382,7 @@
<tabstop>BackButton</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -0,0 +1 @@
add_subdirectory( klettres )

@ -0,0 +1,70 @@
add_subdirectory( pics )
add_subdirectory( data )
add_subdirectory( icons )
add_subdirectory( en )
add_subdirectory( fr )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### klettres (executable)
tde_add_executable( klettres AUTOMOC
SOURCES
fontsdlg.ui
timerdlg.ui
klettres.cpp
klnewstuff.cpp
main.cpp
klettresview.cpp
soundfactory.cpp
timer.cpp
prefs.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdenewstuff-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES klettresui.rc
DESTINATION ${DATA_INSTALL_DIR}/klettres
)
install(
FILES klettres.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES klettres.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)
install(
FILES klettresrc
DESTINATION ${CONFIG_INSTALL_DIR}
)

@ -0,0 +1,8 @@
add_subdirectory( langs )
##### other data
install(
FILES sounds.xml
DESTINATION ${DATA_INSTALL_DIR}/klettres/data
)

@ -0,0 +1,7 @@
file( GLOB _txts RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.txt )
list( REMOVE_ITEM _txts CMakeLists.txt )
install(
FILES ${_txts}
DESTINATION ${DATA_INSTALL_DIR}/klettres
)

@ -0,0 +1,7 @@
add_subdirectory( alpha )
add_subdirectory( syllab )
install(
FILES sounds.xml
DESTINATION ${DATA_INSTALL_DIR}/klettres/en
)

@ -0,0 +1,6 @@
file( GLOB _oggs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.ogg )
install(
FILES ${_oggs}
DESTINATION ${DATA_INSTALL_DIR}/klettres/en/alpha
)

@ -0,0 +1,6 @@
file( GLOB _oggs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.ogg )
install(
FILES ${_oggs}
DESTINATION ${DATA_INSTALL_DIR}/klettres/en/syllab
)

@ -32,7 +32,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontdialog.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdefontdialog.h</include>
</includes>
</UI>

@ -0,0 +1,7 @@
add_subdirectory( alpha )
add_subdirectory( syllab )
install(
FILES sounds.xml
DESTINATION ${DATA_INSTALL_DIR}/klettres/fr
)

@ -0,0 +1,6 @@
file( GLOB _oggs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.ogg )
install(
FILES ${_oggs}
DESTINATION ${DATA_INSTALL_DIR}/klettres/fr/alpha
)

@ -0,0 +1,6 @@
file( GLOB _oggs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.ogg )
install(
FILES ${_oggs}
DESTINATION ${DATA_INSTALL_DIR}/klettres/fr/syllab
)

@ -0,0 +1 @@
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/klettres/icons )

@ -0,0 +1,8 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.jpeg *.png )
list( REMOVE_ITEM _pics menubar.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/klettres/pics
)

@ -239,7 +239,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kactivelabel.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kactivelabel.h</include>
</includes>
</UI>

@ -0,0 +1,2 @@
add_subdirectory( kmplot )
add_subdirectory( icons )

@ -0,0 +1,5 @@
add_subdirectory( actions )
##### icons
tde_install_icons( )

@ -0,0 +1 @@
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kmplot/icons )

@ -0,0 +1,123 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
set_property(
SOURCE kmplot.cpp
APPEND PROPERTY OBJECT_DEPENDS
${CMAKE_BINARY_DIR}/kmplot/kmplot/settings.cpp
${CMAKE_BINARY_DIR}/kmplot/kmplot/FktDlgData.cpp
${CMAKE_BINARY_DIR}/kmplot/kmplot/qminmax.cpp
)
##### kmplot (executable)
tde_add_executable( kmplot AUTOMOC
SOURCES
main.cpp
kmplot.cpp
kmplotprogress.cpp
kmplotIface.skel
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeparts-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### libkmplotpart (kpart)
tde_add_kpart( libkmplotpart AUTOMOC
SOURCES
settings.kcfgc
FktDlgData.ui
qminmax.ui
settingspagecolor.ui
settingspagecoords.ui
settingspagefonts.ui
settingspagescaling.ui
settingspageprecision.ui
qparametereditor.ui
qeditparametric.ui
qeditpolar.ui
editfunctionpage.ui
editderivativespage.ui
editintegralpage.ui
qeditconstant.ui
qconstanteditor.ui
sliderwindow.ui
parser.cpp
xparser.cpp
diagr.cpp
View.cpp
MainDlg.cpp
FktDlg.cpp
kprinterdlg.cpp
kconstanteditor.cpp
kparametereditor.cpp
keditparametric.cpp
keditpolar.cpp
editfunction.cpp
kminmax.cpp
keditconstant.cpp
kmplotio.cpp
ksliderwindow.cpp
coordsconfigdialog.cpp
MainDlgIface.skel
parseriface.skel
Viewiface.skel
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeprint-shared
tdeparts-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
##### other data
install(
FILES kmplot_shell.rc
DESTINATION ${DATA_INSTALL_DIR}/kmplot
)
install(
FILES x-kmplot.desktop
DESTINATION ${MIME_INSTALL_DIR}/application
)
install(
FILES kmplot.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kmplot_part.desktop
DESTINATION ${SERVICES_INSTALL_DIR}
)
install(
FILES kmplot_part.rc kmplot_part_readonly.rc
DESTINATION ${DATA_INSTALL_DIR}/kmplot
)
install(
FILES kmplot.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -418,7 +418,7 @@
<slot>slotNewPrime()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -269,8 +269,8 @@
<tabstop>colorDerivative2</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -898,11 +898,4 @@ Example: f(x)=x^2</string>
<slot>customRange_toggled( bool )</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
</UI>

@ -282,7 +282,9 @@
<tabstop>color</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -197,7 +197,7 @@
<slot>varlist_doubleClicked( TQListViewItem * )</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -132,8 +132,7 @@
<slot>txtVariable_lostFocus()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -532,14 +532,9 @@ Example: sin(t)</string>
<slot>slotHelp()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -396,12 +396,9 @@ Example: loop(angle)=ln(angle)</string>
<slot>slotHelp()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -139,4 +139,9 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
</includes>
</UI>

@ -182,4 +182,9 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -456,4 +456,7 @@
<tabstop>kcfg_Color9</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -752,18 +752,8 @@
<tabstop>kcfg_GridLineWidth</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -120,9 +120,9 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontcombo.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>tdefontcombo.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdefontcombo.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">tdefontcombo.h</include>
</includes>
</UI>

@ -269,8 +269,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -412,4 +412,7 @@
<tabstop>kcfg_YPrinting</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -0,0 +1 @@
add_subdirectory( kpercentage )

@ -0,0 +1,48 @@
add_subdirectory( icons )
add_subdirectory( pics )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kpercentage (executable)
tde_add_executable( kpercentage AUTOMOC
SOURCES
kanimation.cpp
kanswer.cpp
kpercentmain.cpp
kpercentage.cpp
ksplashscreen.cpp
main.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES kpercentage.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES right.txt wrong.txt
DESTINATION ${DATA_INSTALL_DIR}/kpercentage
)

@ -0,0 +1,5 @@
add_subdirectory( actions )
##### icons
tde_install_icons( )

@ -0,0 +1 @@
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kpercentage/icons )

@ -0,0 +1,11 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/kpercentage/pics
)
install(
FILES right.story wrong.story
DESTINATION ${DATA_INSTALL_DIR}/kpercentage/story
)

@ -0,0 +1,8 @@
##### configure checks
include( ConfigureChecks.cmake )
##### subdirectories
add_subdirectory( kstars )

@ -0,0 +1,67 @@
###########################################
# #
# Improvements and feedback are welcome #
# #
# This file is released under GPL >= 3 #
# #
###########################################
##### check for libusb
if( WITH_LIBUSB )
pkg_search_module( LIBUSB libusb libusb-2.0 )
if( NOT LIBUSB_FOUND )
tde_message_fatal( "libusb support has been requested, but was not found on your system" )
endif( NOT LIBUSB_FOUND )
endif( WITH_LIBUSB )
##### check for pthread
find_package ( Threads REQUIRED )
##### check for zlib
find_package ( ZLIB REQUIRED )
##### check for math lib
check_library_exists( m sincos "" LIBM )
if( LIBM )
set( LIBM m )
endif( LIBM )
##### check for v4l
if( WITH_V4L )
check_include_file( "linux/videodev2.h" HAVE_LINUX_VIDEODEV2_H )
if( NOT HAVE_LINUX_VIDEODEV2_H )
check_include_file( "linux/videodev.h" HAVE_LINUX_VIDEODEV_H )
if( NOT HAVE_LINUX_VIDEODEV_H )
tde_message_fatal( "video4linux support is requested, but videodev2.h or videodev.h was not found on your system" )
endif( )
endif( )
endif( )
##### check platform OS
message( STATUS "Cheking platform - ${CMAKE_SYSTEM_NAME}" )
if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" )
set( OS_Linux true )
set( LIB_FLI fli_linux-static )
elseif( ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD|FreeBSD|DragonFly|NetBSD" )
set( OS_BSD true )
set( LIB_FLI fli_bsd-static )
else( )
set( OS_UNKNOWN true )
set( LIB_FLI fli_null-static )
endif( )

@ -0,0 +1,145 @@
add_subdirectory( indi )
add_subdirectory( tools )
add_subdirectory( data )
add_subdirectory( icons )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/tools
${CMAKE_BINARY_DIR}/kstars/kstars/tools
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kstars (executable)
tde_add_executable( kstars AUTOMOC
SOURCES
addcatdialogui.ui addlinkdialogui.ui
ccdpreviewui.ui contrastbrightnessgui.ui
details_data.ui details_position.ui
details_links.ui details_database.ui
details_log.ui devmanager.ui
fitsheaderdialog.ui focusdialogdlg.ui
fovdialogui.ui histdialog.ui
imagereductionui.ui imgsequencedlgui.ui
indiconf.ui indihostconf.ui
kswizardui.ui newfovui.ui
opsadvancedui.ui opscatalogui.ui
opscolorsui.ui opsguidesui.ui
opssolarsystemui.ui statform.ui
streamformui.ui telescopewizard.ui
thumbnailpickerui.ui thumbnaileditorui.ui
telescopepropui.ui
addcatdialog.cpp addlinkdialog.cpp
colorscheme.cpp conbridlg.cpp
csegment.cpp deepskyobject.cpp
detaildialog.cpp devicemanager.cpp
dms.cpp dmsbox.cpp
filesource.cpp finddialog.cpp
fitshistogram.cpp ccdpreviewwg.cpp
customcatalog.cpp fitsimage.cpp
fitsprocess.cpp fitsviewer.cpp
focusdialog.cpp fov.cpp
fovdialog.cpp geolocation.cpp
imagereductiondlg.cpp imagesequence.cpp
imageviewer.cpp indidevice.cpp
indidriver.cpp indielement.cpp
indifitsconf.cpp indigroup.cpp
indimenu.cpp indiproperty.cpp
indistd.cpp infobox.cpp
infoboxes.cpp jupitermoons.cpp
ksasteroid.cpp kscomet.cpp
ksfilereader.cpp ksmoon.cpp
ksnewstuff.cpp ksnumbers.cpp
ksplanet.cpp ksplanetbase.cpp
kspluto.cpp kspopupmenu.cpp
kssun.cpp kstars.cpp
kstarsactions.cpp kstarsdata.cpp
kstarsdatetime.cpp kstarsdcop.cpp
kstarsinit.cpp kstarssplash.cpp
ksutils.cpp kswizard.cpp
locationdialog.cpp magnitudespinbox.cpp
main.cpp mapcanvas.cpp
objectnamelist.cpp opsadvanced.cpp
opscatalog.cpp opscolors.cpp
opsguides.cpp opssolarsystem.cpp
planetcatalog.cpp simclock.cpp
skymap.cpp skymapdraw.cpp
skymapevents.cpp skyobject.cpp
skyobjectname.cpp skypoint.cpp
stardatasink.cpp starobject.cpp
starpixmap.cpp streamwg.cpp
telescopewizardprocess.cpp telescopeprop.cpp
timebox.cpp timedialog.cpp
timespinbox.cpp timestepbox.cpp
timeunitbox.cpp timezonerule.cpp
toggleaction.cpp thumbnailpicker.cpp
thumbnaileditor.cpp draglistbox.cpp
Options.kcfgc kstarsinterface.skel
simclockinterface.skel
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeprint-shared
tdenewstuff-shared
tdeeduplot-shared
tdeeduui-shared
extdate-shared
kstarstools-static
lilxml-static
indicom-static
DEPENDENCIES
kstarstools-static
tdeeduplot-shared
tdeeduui-shared
extdate-shared
lilxml-static
indicom-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### icons
tde_install_icons( )
##### other data
install(
FILES kstarsui.rc fitsviewer.rc
DESTINATION ${DATA_INSTALL_DIR}/kstars/
)
install(
FILES kstars.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kstars.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)
install(
FILES kstarsrc
DESTINATION ${CONFIG_INSTALL_DIR}
)
install(
FILES kstarsinterface.h simclockinterface.h
DESTINATION ${INCLUDE_INSTALL_DIR}
)

@ -351,21 +351,13 @@
<tabstop>CatalogURL</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kurlrequester.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>draglistbox.h</includehint>
<includehint>draglistbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kurlrequester.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">draglistbox.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -150,4 +150,8 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -426,10 +426,9 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kcombobox.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -119,8 +119,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -0,0 +1,22 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
file( GLOB _dats RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.dat )
file( GLOB _vsops RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.vsop )
file( GLOB _orbits RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.orbit )
file( GLOB _colors RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.colors )
list( REMOVE_ITEM _pics lo16-app-kstars.png lo32-app-kstars.png )
list( REMOVE_ITEM _pics glstarbase.png )
install(
FILES
tips
${_pics}
${_dats}
${_vsops}
${_orbits}
${_colors}
valaav.txt
glossary.xml
DESTINATION ${DATA_INSTALL_DIR}/kstars
)

@ -591,9 +591,9 @@
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kactivelabel.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kactivelabel.h</include>
</includes>
</UI>

@ -49,7 +49,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -177,12 +177,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistbox.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
</includes>
</UI>

@ -910,18 +910,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
<includehint>kactivelabel.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kactivelabel.h</include>
</includes>
</UI>

@ -427,15 +427,8 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistview.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -114,4 +114,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -183,10 +183,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -333,10 +333,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -0,0 +1 @@
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kstars/icons )

@ -484,14 +484,9 @@
<tabstop>closeB</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -0,0 +1,391 @@
add_subdirectory( fli )
add_subdirectory( apogee )
tde_conditional_add_subdirectory( WITH_V4L webcam )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${ZLIB_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
${CMAKE_BINARY_DIR}/kstars/kstars/indi/fli
)
set( INDIDRIVER_BASE_SRC base64.c indidrivermain.c eventloop.c )
##### lilxml (static )
tde_add_library( lilxml STATIC_PIC
SOURCES
lilxml.c
)
##### indicom (static )
tde_add_library( indicom STATIC_PIC
SOURCES
base64.c
indicom.c
fitsrw.c
)
##### indiserver (executable)
tde_add_executable( indiserver
SOURCES
indiserver.c
fq.c
LINK
tdecore-shared
lilxml-static
${CMAKE_THREAD_LIBS_INIT}
DEPENDENCIES
lilxml-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### lx200basic (executable)
tde_add_executable( lx200basic
SOURCES
${INDIDRIVER_BASE_SRC}
lx200driver.c
lx200basic.cpp
LINK
lilxml-static
indicom-static
tdecore-shared
DEPENDENCIES
lilxml-static
indicom-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### lx200generic (executable)
tde_add_executable( lx200generic
SOURCES
${INDIDRIVER_BASE_SRC}
lx200driver.c
lx200autostar.cpp
lx200_16.cpp
lx200gps.cpp
lx200generic.cpp
lx200classic.cpp
LINK
tdecore-shared
lilxml-static
indicom-static
${LIBM}
DEPENDENCIES
lilxml-static
indicom-static
DESTINATION ${BIN_INSTALL_DIR}
)
foreach( _lx200 lx200classic lx200autostar lx200_16 lx200gps )
tde_install_symlink( lx200generic ${BIN_INSTALL_DIR}/${_lx200} )
endforeach( )
##### celestrongps (executable)
tde_add_executable( celestrongps
SOURCES
${INDIDRIVER_BASE_SRC}
celestronprotocol.c
celestrongps.cpp
LINK
tdecore-shared
lilxml-static
indicom-static
${LIBM}
DEPENDENCIES
lilxml-static
indicom-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### apmount (executable)
tde_add_executable( apmount
SOURCES
${INDIDRIVER_BASE_SRC}
lx200driver.c
apmount.cpp
LINK
tdecore-shared
lilxml-static
indicom-static
DEPENDENCIES
lilxml-static
indicom-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### fliccd (executable)
tde_add_executable( fliccd
SOURCES
${INDIDRIVER_BASE_SRC}
fli_ccd.c
LINK
tdecore-shared
fli_common-static
${LIB_FLI}
indicom-static
lilxml-static
${ZLIB_LIBRARIES}
${LIBM}
DEPENDENCIES
fli_common-static
${LIB_FLI}
indicom-static
lilxml-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### fliwheel (executable)
tde_add_executable( fliwheel
SOURCES
${INDIDRIVER_BASE_SRC}
fli_wheel.c
LINK
tdecore-shared
fli_common-static
${LIB_FLI}
indicom-static
lilxml-static
${LIBM}
DEPENDENCIES
fli_common-static
${LIB_FLI}
indicom-static
lilxml-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### temma (executable)
tde_add_executable( temma
SOURCES
${INDIDRIVER_BASE_SRC}
temmadriver.c
LINK
tdecore-shared
indicom-static
lilxml-static
${LIBM}
DEPENDENCIES
indicom-static
lilxml-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### skycommander (executable)
tde_add_executable( skycommander
SOURCES
${INDIDRIVER_BASE_SRC}
lx200driver.c
skycommander.c
LINK
tdecore-shared
indicom-static
lilxml-static
${LIBM}
DEPENDENCIES
indicom-static
lilxml-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### sbigccd (executable)
tde_add_executable( sbigccd
SOURCES
${INDIDRIVER_BASE_SRC}
sbigccd.cpp
LINK
tdecore-shared
indicom-static
lilxml-static
${ZLIB_LIBRARIES}
DEPENDENCIES
indicom-static
lilxml-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### With Video4Linux support
if( WITH_V4L )
####### apogee_ppi (executable)
set_property(
SOURCE apogee_ppi.cpp
APPEND PROPERTY COMPILE_DEFINITIONS
TOP_DATADIR="${DATA_INSTALL_DIR}/kstars"
)
tde_add_executable( apogee_ppi
SOURCES
${INDIDRIVER_BASE_SRC}
apogee_ppi.cpp
LINK
tdecore-shared
indicom-static
lilxml-static
libapogee_PPI-static
${ZLIB_LIBRARIES}
DEPENDENCIES
indicom-static
lilxml-static
libapogee_PPI-static
DESTINATION ${BIN_INSTALL_DIR}
)
####### v4ldriver (executable)
tde_add_executable( v4ldriver
SOURCES
${INDIDRIVER_BASE_SRC}
v4ldriver.cpp
indi_v4l.cpp
LINK
tdecore-shared
indicom-static
lilxml-static
libwebcam_v4l-static
${ZLIB_LIBRARIES}
${LIBM}
DEPENDENCIES
indicom-static
lilxml-static
libwebcam_v4l-static
DESTINATION ${BIN_INSTALL_DIR}
)
####### v4lphilips (executable)
tde_add_executable( v4lphilips
SOURCES
${INDIDRIVER_BASE_SRC}
v4ldriver.cpp
v4lphilips.cpp
indi_philips.cpp
LINK
tdecore-shared
indicom-static
lilxml-static
libwebcam_v4l-static
${ZLIB_LIBRARIES}
${LIBM}
DEPENDENCIES
indicom-static
lilxml-static
libwebcam_v4l-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### meade_lpi (executable)
tde_add_executable( meade_lpi
SOURCES
${INDIDRIVER_BASE_SRC}
v4ldriver.cpp
indi_lpi.cpp
LINK
tdecore-shared
indicom-static
lilxml-static
libwebcam_v4l-static
${ZLIB_LIBRARIES}
DEPENDENCIES
indicom-static
lilxml-static
libwebcam_v4l-static
DESTINATION ${BIN_INSTALL_DIR}
)
endif()
##### other data
install(
FILES drivers.xml apogee_caminfo.xml
DESTINATION ${DATA_INSTALL_DIR}/kstars
)

@ -0,0 +1,92 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${LIBUSB_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### libapogee_ISA (static)
tde_add_library( libapogee_ISA STATIC_PIC
SOURCES
CameraIO_Linux.cpp
CameraIO_LinuxISA.cpp
)
##### libapogee_PCI (static)
tde_add_library( libapogee_PCI STATIC_PIC
SOURCES
CameraIO_Linux.cpp
CameraIO_LinuxPCI.cpp
)
##### libapogee_PPI (static)
tde_add_library( libapogee_PPI STATIC_PIC
SOURCES
CameraIO_Linux.cpp
CameraIO_LinuxPPI.cpp
)
##### libapogee_USB ( static )
if( WITH_LIBUSB )
tde_add_library( libapogee_USB STATIC_PIC
SOURCES
ApnCamData.cpp
ApnCamData_CCD3011HS.cpp
ApnCamData_CCD3011LS.cpp
ApnCamData_CCD4240HS.cpp
ApnCamData_CCD4240LS.cpp
ApnCamData_CCD4710HS.cpp
ApnCamData_CCD4710LS.cpp
ApnCamData_CCD4710LS2.cpp
ApnCamData_CCD4710LS3.cpp
ApnCamData_CCD4710LS4.cpp
ApnCamData_CCD4710LS5.cpp
ApnCamData_CCD4720HS.cpp
ApnCamData_CCD4720LS.cpp
ApnCamData_CCD5520HS.cpp
ApnCamData_CCD5520LS.cpp
ApnCamData_CCD5710HS.cpp
ApnCamData_CCD5710LS.cpp
ApnCamData_CCD7700HS.cpp
ApnCamData_CCD7700LS.cpp
ApnCamData_KAF0261E.cpp
ApnCamData_KAF0401E.cpp
ApnCamData_KAF1001E.cpp
ApnCamData_KAF1301E.cpp
ApnCamData_KAF1401E.cpp
ApnCamData_KAF3200E.cpp
ApnCamData_KAF4202.cpp
ApnCamData_KAF1602E.cpp
ApnCamData_KAF16801E.cpp
ApnCamData_KAF6303E.cpp
ApnCamData_TH7899.cpp
ApnCamTable.cpp
ApnCamera.cpp
ApnCamera_USB.cpp
ApnCamera_Linux.cpp
ApogeeUsbLinux.cpp
LINK
${LIBUSB_LIBRARIES}
)
endif( WITH_LIBUSB )

@ -0,0 +1,70 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### fli_common (static)
tde_add_library( fli_common STATIC_PIC
SOURCES
libfli.c
libfli-camera.c
libfli-camera-parport.c
libfli-camera-usb.c
libfli-filter-focuser.c
libfli-mem.c
libfli-serial.c
libfli-sys.c
libfli-usb.c
libfli-debug.c
)
##### $(libfli_linux) (static)
if( OS_Linux )
tde_add_library( fli_linux STATIC_PIC
SOURCES
libfli-parport.c
libfli-usb-sys-linux.c
)
endif()
##### fli_bsd (static)
if( OS_BSD )
tde_add_library( fli_bsd STATIC_PIC
SOURCES
libfli-usb-sys-bsd.c
)
endif()
##### fli_null (static)
if( OS_UNKNOWN )
tde_add_library( fli_null STATIC_PIC
SOURCES
libfli-usb-sys-null.c
)
endif()

@ -0,0 +1,31 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### libwebcam_linux (static)
if( HAVE_LINUX_VIDEODEV2_H )
set( V4L_SOURCES v4l2_base.cpp )
elseif( HAVE_LINUX_VIDEODEV_H )
set( V4L_SOURCES v4l1_base.cpp v4l1_pwc.cpp )
endif( )
tde_add_library( libwebcam_v4l STATIC_PIC
SOURCES
${V4L_SOURCES}
PPort.cpp
port.cpp
ccvt_c2.c
ccvt_misc.c
)

@ -406,11 +406,8 @@
<tabstop>buttonCancel</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -844,8 +844,8 @@ button to proceed. &lt;/p&gt;
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
</includes>
</UI>

@ -922,27 +922,11 @@ Circle, Square, Crosshairs, Bullseye.</string>
<tabstop>ColorButton</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcombobox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -594,14 +594,8 @@ Magnitude is a measure of brightness; the larger the number, the fainter the obj
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>magnitudespinbox.h</includehint>
<includehint>magnitudespinbox.h</includehint>
<includehint>magnitudespinbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>magnitudespinbox.h</includehint>
<includehint>magnitudespinbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">magnitudespinbox.h</include>
</includes>
</UI>

@ -286,4 +286,9 @@
<tabstop>RemovePreset</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -570,9 +570,9 @@
<tabstop>ClearAllTrails</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>magnitudespinbox.h</includehint>
<includehint>magnitudespinbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">magnitudespinbox.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -177,4 +177,7 @@
<tabstop>stddevOUT</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -120,9 +120,8 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kcombobox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -252,17 +252,10 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>kcombobox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -618,7 +618,7 @@ Enter the port number your telescope is connected to. If you only have one seria
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="0"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -303,13 +303,11 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>kurlrequester.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">kprogress.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -0,0 +1,61 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}/..
${CMAKE_SOURCE_DIR}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
###### kstarstools (static)
tde_add_library( kstarstools STATIC AUTOMOC
SOURCES
altvstimeui.ui wutdialogui.ui
modcalcapcoorddlg.ui modcalcazeldlg.ui
modcalcdaylengthdlg.ui modcalcgalcoorddlg.ui
modcalcgeoddlg.ui modcalcjddlg.ui
modcalcprecdlg.ui modcalcsidtimedlg.ui
scriptbuilderui.ui scriptnamedialog.ui
optionstreeview.ui argchangeviewoption.ui
arglooktoward.ui argsetaltaz.ui
argsetgeolocation.ui argsetlocaltime.ui
argsetradec.ui argsettrack.ui
argtimescale.ui argwaitforkey.ui
argwaitfor.ui argzoom.ui
argexportimage.ui argprintimage.ui
argsetcolor.ui argloadcolorscheme.ui
planetviewerui.ui modcalcequinoxdlg.ui
modcalcplanetsdlg.ui modcalceclipticcoordsdlg.ui
modcalcangdistdlg.ui argsetfilternumindi.ui
observinglistui.ui argstartindi.ui
argshutdownindi.ui argswitchindi.ui
argsetportindi.ui argsettargetcoordindi.ui
argsettargetnameindi.ui argsetactionindi.ui
argsetfocusspeedindi.ui argstartfocusindi.ui
argsetfocustimeoutindi.ui argsetgeolocationindi.ui
argstartexposureindi.ui argsetutcindi.ui
argsetframetypeindi.ui argsetscopeactionindi.ui
argsetccdtempindi.ui modcalcvlsrdlg.ui
obslistwizardui.ui
altvstime.cpp wutdialog.cpp
astrocalc.cpp lcgenerator.cpp
modcalcapcoord.cpp modcalcazel.cpp
modcalcdaylength.cpp modcalcgalcoord.cpp
modcalcgeodcoord.cpp modcalcjd.cpp
modcalcprec.cpp modcalcsidtime.cpp
scriptbuilder.cpp scriptfunction.cpp
planetviewer.cpp jmoontool.cpp
kstarsplotwidget.cpp modcalcequinox.cpp
modcalcplanets.cpp modcalceclipticcoords.cpp
modcalcangdist.cpp observinglist.cpp
modcalcvlsr.cpp obslistwizard.cpp
)

@ -527,7 +527,8 @@
<tabstop>updateButton</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
</includes>
</UI>

@ -134,8 +134,9 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -256,7 +256,8 @@
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
</includes>
</UI>

@ -24,4 +24,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
</includes>
</UI>

@ -156,7 +156,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -114,8 +114,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -115,9 +115,8 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -219,7 +219,8 @@
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcolorbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -118,9 +118,8 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -85,9 +85,8 @@
</grid>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -115,9 +115,8 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -109,7 +109,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -192,10 +192,8 @@
<slot>slotFindCity()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -72,8 +72,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -109,7 +109,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -140,9 +140,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -111,8 +111,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -69,7 +69,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -117,9 +117,8 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -111,7 +111,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -118,7 +118,7 @@
</vbox>
</widget>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -123,7 +123,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -86,7 +86,7 @@ Only simple keys can currently be used; you cannot use modifier keys such as Ctr
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -87,7 +87,7 @@ The Zoom level specifies the number of pixels which span one radian of arc. Rea
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -668,15 +668,7 @@
<slot>slotRunBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -856,16 +856,8 @@
<slot>slotOutputFile()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -1059,21 +1059,8 @@
<slot>newSlot()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -640,16 +640,7 @@
<slot>slotClearCoords()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>timebox.h</includehint>
<includehint>timebox.h</includehint>
<includehint>timebox.h</includehint>
<includehint>timebox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -904,16 +904,8 @@
<slot>slotRunBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -566,9 +566,8 @@
<slot>slotRunBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -915,16 +915,8 @@
<slot>slotRunBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -801,19 +801,9 @@
<slot>slotZCheckedBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcombobox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -500,11 +500,8 @@
<slot>showCurrentTime()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -1371,22 +1371,8 @@
<slot>slotPlanetsCheckedBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -743,16 +743,8 @@
<slot>slotRunBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -861,10 +861,7 @@
<slot>slotOutputFile()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -1188,25 +1188,9 @@
<slot>slotRunBatch()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>ktextbrowser.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">ktextbrowser.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -555,19 +555,10 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistview.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>ktextedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">ktextedit.h</include>
</includes>
</UI>

@ -1013,13 +1013,11 @@ select from a region on the sky.</string>
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>dmsbox.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>magnitudespinbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
<include location="global" impldecl="in implementation">knuminput.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">magnitudespinbox.h</include>
</includes>
</UI>

@ -131,7 +131,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdelistview.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -628,19 +628,10 @@
<slot>slotRunScript()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="4"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistview.h</includehint>
<includehint>ktextedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
<include location="global" impldecl="in implementation">ktextedit.h</include>
</includes>
</UI>

@ -150,8 +150,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -553,13 +553,9 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kcombobox.h</includehint>
<includehint>tdelistbox.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>tdelistbox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdelistbox.h</include>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -0,0 +1,15 @@
add_subdirectory( src )
add_subdirectory( keyboards )
add_subdirectory( training )
add_subdirectory( sounds )
add_subdirectory( graphics )
add_subdirectory( icons )
#add_subdirectory( extras )
##### other data
install(
FILES ktouch.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)

@ -0,0 +1,4 @@
install(
FILES splash.png
DESTINATION ${DATA_INSTALL_DIR}/ktouch
)

@ -0,0 +1 @@
tde_install_icons( )

@ -0,0 +1,6 @@
file( GLOB _kbds RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.keyboard )
install(
FILES ${_kbds}
DESTINATION ${DATA_INSTALL_DIR}/ktouch
)

@ -0,0 +1,8 @@
install(
FILES
up.wav
down.wav
typewriter.wav
DESTINATION ${DATA_INSTALL_DIR}/ktouch
)

@ -0,0 +1,71 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### ktouch (executable)
tde_add_executable( ktouch AUTOMOC
SOURCES
ktouchcoloreditor_dlg.ui
ktouchlectureeditor_dlg.ui
ktouchopenrequest_dlg.ui
ktouchprefcolorslayout.ui
ktouchprefgenerallayout.ui
ktouchprefkeyboardlayout.ui
ktouchpreftraininglayout.ui
ktouchstatistics_dlg.ui
ktouchstatuslayout.ui
prefs.kcfgc
ktouchchartwidget.cpp
ktouchcolorscheme.cpp
ktouch.cpp
ktouchdefaults.cpp
ktouchkeyboardwidget.cpp
ktouchkeyconnector.cpp
ktouchkey.cpp
ktouchkeys.cpp
ktouchlecture.cpp
ktouchlectureeditor.cpp
ktouchleveldata.cpp
ktouchopenrequest.cpp
ktouchslideline.cpp
ktouchstatistics.cpp
ktouchstatisticsdata.cpp
ktouchstatus.cpp
ktouchtrainer.cpp
ktouchutils.cpp
main.cpp
ktouchcoloreditor.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeeduplot-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES ktouchui.rc
DESTINATION ${DATA_INSTALL_DIR}/ktouch
)
install(
FILES ktouch.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -793,32 +793,9 @@
<slot>colorSchemeChanged(TQListBoxItem * item)</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -390,17 +390,9 @@
<slot>keySelectionChanged(TQListBoxItem*)</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>ktextedit.h</includehint>
<includehint>klineedit.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">ktextedit.h</include>
</includes>
</UI>

@ -665,20 +665,10 @@
<slot>fontBtnClicked()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>tdelistview.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>ktextedit.h</includehint>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">ktextedit.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
</UI>

@ -279,11 +279,9 @@
<slot>browseBtnClicked()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>klineedit.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>ksqueezedtextlabel.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">ksqueezedtextlabel.h</include>
</includes>
</UI>

@ -505,12 +505,7 @@
<tabstop>kcfg_CurrentColorScheme</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -335,7 +335,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontrequester.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdefontrequester.h</include>
</includes>
</UI>

@ -136,7 +136,7 @@
<slot>fontChooseBtnClicked()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontrequester.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">tdefontrequester.h</include>
</includes>
</UI>

@ -322,10 +322,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -1278,10 +1278,10 @@
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcombobox.h</includehint>
<includehint>ktouchchartwidget.h</includehint>
<includehint>kpushbutton.h</includehint>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcombobox.h</include>
<include location="global" impldecl="in implementation">ktouchchartwidget.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -0,0 +1,6 @@
file( GLOB _xmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.xml )
install(
FILES ${_xmls}
DESTINATION ${DATA_INSTALL_DIR}/ktouch
)

@ -0,0 +1,3 @@
add_subdirectory( src )
add_subdirectory( data )
#add_subdirectory( scripts )

@ -0,0 +1,16 @@
file( GLOB _logos RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.logo )
install(
FILES ${_logos}
DESTINATION ${DATA_INSTALL_DIR}/kturtle/examples/en_US
)
install(
FILES logokeywords.en_US.xml
DESTINATION ${DATA_INSTALL_DIR}/kturtle/data
)
install(
FILES logohighlightstyle.en_US.xml
DESTINATION ${DATA_INSTALL_DIR}/katepart/syntax
)

@ -0,0 +1,72 @@
add_subdirectory( pics )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kturtle (executable)
tde_add_executable( kturtle AUTOMOC
SOURCES
main.cpp
kturtle.cpp
canvas.cpp
dialogs.cpp
value.cpp
lexer.cpp
parser.cpp
executer.cpp
treenode.cpp
token.cpp
translate.cpp
settings.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeprint-shared
tdeparts-shared
katepartinterfaces-shared
DESTINATION ${BIN_INSTALL_DIR}
)
set_property(
SOURCE canvas.cpp lexer.cpp translate.cpp
APPEND PROPERTY OBJECT_DEPENDS
${CMAKE_BINARY_DIR}/kturtle/src/settings.cpp
)
##### icons
tde_install_icons( kturtle )
##### other data
install(
FILES kturtleui.rc
DESTINATION ${DATA_INSTALL_DIR}/kturtle
)
install(
FILES kturtle.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kturtle.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1,8 @@
file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
list( REMOVE_ITEM _pics turtle.png )
install(
FILES ${_pics}
DESTINATION ${DATA_INSTALL_DIR}/kturtle/pics
)

@ -0,0 +1 @@
add_subdirectory( kverbos )

@ -0,0 +1,70 @@
add_subdirectory( icons )
add_subdirectory( data )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kverbos (executable)
tde_add_executable( kverbos AUTOMOC
SOURCES
qresult.ui
qerfassen.ui
qverbedit.ui
qverbosoptions.ui
qlernen.ui
kfeedercontrol.cpp
kresult.cpp
verbspanish.cpp
kverbosuser.cpp
kerfassen.cpp
kverbedit.cpp
kverbosoptions.cpp
kstartuplogo.cpp
kverbosview.cpp
kverbosdoc.cpp
kverbos.cpp
main.cpp
prefs.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES startuplogo.png
DESTINATION ${DATA_INSTALL_DIR}/kverbos/pics
)
install(
FILES kverbosui.rc
DESTINATION ${DATA_INSTALL_DIR}/kverbos
)
install(
FILES kverbos.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kverbos.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -0,0 +1 @@
tde_auto_add_subdirectories( )

@ -0,0 +1,4 @@
install(
FILES verbos.verbos
DESTINATION ${DATA_INSTALL_DIR}/kverbos/data/de
)

@ -0,0 +1,4 @@
install(
FILES verbos.verbos
DESTINATION ${DATA_INSTALL_DIR}/kverbos/data/en
)

@ -0,0 +1 @@
tde_install_icons( )

@ -0,0 +1 @@
add_subdirectory( kvoctrain )

@ -0,0 +1,105 @@
add_subdirectory( common-dialogs )
add_subdirectory( kvt-core )
add_subdirectory( query-dialogs )
add_subdirectory( docprop-dialogs )
add_subdirectory( entry-dialogs )
add_subdirectory( statistik-dialogs )
add_subdirectory( pics )
add_subdirectory( examples )
#add_subdirectory( tools )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}/kvt-core
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/docprop-dialogs
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/entry-dialogs
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/common-dialogs
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/query-dialogs
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kvoctrain (executable)
tde_add_executable( kvoctrain AUTOMOC
SOURCES
kva_io.cpp
kvoctrain.cpp
kvoctrainview.cpp
main.cpp kva_init.cpp
kva_config.cpp
kva_header.cpp
kva_clip.cpp
kva_query.cpp
kvoctraintable.cpp
kvoctraintableitem.cpp
kvtnewstuff.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeprint-shared
tdenewstuff-shared
querydlg-static
docpropdlg-static
kvtxml-static
kvoctraincore-shared
entrydlg-static
statdlg-static
commondlg-static
DEPENDENCIES
querydlg-static
docpropdlg-static
entrydlg-static
commondlg-static
DESTINATION ${BIN_INSTALL_DIR}
)
##### spotlight2kvtml (executable)
tde_add_executable( spotlight2kvtml AUTOMOC
SOURCES
spotlight2kvtml.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES x-kvtml.desktop
DESTINATION ${MIME_INSTALL_DIR}/text
)
install(
FILES kvoctrainui.rc
DESTINATION ${DATA_INSTALL_DIR}/kvoctrain
)
install(
FILES kvoctrain.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES kvoctrainrc
DESTINATION ${CONFIG_INSTALL_DIR}
)

@ -0,0 +1,56 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain/kvt-core
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### commondlg (static)
tde_add_library( commondlg STATIC_PIC AUTOMOC
SOURCES
languagesettings.kcfgc
prefs.kcfgc
presettings.kcfgc
ProgressDlgForm.ui
generaloptionsbase.ui
viewoptionsbase.ui
pasteoptionsbase.ui
blockoptionsbase.ui
groupoptionsbase.ui
languageoptionsbase.ui
queryoptionsbase.ui
thresholdoptionsbase.ui
ProgressDlg.cpp
kvoctrainprefs.cpp
generaloptions.cpp
viewoptions.cpp
pasteoptions.cpp
blockoptions.cpp
groupoptions.cpp
languageoptions.cpp
queryoptions.cpp
thresholdoptions.cpp
profilesdialog.cpp
)
##### other data
install(
FILES
kvoctrain.kcfg
languagesettings.kcfg
presettings.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)

@ -183,7 +183,7 @@
</connection>
</connections>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -345,8 +345,7 @@
<tabstop>b_lang_iso1</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcombobox.h</includehint>
<includehint>kcombobox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -208,7 +208,7 @@
<tabstop>DownButton</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kcombobox.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kcombobox.h</include>
</includes>
</UI>

@ -31,7 +31,7 @@
class QueryManager;
class GroupOptions;
class SettingsProfile
class KDE_EXPORT SettingsProfile
{
public:
SettingsProfile();
@ -43,7 +43,7 @@ public:
TQString block_set;
};
class ProfilesDialog : public KDialogBase
class KDE_EXPORT ProfilesDialog : public KDialogBase
{
Q_OBJECT

@ -564,10 +564,7 @@
<tabstop>kcfg_IKnow</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -519,18 +519,7 @@
</tabstops>
<includes>
<include location="global" impldecl="in declaration">kcolorbutton.h</include>
<include location="global" impldecl="in implementation">tdefontrequester.h</include>
</includes>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>tdefontrequester.h</includehint>
<includehint>tdefontrequester.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
</UI>

@ -0,0 +1,41 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain/kvt-core
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/common-dialogs
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### docpropdlg (static)
tde_add_library( docpropdlg STATIC_PIC AUTOMOC
SOURCES
TitlePageForm.ui
TypeOptPageForm.ui
TenseOptPageForm.ui
UsageOptPageForm.ui
LessOptPageForm.ui
DocOptionsPageForm.ui
LangPropPageForm.ui
TitlePage.cpp
TypeOptPage.cpp
TenseOptPage.cpp
UsageOptPage.cpp
LessOptPage.cpp
DocOptionsPage.cpp
LangPropPage.cpp
DocPropDlg.cpp
DocPropLangDlg.cpp
DEPENDENCIES
commondlg-static
)

@ -0,0 +1,44 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain/kvt-core
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain/docprop-dialogs
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/common-dialogs
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/docprop-dialogs
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### entrydlg (static)
tde_add_library( entrydlg STATIC_PIC AUTOMOC
SOURCES
FromToEntryPageForm.ui
CommonEntryPageForm.ui
AuxInfoEntryPageForm.ui
TenseEntryPageForm.ui
AdjEntryPageForm.ui
MCEntryPageForm.ui
PhoneticEntryPage.cpp
FromToEntryPage.cpp
CommonEntryPage.cpp
AuxInfoEntryPage.cpp
TenseEntryPage.cpp
AdjEntryPage.cpp
MCEntryPage.cpp
EntryDlg.cpp
MySpinBox.cpp
blockall.cpp
DEPENDENCIES
commondlg-static
docpropdlg-static
)

@ -0,0 +1,4 @@
install(
FILES sample-de.kvtml sample-en.kvtml
DESTINATION ${DATA_INSTALL_DIR}/kvoctrain/examples
)

@ -0,0 +1,57 @@
add_subdirectory( kvt-xml )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}/kvt-xml
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/common-dialogs
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kvoctraincore (shared)
tde_add_library( kvoctraincore SHARED AUTOMOC
SOURCES
langset.cpp
LineList.cpp
kvoctrainexpr.cpp
kvoctraindoc.cpp
kvd_rh_kvtml.cpp
kvd_rb_kvtml1.cpp
kvd_rb_kvtml2.cpp
kvd_wkvtml.cpp
kvd_csv.cpp
kvd_lex.cpp
kvd_vcb.cpp
UsageManager.cpp
QueryManager.cpp
MultipleChoice.cpp
grammarmanager.cpp
kvd_voc.cpp
LINK
tdecore-shared
tdeio-shared
tdeui-shared
kvtxml-static
commondlg-static
DEPENDENCIES
kvtxml-static
commondlg-static
VERSION 0.0.0
DESTINATION ${LIB_INSTALL_DIR}
)

@ -28,11 +28,12 @@
#define LineList_h
#include <tqstring.h>
#include <kdemacros.h>
#include <vector>
using namespace std;
class LineList {
class KDE_EXPORT LineList {
public:
LineList (const TQString &multilines = "");

@ -28,10 +28,11 @@
#define MultipleChoice_included
#include <tqstring.h>
#include <kdemacros.h>
#define MAX_MULTIPLE_CHOICE 5 // select one out of x
class MultipleChoice
class KDE_EXPORT MultipleChoice
{
public:

@ -105,7 +105,7 @@ struct QueryEntryRef {
typedef vector<vector<QueryEntryRef> > QuerySelection;
class QueryManager
class KDE_EXPORT QueryManager
{
public:
// don´t change the order/remove one of these,

@ -108,7 +108,7 @@ struct UsageRelation
};
class UsageManager
class KDE_EXPORT UsageManager
{
public:

@ -28,6 +28,7 @@
#define grammarmanager_included
#include <tqstring.h>
#include <kdemacros.h>
#include <vector>
using namespace std;
@ -46,7 +47,7 @@ using namespace std;
#define UL_USER_TENSE "#" // designates number of user tense
class Article
class KDE_EXPORT Article
{
public:
@ -75,7 +76,7 @@ protected:
};
class Comparison
class KDE_EXPORT Comparison
{
public:
@ -105,7 +106,7 @@ protected:
};
class TenseRelation
class KDE_EXPORT TenseRelation
{
public:
@ -121,7 +122,7 @@ class TenseRelation
};
class Conjugation
class KDE_EXPORT Conjugation
{
public:

@ -33,7 +33,7 @@
#include <algorithm>
using namespace std;
vector<int> getCsvOrderStatic(kvoctrainDoc *doc)
KDE_EXPORT vector<int> getCsvOrderStatic(kvoctrainDoc *doc)
{
vector<int> csv_order;
TQStringList lang_order = Prefs::pasteOrder();

@ -250,7 +250,7 @@ class MultipleChoice;
* This class contains the expressions of your vocabulary
************************************************************/
class kvoctrainDoc : public TQObject
class KDE_EXPORT kvoctrainDoc : public TQObject
{
Q_OBJECT

@ -71,7 +71,7 @@ typedef unsigned short count_t;
* translations
**************************************************************/
class kvoctrainExpr
class KDE_EXPORT kvoctrainExpr
{
public:

@ -0,0 +1,25 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kvtxml (static)
tde_add_library( kvtxml STATIC_PIC AUTOMOC
SOURCES
XmlReader.cpp
XmlTokenizer.cpp
XmlElement.cpp
XmlWriter.cpp
)

@ -33,9 +33,10 @@
using namespace std;
#include <tqstring.h>
#include <kdemacros.h>
class LangSet
class KDE_EXPORT LangSet
{
public:

@ -0,0 +1,3 @@
tde_install_icons( kvoctrain )
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kvoctrain/icons )

@ -337,8 +337,7 @@
<tabstop>dont_know</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>kprogress.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
</includes>
</UI>

@ -340,8 +340,7 @@
<tabstop>dont_know</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>kprogress.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
</includes>
</UI>

@ -0,0 +1,39 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain/kvt-core
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/common-dialogs
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### querydlg (static)
tde_add_library( querydlg STATIC_PIC AUTOMOC
SOURCES
MCQueryDlgForm.ui
RandomQueryDlgForm.ui
SimpleQueryDlgForm.ui
VerbQueryDlgForm.ui
AdjQueryDlgForm.ui
ArtQueryDlgForm.ui
QueryDlgBase.cpp
MCQueryDlg.cpp
RandomQueryDlg.cpp
SimpleQueryDlg.cpp
VerbQueryDlg.cpp
AdjQueryDlg.cpp
ArtQueryDlg.cpp
DEPENDENCIES
commondlg-static
)

@ -437,8 +437,7 @@
<tabstop>dont_know</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>kprogress.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
</includes>
</UI>

@ -411,8 +411,7 @@
<tabstop>dont_know</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>kprogress.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
</includes>
</UI>

@ -341,8 +341,7 @@
<tabstop>dont_know</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>kprogress.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
</includes>
</UI>

@ -542,8 +542,7 @@
<tabstop>dont_know</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kprogress.h</includehint>
<includehint>kprogress.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kprogress.h</include>
</includes>
</UI>

@ -0,0 +1,30 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kvoctrain/kvoctrain/kvt-core
${CMAKE_BINARY_DIR}/kvoctrain/kvoctrain/common-dialogs
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### statdlg (static)
tde_add_library( statdlg STATIC_PIC AUTOMOC
SOURCES
StatistikPageForm.ui
GenStatPageForm.ui
StatistikPage.cpp
GenStatPage.cpp
StatistikDlg.cpp
DEPENDENCIES
commondlg-static
)

@ -0,0 +1,25 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### extractlang (executable)
tde_add_executable( extractlang AUTOMOC
SOURCES
extractlang.cpp
LINK
tdecore-shared
DESTINATION ${BIN_INSTALL_DIR}
)

@ -0,0 +1 @@
add_subdirectory( src )

@ -0,0 +1,99 @@
add_subdirectory( pics )
add_subdirectory( examples )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/kwordquiz/icons
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### kwordquiz (executable)
tde_add_executable( kwordquiz AUTOMOC
SOURCES
dlglanguagebase.ui
flashviewbase.ui
multipleviewbase.ui
qaviewbase.ui
prefeditorbase.ui
prefquizbase.ui
dlgsortbase.ui
dlgrcbase.ui
prefcharacterbase.ui
prefcardappearancebase.ui
kwordquizprefs.cpp
kwordquizview.cpp
kwordquizdoc.cpp
kwordquiz.cpp
main.cpp
qaview.cpp
flashview.cpp
multipleview.cpp
wqquiz.cpp
wqlistitem.cpp
wqscore.cpp
keduvocdata.cpp
prefeditor.cpp
prefquiz.cpp
dlgsort.cpp
dlgrc.cpp
dlgspecchar.cpp
kvtmlwriter.cpp
dlglanguage.cpp
wqprintdialogpage.cpp
prefcharacter.cpp
paukerreader.cpp
wqlreader.cpp
wqlwriter.cpp
wqundo.cpp
prefcardappearance.cpp
kwqnewstuff.cpp
prefs.kcfgc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
tdeprint-shared
tdenewstuff-shared
DESTINATION ${BIN_INSTALL_DIR}
)
##### other data
install(
FILES kwordquizui.rc eventsrc
DESTINATION ${DATA_INSTALL_DIR}/kwordquiz
)
install(
FILES kwordquiz.desktop
DESTINATION ${XDG_APPS_INSTALL_DIR}
)
install(
FILES x-kwordquiz.desktop
DESTINATION ${MIME_INSTALL_DIR}/application
)
install(
FILES kwordquiz.kcfg
DESTINATION ${KCFG_INSTALL_DIR}
)
install(
FILES kwordquizrc
DESTINATION ${CONFIG_INSTALL_DIR}
)

@ -241,4 +241,7 @@
</image>
</images>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -174,9 +174,7 @@
<customwidgets>
</customwidgets>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>krestrictedline.h</includehint>
<includehint>krestrictedline.h</includehint>
<includehint>krestrictedline.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">krestrictedline.h</include>
</includes>
</UI>

@ -0,0 +1,9 @@
install(
FILES
example.kvtml
french_verbs.kvtml
fill_in_the_blank.kvtml
us_states_and_capitals.kvtml
DESTINATION ${DATA_INSTALL_DIR}/kwordquiz/examples
)

@ -0,0 +1,3 @@
tde_install_icons( kwordquiz kwordquiz_doc )
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kwordquiz/icons )

@ -543,11 +543,9 @@
<slot>slotCardColorChanged(const TQColor &amp;)</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
<includehint>tdefontrequester.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
<includehint>kcolorbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
<include location="global" impldecl="in implementation">tdefontrequester.h</include>
<include location="global" impldecl="in implementation">kcolorbutton.h</include>
</includes>
</UI>

@ -403,7 +403,7 @@
<tabstop>btnCharacter</tabstop>
</tabstops>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>kpushbutton.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>
</UI>

@ -288,8 +288,7 @@
<slot>slotAutoFlipClicked()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
<includehint>knuminput.h</includehint>
<includehint>knuminput.h</includehint>
</includehints>
<includes>
<include location="global" impldecl="in implementation">knuminput.h</include>
</includes>
</UI>

@ -866,4 +866,7 @@
<slot access="private">slotCheck()</slot>
</Q_SLOTS>
<layoutdefaults spacing="6" margin="11"/>
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
</includes>
</UI>

@ -0,0 +1,4 @@
add_subdirectory( tdeeducore )
add_subdirectory( tdeeduui )
add_subdirectory( tdeeduplot )
add_subdirectory( extdate )

@ -0,0 +1,65 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### extdate (shared)
tde_add_library( extdate SHARED AUTOMOC
SOURCES
extdatetime.cpp
extcalendarsystem.cpp
extcalendarsystemgregorian.cpp
extdatetbl.cpp
extdatepicker.cpp
extdatetimeedit.cpp
extdatewidget.cpp
LINK
tdecore-shared
tdeui-shared
VERSION 1.2.0
DESTINATION ${LIB_INSTALL_DIR}
)
##### test_extdate (test)
tde_add_check_executable( test_extdate AUTOMOC
SOURCES
test_extdate.cc
LINK
tdecore-shared
tdeui-shared
tdeio-shared
extdate-shared
TEST
)
##### test_extdatepicker (test)
tde_add_check_executable( test_extdatepicker AUTOMOC
SOURCES
testwidget.cpp
main.cpp
LINK
tdecore-shared
tdeui-shared
tdeio-shared
extdate-shared
)

@ -0,0 +1,37 @@
add_subdirectory( tests )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### tdeeducore (shared)
tde_add_library( tdeeducore SHARED AUTOMOC
SOURCES
keduvocdata.cpp
LINK
tdecore-shared
VERSION 1.2.0
DESTINATION ${LIB_INSTALL_DIR}
)
##### other data
install(
FILES keduvocdata.h
DESTINATION ${INCLUDE_INSTALL_DIR}/libtdeedu
)

@ -0,0 +1,26 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/tdeeducore
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### loader (test)
tde_add_check_executable( loader AUTOMOC
SOURCES
loader.cpp
LINK
tdeeducore-shared
TEST
)

@ -0,0 +1,37 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### tdeeduplot (shared)
tde_add_library( tdeeduplot SHARED AUTOMOC
SOURCES
kplotobject.cpp
kplotaxis.cpp
kplotwidget.cpp
LINK
tdecore-shared
VERSION 1.2.0
DESTINATION ${LIB_INSTALL_DIR}
)
##### other data
install(
FILES kplotobject.h kplotaxis.h kplotwidget.h
DESTINATION ${INCLUDE_INSTALL_DIR}/libtdeedu
)

@ -0,0 +1,42 @@
add_subdirectory( tests )
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### tdeeduui (shared)
tde_add_library( tdeeduui SHARED AUTOMOC
SOURCES
kedusimpleentrydlgForm.ui
kedusimpleentrydlg.cpp
tdeeduglossary.cpp
LINK
tdecore-shared
tdeio-shared
tdeui-shared
tdehtml-shared
VERSION 3.0.5
DESTINATION ${LIB_INSTALL_DIR}
)
##### other data
install(
FILES tdeeduglossary.h
DESTINATION ${INCLUDE_INSTALL_DIR}/libtdeedu
)

@ -34,7 +34,7 @@ class GlossaryItem;
* This class stores all items to be displayed. It also
* has access-methods to the items
*/
class Glossary
class KDE_EXPORT Glossary
{
public:
Glossary();
@ -176,7 +176,7 @@ class Glossary
* a number of pictures or references associated to it.
* These are stored as TQStringLists.
*/
class GlossaryItem
class KDE_EXPORT GlossaryItem
{
public:
GlossaryItem(){}
@ -237,7 +237,7 @@ class GlossaryItem
* @author Pino Toscano
* @author Carsten Niehaus
*/
class GlossaryDialog : public KDialogBase
class KDE_EXPORT GlossaryDialog : public KDialogBase
{
Q_OBJECT

@ -0,0 +1,26 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/tdeeduui
)
link_directories(
${TQT_LIBRARY_DIRS}
${TDE_LIB_DIR}
)
##### entrydialogs (test)
tde_add_check_executable( entrydialogs AUTOMOC
SOURCES
entrydialogs.cpp
LINK
tdeeduui-shared
TEST
)
Loading…
Cancel
Save