merged testing branch

This commit is contained in:
Miguel Angel Ajo 2012-04-14 23:18:27 +02:00
commit 55c0eafd6f
929 changed files with 57841 additions and 140026 deletions

View File

@ -18,7 +18,7 @@ Documentation/doxygen
*.cmake
*.bak
common/pcb_plot_params_keywords.cpp
common/pcb_plot_params_lexer.h
include/pcb_plot_params_lexer.h
pcbnew/specctra_keywords.cpp
pcbnew/specctra_lexer.h
new/html

View File

@ -189,13 +189,9 @@ Info_3D_Visu::Info_3D_Visu()
m_Layers = 1;
m_BoardSettings = NULL;
m_Draw3DAxis = true;
m_Draw3DModule = true;
m_Draw3DZone = true;
m_Draw3DComments = true;
m_Draw3DDrawings = true;
m_Draw3DEco1 = true;
m_Draw3DEco2 = true;
// default all special item layers Visible
for (ii=0; ii< FL_LAST; ii++)
m_DrawFlags[ii]=true;
}

View File

@ -206,7 +206,7 @@ GLuint EDA_3D_CANVAS::CreateDrawGL_List()
glColorMaterial( GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE );
// draw axis
if( g_Parm_3D_Visu.m_Draw3DAxis )
if (g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_AXIS])
{
glEnable( GL_COLOR_MATERIAL );
SetGLColor( WHITE );
@ -223,37 +223,7 @@ GLuint EDA_3D_CANVAS::CreateDrawGL_List()
}
// Draw epoxy limits (do not use, works and test in progress)
#if 0
glEnable( GL_FOG );
GLfloat param;
// param = GL_LINEAR;
// glFogfv(GL_FOG_MODE, & param);
param = 0.2;
glFogfv( GL_FOG_DENSITY, &param );
param = g_Parm_3D_Visu.m_LayerZcoord[15];
glFogfv( GL_FOG_END, &param );
glBegin( GL_QUADS );
SetGLColor( g_Parm_3D_Visu.m_BoardSettings->m_LayerColor[LAYER_N_FRONT] );
double sx = DataScale3D * g_Parm_3D_Visu.m_BoardSize.x / 2;
double sy = DataScale3D * g_Parm_3D_Visu.m_BoardSize.y / 2;
double zpos = g_Parm_3D_Visu.m_LayerZcoord[15];
glNormal3f( 0.0, 0.0, 1.0 ); // Normal is Z axis
sx = sy = 0.5;
glVertex3f( -sx, -sy, zpos );
glVertex3f( -sx, sy, zpos );
glVertex3f( sx, sy, zpos );
glVertex3f( sx, -sy, zpos );
glEnd();
glBegin( GL_QUADS );
SetGLColor( g_Parm_3D_Visu.m_BoardSettings->m_LayerColor[LAYER_N_BACK] );
glNormal3f( 0.0, 0.0, -1.0 ); // Normal is -Z axis
glVertex3f( -sx, -sy, 0 );
glVertex3f( -sx, sy, 0 );
glVertex3f( sx, sy, 0 );
glVertex3f( sx, -sy, 0 );
glEnd();
#endif
// TODO
// move the board in order to draw it with its center at 0,0 3D coordinates
glTranslatef( -g_Parm_3D_Visu.m_BoardPos.x * g_Parm_3D_Visu.m_BoardScale,
@ -271,7 +241,7 @@ GLuint EDA_3D_CANVAS::CreateDrawGL_List()
Draw3D_Track( track );
}
if( g_Parm_3D_Visu.m_Draw3DZone )
if (g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ZONE])
{
// Draw segments used to fill copper areas. outdated!
for( segzone = pcb->m_Zone; segzone != NULL; segzone = segzone->Next() )
@ -668,7 +638,7 @@ void EDA_3D_CANVAS::Draw3D_DrawText( TEXTE_PCB* text )
for( unsigned i = 0; i<list->Count(); i++ )
{
wxString txt = list->Item( i );
DrawGraphicText( NULL, NULL, pos, (EDA_Colors) color,
DrawGraphicText( NULL, NULL, pos, (EDA_COLOR_T) color,
txt, text->GetOrientation(), size,
text->m_HJustify, text->m_VJustify,
text->GetThickness(), text->m_Italic,
@ -680,7 +650,7 @@ void EDA_3D_CANVAS::Draw3D_DrawText( TEXTE_PCB* text )
}
else
{
DrawGraphicText( NULL, NULL, text->m_Pos, (EDA_Colors) color,
DrawGraphicText( NULL, NULL, text->m_Pos, (EDA_COLOR_T) color,
text->m_Text, text->GetOrientation(), size,
text->m_HJustify, text->m_VJustify,
text->GetThickness(), text->m_Italic,
@ -707,7 +677,7 @@ void MODULE::Draw3D( EDA_3D_CANVAS* glcanvas )
S3D_MASTER* Struct3D = m_3D_Drawings;
bool As3dShape = false;
if( g_Parm_3D_Visu.m_Draw3DModule )
if (g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_MODULE])
{
glPushMatrix();
@ -1430,23 +1400,33 @@ void EDA_3D_CANVAS::Draw3D_Polygon( std::vector<wxPoint>& aCornersList, double a
static int Get3DLayerEnable( int act_layer )
{
bool enablelayer;
int i = -1;
// see if layer needs to be shown
// check the flags
switch (act_layer)
{
case DRAW_N:
i=g_Parm_3D_Visu.FL_DRAWINGS;
break;
enablelayer = true;
case COMMENT_N:
i=g_Parm_3D_Visu.FL_COMMENTS;
break;
if( act_layer == DRAW_N && !g_Parm_3D_Visu.m_Draw3DDrawings )
enablelayer = false;
case ECO1_N:
i=g_Parm_3D_Visu.FL_ECO1;
break;
if( act_layer == COMMENT_N && !g_Parm_3D_Visu.m_Draw3DComments )
enablelayer = false;
case ECO2_N:
i=g_Parm_3D_Visu.FL_ECO2;
break;
}
// the layer was not a layer with a flag, so show it
if (i < 0)
return true;
if( act_layer == ECO1_N && !g_Parm_3D_Visu.m_Draw3DEco1 )
enablelayer = false;
if( act_layer == ECO2_N && !g_Parm_3D_Visu.m_Draw3DEco2 )
enablelayer = false;
return enablelayer;
// if the layer has a flag, return the flag
return g_Parm_3D_Visu.m_DrawFlags[i];
}

View File

@ -222,8 +222,10 @@ void EDA_3D_FRAME::RedrawActiveWindow( wxDC* DC, bool EraseBg )
void EDA_3D_FRAME::Process_Special_Functions( wxCommandEvent& event )
{
#define ROT_ANGLE 10.0
int id = event.GetId();
bool isChecked = event.IsChecked();
switch( event.GetId() )
switch( id )
{
case ID_RELOAD3D_BOARD:
NewDisplay();
@ -285,31 +287,38 @@ void EDA_3D_FRAME::Process_Special_Functions( wxCommandEvent& event )
return;
case ID_MENU3D_AXIS_ONOFF:
Set3DAxisOnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_AXIS] = isChecked;
NewDisplay();
return;
case ID_MENU3D_MODULE_ONOFF:
Set3DModuleOnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_MODULE] = isChecked;
NewDisplay();
return;
case ID_MENU3D_ZONE_ONOFF:
Set3DZoneOnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ZONE] = isChecked;
NewDisplay();
return;
case ID_MENU3D_COMMENTS_ONOFF:
Set3DCommentsOnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_COMMENTS] = isChecked;
NewDisplay();
return;
case ID_MENU3D_DRAWINGS_ONOFF:
Set3DDrawingsOnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_DRAWINGS] = isChecked;
NewDisplay();
return;
case ID_MENU3D_ECO1_ONOFF:
Set3DEco1OnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ECO1] = isChecked;
NewDisplay();
return;
case ID_MENU3D_ECO2_ONOFF:
Set3DEco2OnOff();
g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ECO2] = isChecked;
NewDisplay();
return;
default:
@ -367,79 +376,3 @@ void EDA_3D_FRAME::Set3DBgColor()
NewDisplay();
}
}
void EDA_3D_FRAME::Set3DAxisOnOff()
{
if( g_Parm_3D_Visu.m_Draw3DAxis )
g_Parm_3D_Visu.m_Draw3DAxis = false;
else
g_Parm_3D_Visu.m_Draw3DAxis = true;
NewDisplay();
}
void EDA_3D_FRAME::Set3DModuleOnOff()
{
if( g_Parm_3D_Visu.m_Draw3DModule )
g_Parm_3D_Visu.m_Draw3DModule = false;
else
g_Parm_3D_Visu.m_Draw3DModule = true;
NewDisplay();
}
void EDA_3D_FRAME::Set3DZoneOnOff()
{
if( g_Parm_3D_Visu.m_Draw3DZone )
g_Parm_3D_Visu.m_Draw3DZone = false;
else
g_Parm_3D_Visu.m_Draw3DZone = true;
NewDisplay();
}
void EDA_3D_FRAME::Set3DCommentsOnOff()
{
if( g_Parm_3D_Visu.m_Draw3DComments )
g_Parm_3D_Visu.m_Draw3DComments = false;
else
g_Parm_3D_Visu.m_Draw3DComments = true;
NewDisplay();
}
void EDA_3D_FRAME::Set3DDrawingsOnOff()
{
if( g_Parm_3D_Visu.m_Draw3DDrawings )
g_Parm_3D_Visu.m_Draw3DDrawings = false;
else
g_Parm_3D_Visu.m_Draw3DDrawings = true;
NewDisplay();
}
void EDA_3D_FRAME::Set3DEco1OnOff()
{
if( g_Parm_3D_Visu.m_Draw3DEco1 )
g_Parm_3D_Visu.m_Draw3DEco1 = false;
else
g_Parm_3D_Visu.m_Draw3DEco1 = true;
NewDisplay();
}
void EDA_3D_FRAME::Set3DEco2OnOff()
{
if( g_Parm_3D_Visu.m_Draw3DEco2 )
g_Parm_3D_Visu.m_Draw3DEco2 = false;
else
g_Parm_3D_Visu.m_Draw3DEco2 = true;
NewDisplay();
}

View File

@ -30,6 +30,7 @@
#include <fctsys.h>
#include <3d_viewer.h>
#include <menus_helpers.h>
void EDA_3D_FRAME::ReCreateHToolbar()
@ -132,13 +133,13 @@ void EDA_3D_FRAME::ReCreateMenuBar()
bool full_options = true;
// If called from the display frame of CvPcb, only some options are relevant
if( Parent()->GetName() == wxT( "CmpFrame" ) )
// Called from CvPcb: do not display all options
if( Parent()->GetName() == wxT( "CmpFrame" ) ) {
full_options = false;
}
wxMenuBar* menuBar = new wxMenuBar;
wxMenu* fileMenu = new wxMenu;
wxMenuBar* menuBar = new wxMenuBar;
wxMenu* fileMenu = new wxMenu;
wxMenu* prefsMenu = new wxMenu;
menuBar->Append( fileMenu, _( "&File" ) );
@ -153,34 +154,43 @@ void EDA_3D_FRAME::ReCreateMenuBar()
fileMenu->AppendSeparator();
fileMenu->Append( wxID_EXIT, _( "&Exit" ) );
wxMenu* referencesMenu = new wxMenu;
menuBar->Append( referencesMenu, _( "&Preferences" ) );
menuBar->Append( prefsMenu, _( "&Preferences" ) );
AddMenuItem( referencesMenu, ID_MENU3D_BGCOLOR_SELECTION,
AddMenuItem( prefsMenu, ID_MENU3D_BGCOLOR_SELECTION,
_( "Choose background color" ), KiBitmap( palette_xpm ) );
AddMenuItem( referencesMenu, ID_MENU3D_AXIS_ONOFF,
_( "3D Axis On/Off" ), KiBitmap( axis3d_front_xpm ) );
wxMenuItem* item;
item = AddMenuItem( prefsMenu, ID_MENU3D_AXIS_ONOFF,
_( "Show 3D &Axis" ), KiBitmap( axis3d_front_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_AXIS]);
if( full_options )
{
AddMenuItem( referencesMenu, ID_MENU3D_MODULE_ONOFF,
_( "3D Footprints Shapes On/Off" ), KiBitmap( shape_3d_xpm ) );
item = AddMenuItem( prefsMenu, ID_MENU3D_MODULE_ONOFF,
_( "Show 3D F&ootprints" ), KiBitmap( shape_3d_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_MODULE]);
AddMenuItem( referencesMenu, ID_MENU3D_ZONE_ONOFF,
_( "Zone Filling On/Off" ), KiBitmap( add_zone_xpm ) );
item = AddMenuItem( prefsMenu, ID_MENU3D_ZONE_ONOFF,
_( "Show Zone &Filling" ), KiBitmap( add_zone_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ZONE]);
AddMenuItem( referencesMenu, ID_MENU3D_COMMENTS_ONOFF,
_( "Comments Layer On/Off" ), KiBitmap( edit_sheet_xpm ) );
item = AddMenuItem( prefsMenu, ID_MENU3D_COMMENTS_ONOFF,
_( "Show &Comments Layer" ), KiBitmap( edit_sheet_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_COMMENTS]);
AddMenuItem( referencesMenu, ID_MENU3D_DRAWINGS_ONOFF,
_( "Drawings Layer On/Off" ), KiBitmap( add_polygon_xpm ) );
item = AddMenuItem( prefsMenu, ID_MENU3D_DRAWINGS_ONOFF,
_( "Show &Drawings Layer" ), KiBitmap( add_polygon_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_DRAWINGS]);
AddMenuItem( referencesMenu, ID_MENU3D_ECO1_ONOFF,
_( "Eco1 Layer On/Off" ), KiBitmap( tools_xpm ) );
item = AddMenuItem( prefsMenu, ID_MENU3D_ECO1_ONOFF,
_( "Show Eco&1 Layer" ), KiBitmap( tools_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ECO1]);
item = AddMenuItem( prefsMenu, ID_MENU3D_ECO2_ONOFF,
_( "Show Eco&2 Layer" ), KiBitmap( tools_xpm ), wxITEM_CHECK );
item->Check(g_Parm_3D_Visu.m_DrawFlags[g_Parm_3D_Visu.FL_ECO2]);
AddMenuItem( referencesMenu, ID_MENU3D_ECO2_ONOFF,
_( "Eco2 Layer On/Off" ), KiBitmap( tools_xpm ) );
}
SetMenuBar( menuBar );

View File

@ -134,19 +134,20 @@ class SEGVIA;
/* information needed to display 3D board */
class Info_3D_Visu
{
public:
enum {
FL_AXIS=0, FL_MODULE, FL_ZONE,
FL_COMMENTS, FL_DRAWINGS, FL_ECO1, FL_ECO2,
FL_LAST
};
double m_Beginx, m_Beginy; /* position of mouse */
double m_Quat[4]; /* orientation of object */
double m_Rot[4]; /* man rotation of object */
double m_Zoom; /* field of view in degrees */
S3D_Color m_BgColor;
bool m_Draw3DAxis;
bool m_Draw3DModule;
bool m_Draw3DZone;
bool m_Draw3DComments;
bool m_Draw3DDrawings;
bool m_Draw3DEco1;
bool m_Draw3DEco2;
bool m_DrawFlags[FL_LAST]; /* show these special items */
wxPoint m_BoardPos;
wxSize m_BoardSize;
int m_Layers;
@ -320,14 +321,6 @@ public:
void NewDisplay();
void Set3DBgColor();
void Set3DAxisOnOff();
void Set3DModuleOnOff();
void Set3DPlaceOnOff();
void Set3DZoneOnOff();
void Set3DCommentsOnOff();
void Set3DDrawingsOnOff();
void Set3DEco1OnOff();
void Set3DEco2OnOff();
DECLARE_EVENT_TABLE()
};

View File

@ -17,6 +17,7 @@ Marco Serantoni <marco.serantoni[at]gmail-dot-com> (OSX maintener)
Rok Markovic <rok[at]kanardia.eu>
Tim Hanson <sideskate[at]gmail-dot-com>
Vesa Solonen <vesa.solonen[at]hut-dot-fi>
Alexander Zakamaldin <zaka62[at]mail.ru>
See also CHANGELOG.txt for contributors.

View File

@ -4,6 +4,13 @@ KiCad ChangeLog 2012
Please add newer entries at the top, list the date and your name with
email address.
2012-Mar-11 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
++pcbnew
* Add PCB_EDIT_FRAME::syncLayerVisibilities(), PCB_LAYER_MANAGER::SyncLayerVisibilities().
* Save all visibilities, layer and render, in BOARD and restore on load.
2012-Feb-19 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
++pcbnew

View File

@ -20,10 +20,13 @@ set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMakeModules)
# reports.
#
option(USE_PNG_BITMAPS "use PNG bitmaps instead of XPM (default ON)" ON)
option(USE_PCBNEW_SEXPR_FILE_FORMAT
"Use s-expression Pcbnew file format support (default OFF)." )
option(USE_NEW_PCBNEW_LOAD "use new plugin support for legacy file format" OFF)
option(USE_NEW_PCBNEW_SAVE "use new plugin support for legacy file format" OFF)
option(USE_NEW_PCBNEW_LOAD "use new plugin support for legacy file format" ON)
option(USE_NEW_PCBNEW_SAVE "use new plugin support for legacy file format" ON)
option(USE_PCBNEW_NANOMETRES
"Use nanometers for Pcbnew internal units instead of deci-mils (default OFF).")
# Russian GOST patch
option(wxUSE_UNICODE "enable/disable building unicode (default OFF)")
@ -78,7 +81,12 @@ else (KICAD_STABLE_VERSION )
endif(KICAD_TESTING_VERSION )
endif(KICAD_STABLE_VERSION )
# Nanometers must be enabled when USE_PCBNEW_SEXPR_FILE_FORMAT=ON.
if( USE_PCBNEW_SEXPR_FILE_FORMAT AND NOT USE_PCBNEW_NANOMETRES )
set( TMP "The Pcbnew s-expression file format requires nano-meter internal units to be " )
set( TMP "${TMP} enabled using -DUSE_PCBNEW_NANOMETRES=ON." )
message( FATAL_ERROR ${TMP} )
endif( USE_PCBNEW_SEXPR_FILE_FORMAT AND NOT USE_PCBNEW_NANOMETRES )
#================================================
# Set flags for GCC.
@ -94,10 +102,6 @@ if(CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_C_FLAGS_DEBUG "-Wall -g3 -ggdb3 -DDEBUG -fPIC")
set(CMAKE_CXX_FLAGS_DEBUG "-Wall -g3 -ggdb3 -DDEBUG -fPIC")
if( USE_PNG_BITMAPS )
#Add -DUSE_PNG_BITMAPS to windres.exe command line
set(CMAKE_RC_COMPILER windres.exe -DUSE_PNG_BITMAPS)
endif( USE_PNG_BITMAPS )
endif(CMAKE_COMPILER_IS_GNUCXX)
if(wxUSE_UNICODE)
@ -262,16 +266,10 @@ set(INC_AFTER
############
# Binaries #
############
add_subdirectory(3d-viewer)
if( USE_PNG_BITMAPS )
add_subdirectory(bitmaps_png)
else()
add_subdirectory(bitmaps_xpm)
endif()
add_subdirectory(bitmaps_png)
add_subdirectory(common)
add_subdirectory(3d-viewer)
add_subdirectory(cvpcb)
add_subdirectory(eeschema)
add_subdirectory(gerbview)

View File

@ -55,17 +55,16 @@
#cmakedefine USE_IMAGES_IN_MENUS 1
#cmakedefine USE_PNG_BITMAPS 1
#cmakedefine USE_NEW_PCBNEW_LOAD
#cmakedefine USE_NEW_PCBNEW_SAVE
#cmakedefine USE_PCBNEW_NANOMETRES
#cmakedefine USE_PCBNEW_SEXPR_FILE_FORMAT
/// The file format revision of the *.brd file created by this build
#if defined(KICAD_NANOMETRE)
#define BOARD_FILE_VERSION 2
/// The legacy file format revision of the *.brd file created by this build
#if defined(USE_PCBNEW_NANOMETRES)
#define LEGACY_BOARD_FILE_VERSION 2
#else
#define BOARD_FILE_VERSION 1
#define LEGACY_BOARD_FILE_VERSION 1
#endif
#endif // CONFIG_H_

View File

@ -1,7 +1,7 @@
Compiling KiCad from Source
===========================
KiCad Documentation Team
Last revised on 31-Jan-2010 by Jerry Jacobs
Last revised on 12-mars-2012 by jp Charras
Introduction
------------
@ -25,7 +25,21 @@ On linux:
Install "mesa". Use your package manager to install the
development libaries.
Tools in PATH
After a fresh install you need the following packages to compile and run
KiCad from source.
CMake - Cross-platform make
GLUT - The OpenGL Utility Library
wxGTK or wxWidgets - The wxWidgets GUI toolkit with GTK+ bindings
Boost - Collection of portable C++ source libraries
Because boost is in the repository of kicad you don't need to install them.
Useful, but not required:
Doxygen - Documentation system for several programming languages
Compiler and basic development tools
-------------
Make sure g++, make and other tools are in your path.
If windows, then try running g++ and make from within your msys bash shell.
@ -37,48 +51,27 @@ Install or Build wxWidgets
WARNING:
see wxWidgets_patch_notes.txt for patches and issues in wxWidgets.
If on windows, download
If on Windows, download
http://sourceforge.net/projects/wxwindows/files/wxAll/2.9.3/wxWidgets-2.9.3.zip/download
or a newer version.
Do NOT use previous versions which all have issues for KiCad.
Start msys so you have a bash shell. Decide where your wxWidgets build directory
will be. It must be where you can access it from within the msys environment,
such as home/<user>. Edit your msys/1.0/etc/fstab file if needed to provide
access to this build directory from msys. (Note that if you want you can build
a "debug" version of the wxWidgets library at this point, instead of the release
version, or in addition to the the release version.)
Unzip the wmMWS zip file into the build directory. Change directories into
Do NOT use previous versions which all have annoying issues for KiCad.
Start msys so you have a bash shell.
Note also since 2.9 versions no need to build a "debug" version of the wxWidgets library,
the release abd the debug version are same.
Unzip the wxWidgets zip file into the build directory. Change directories into
there, and then:
mkdir build-release
mkdir build-debug
.Release
----
cd build-release
../configure --enable-unicode --enable-monolithic --disable-shared --with-msw --with-opengl
mkdir Release
cd Release
../configure --enable-unicode --enable-monolithic=no --disable-shared --with-opengl
make
make install
----
.Debug
----
cd build-debug
../configure --enable-unicode --enable-monolithic --enable-debug --enable-debug_gdb --disable-shared --with-msw --with-opengl
make
make install
----
and under Linux, but not under Windows:
sudo make install that install wxWidgets libs and headers in /usr/local/
The default install path is /usr/local. Generally speaking MinGW likes header
files in /mingw/include and library link files in /mingw/lib. You can install
path by setting --prefix=/mingw to configure above to change where "make install"
puts everything. We will refer to the --prefix setting as <wxInstallDir> below.
Verify that wx-config is in your path. Modify your PATH environment variable
if need be so you can run wx-config from a command prompt. You may have to
restart your msys shell, depending on how you modify your PATH.
If on linux, use your package manager to install shared object libraries and the
If on linux, you can use your package manager to install the
development versions of the wxWidgets packages which include the C++ headers. An
alternative is to build static libaries from source. Verify that wx-config is in
your path by running it from a command prompt. Linux users then go to next step.
@ -100,11 +93,24 @@ command prompt.
Obtain Sources
--------------
You can use the Launchpad repository or a tar file for this. See the wiki.
To download files from Launchpad repository, you should install bazaar (bzr) that is a
version control system like subversion, mercurial, git...
Launchpad repository handle 2 branches:
Launchpad repository handle 2 branches for KiCda sources:
- a testing branch (used by developers)
- a stable branch (a copy of the testing branch, when this testing branch is near a stable state))
Testing branch:
bzr branch lp:kicad kicad_testing
Stable branch:
bzr branch lp:kicad/stable kicad_stable
Components and Footprints libraries
bzr branch lp:~kicad-lib-committers/kicad/library kicad_libraries
Documentation and translations:
bzr branch lp:~kicad-developers/kicad/doc kicad_doc
Create Makefiles with CMake
---------------------------
@ -112,14 +118,14 @@ If windows, go into your msys shell. Linux and windows users both then make
two "out of source" build directories:
cd <kicadSource>
mkdir -p build/release
mkdir build/debug
mkdir build/debug (if you want a debug version of KiCad)
cd build/release
On either cmake command line shown below, you can optionally include
-DCMAKE_INSTALL_PREFIX=<finallInstallDir>
If windows, run the following command:
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DKICAD_TESTING_VERSION=ON -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
If linux, run instead the following command:
cmake -DCMAKE_BUILD_TYPE=Release ../../
@ -152,7 +158,8 @@ Although normally you do not install the Debug binaries, you can debug them
where they were built.
If windows, run the following command:
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug -DwxWidgets_USE_DEBUG=ON -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug -DKICAD_TESTING_VERSION=ON -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
where <wxInstallDir> is <wxWidgets path>/Release
If linux, run instead the following command:
cmake -DCMAKE_BUILD_TYPE=Debug -DwxWidgets_USE_DEBUG=ON ../../
@ -178,9 +185,6 @@ One of these 2 option *must* be set to ON:
CMAKE_BUILD_TYPE Release/Debug (REQUIRED)
Choose build type: Release/Debug.
wxWidgets_USE_DEBUG ON/OFF (REQUIRED)
Should be set to ON only when CMAKE_BUILD_TYPE=Debug.
wxWidgets_USE_STATIC ON/OFF (OPTIONAL)
CMAKE_VERBOSE_MAKEFILE ON/OFF (OPTIONAL)

View File

@ -1,288 +0,0 @@
Compiling KiCad on Debian & Ubuntu
==================================
First written: 10-Mar-2009
Updated: 31-Oct-2009
Lasted edited by: Jerry Jacobs <xor.gate.engineering@gmail.com>
This file is AsciiDoc formatted to you can convert it to pdf/xhtml/xml
Ubuntu 9.10 (Karmic Koala)
--------------------------
After a fresh install you need the following packages to compile and run
KiCad from source.
Boost - Collection of portable C++ source libraries
CMake - Cross-platform make
Doxygen - Documentation system for several programming languages
GLUT - The OpenGL Utility Library
wxGTK - The wxWidgets GUI toolkit with GTK+ bindings
zlib - General purpose data compression library
Because boost is in the repository of kicad you don't need to install them.
Install these with aptitude:
----
sudo aptitude install build-essential cmake doxygen subversion libglut3 libglut3-dev libwxgtk libwxgtk-dev zlib1g zlib1g-dev
----
Checkout the source
----
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad kicad
----
Generate makefiles
----
cd /home/<you>/<kicad-src-dir>
cmake .
----
Compile
----
make
----
*Note* on multicore systems you can do parallel make jobs to speed
up compiling by giving the option -j {JOBS} to make.
Ubuntu 9.04
-----------
Special thanks to David J S Briscoe <david@djsbriscoe.vispa.com>
The first thing I did was follow this page up to the running kicad section
http://basicubuntu.blogspot.com/2009/02/installing-kicad-on-ubuntu.html
This resulted in the error message detailed in this post
http://tech.groups.yahoo.com/group/kicad-devel/message/3180
SNIPPET
The build fails with the following message
----------------------------------------------------------:
david@ubuntu:~/Desktop/KICAD_SVN$ fakeroot debian/rules binary
test -d debian/patched || install -d debian/patched
dpatch apply-all
dpatch cat-all >>patch-stampT
mv -f patch-stampT patch-stamp
mkdir -p /home/david/Desktop/KICAD_SVN/build/kicad
mkdir -p /home/david/Desktop/KICAD_SVN/build/bitmaps
cd /home/david/Desktop/KICAD_SVN/build/kicad && cmake \
-DKICAD_DEMOS=/home/david/Desktop/KICAD_SVN/debian/kicad-common/usr/share/doc/ki\
cad/demos ../../kicad \
-DXPM_CPP_PATH=/home/david/Desktop/KICAD_SVN/build/bitmaps
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Found X11: /usr/lib/libX11.so
-- Check for installed OpenGL -- found
-- Check for installed Boost -- not found
CMake Error at CMakeModules/CheckFindPackageResult.cmake:6 (message):
Boost was not found - it is required to build Kicad
Call Stack (most recent call first):
CMakeLists.txt:111 (check_find_package_result)
-- Configuring incomplete, errors occurred!
make: *** [configure-stamp] Error 1
david@ubuntu:~/Desktop/KICAD_SVN$
-----------------------------------------------------------------:
SNIPPET
The next step was to remove any libboost 1.34 libraries using the apt-get
remove command (can't remember the exact commands I used) as the Ubuntu 9.04
(Jaunty) repositories only had the 1.34 version available.
After this I installed the boost 1.37 libraries
using this command
---------------------------------------
sudo apt-get install libboost1.37-dev
---------------------------------------
This pulled down all the required files and dependencies (as far as I
know-how do I check this?)
I then entered the following command
---------------------------------------
fakeroot debian/rules binary
---------------------------------------
and everything was built properly (I saw a few warnings flash past-will
these be logged anywhere?)
I was left with a bunch of debian packaged files. I installed the main one,
the common one and an English language documentation one (I can supply more
details if needed later as I am not using Ubuntu at the moment).
The first link above describes moving the libraries and other files into the
same place as the compiled executables. I didn't do this, so I have a
duplicate installation.
The above method needs some fine tuning and improvements. If you can let me
know of a tidier way of compiling Kicad please let me know.
Maybe there is a way of automating things with scripts, my Linux knowledge
doesn't go that far, yet.
Ubuntu (8.04)
-------------
Original from:
http://basicubuntu.blogspot.com/2009/02/installing-kicad-on-ubuntu.html
Required software and dependencies
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
We need to install the following packages: debhelper, dpatch, libx11-dev,
libglu1-mesa-dev, libgl1-mesa-dev, mesa-common-dev, libwxbase2.8-dev,
libwxgtk2.8-dev, libboost-dev, subversion, cmake (>= 2.6.0).
---------------------------------------
sudo apt-get install debhelper dpatch libx11-dev libglu1-mesa-dev
libgl1-mesa-dev mesa-common-dev libwxbase2.8-dev libwxgtk2.8-dev
libboost-dev fakeroot subversion libboost-serialization-dev
---------------------------------------
And finally, we need cmake, but we need atleast version 2.6, the one
from the repository is not the updated one (atleast for ubuntu 8.04).
You can download version 2.6 from newer ubuntu releases.
Just search for cmake on http://packages.ubuntu.com then get a newer
cmake .deb file and install the downloaded package on the console
with:
---------------------------------------
sudo dpkg -i <packagename.deb>
---------------------------------------
But if what the repository gives you is atleast version 2.6, then
simply
---------------------------------------
sudo apt-get install cmake
---------------------------------------
Get KiCad Sourcecode
~~~~~~~~~~~~~~~~~~~~
We will be getting the source codes through subversion. Create a directory
where you'll be downloading the source codes, and go to that
directory. type the following:
---------------------------------------
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad kicad
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-doc kicad-doc
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-library kicad-library
---------------------------------------
Also we need the following to get the debian specific stuff
---------------------------------------
svn checkout http://svn.flexserv.de/kicad/trunk/debian
---------------------------------------
Compiling
~~~~~~~~~
To compile simply do the following on your terminal (make sure you're still in
the same directory where you did the svn)
---------------------------------------
fakeroot debian/rules binary
---------------------------------------
hopefully, there will be no errors.
You'll find the compiled version of KiCad in the following directory:
---------------------------------------
debian/kicad/usr/bin/
---------------------------------------
to complete things up, you'll need to copy the following folders
---------------------------------------
debian/kicad-common/usr/share/kicad/library
debian/kicad-common/usr/share/kicad/modules
debian/kicad-common/usr/share/kicad/template
---------------------------------------
in here
---------------------------------------
debian/kicad/usr/share
---------------------------------------
again, to run KiCad go to
---------------------------------------
cd debian/kicad/usr/bin/
---------------------------------------
and double click KiCad
Debian squeeze (testing)
------------------------
Special Note
~~~~~~~~~~~~
After SVN trunk revision 1753 boost library 1.36 or higher is needed
to compile KiCad.
Installing Packages
~~~~~~~~~~~~~~~~~~~
The following packages should be installed with
synaptic, apt-get or aptitude:
- build-essential
- cmake
- libboost-dev
- libwxgtk2.8-dev
- libglut3-dev
The following packages will also be installed then
- cmake dependencies
- boost development dependencies
- wxwidgets development dependencies
- opengl3 (glut) development dependencies
Get KiCad sourcecode
~~~~~~~~~~~~~~~~~~~~
Checkout sourcecode using subversion or download latest release.
.*Subversion*
---------------------------------------
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad kicad
---------------------------------------
.*Release*
---------------------------------------
wget http://iut-tice.ujf-grenoble.fr/cao/kicad-sources-2009-02-16.tar.gz
tar -xvf kicad-sources-2009-02-16.tar.gz
---------------------------------------
Compiling
~~~~~~~~~
Run 'cmake .' in the root of the source directory then build the
binaries with 'make'.
Installing
~~~~~~~~~~
For installing you could use 'make install' or build a debian package.

View File

@ -52,12 +52,17 @@ PCBNew
See the @todos in class_zone.cpp
Dick's Peronal TODO Items (Last Update: 20-Feb-2012)
Dick's Peronal TODO Items (Last Update: 5-April-2012)
-----------------------------------------------------
0) Check that the new load visibility BOARD settings is properly setting the toolbar
buttons like show grid or ratsnest. Add PCB_EDIT_FRAME::SetVisibleElements() so
toolbar crap is not known to a BOARD.
1) Finish removing global access requirements from KICAD_PLUGIN, so that:
*) a BOARD is a fully self contained document description.
*) plugin developers do not have to access globals, which assumes there were ever
only be one BOARD in RAM. Problems remain with BASE_SCREEN and PLOT params.
*) plugin developers do not have to access globals, since a plugin could
very well be a dynamically loaded DLL/DSO.
A problem remain with BASE_SCREEN
2) Extend PLUGIN API to facillitate loading and saving of modules.
@ -65,11 +70,8 @@ Dick's Peronal TODO Items (Last Update: 20-Feb-2012)
4) Check back with Vladimir about finishing the nanometer work.
5) Do an s-expression PCBNEW PLUGIN at least the output side for discussion,
assuming Wayne does not get to this first.
6) Do an EAGLE XML import PCBNEW PLUGIN, and possible add export support to it.
5) Do an EAGLE XML import PCBNEW PLUGIN, and possibly add export support to it.
This is PLUGIN::Load() and maybe PLUGIN::Save().
7) Get back to the SWEET work.
6) Get back to the SWEET work.

View File

@ -38,6 +38,7 @@
#include <colors_selection.h>
#include <build_version.h>
#include <menus_helpers.h>
#define KEYWORD_FRAME_POSX wxT( "Bmconverter_Pos_x" )
#define KEYWORD_FRAME_POSY wxT( "Bmconverter_Pos_y" )

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,3 @@
#ifdef USE_PNG_BITMAPS
icon_bitmap2component ICON "../bitmaps_png/icons/icon_bitmap2component.ico"
#else
icon_bitmap2component ICON "../bitmaps_xpm/icons/icon_bitmap2component.ico"
#endif
#include "wx/msw/wx.rc"

View File

@ -158,7 +158,6 @@ set( BMAPS_MID
break_bus
break_line
browse_files
cancel_tool
cancel
change_entry_orient
create_cmp_file
@ -176,7 +175,6 @@ set( BMAPS_MID
cvpcb
dashline
datasheet
delete_body
delete_arc
delete_association
delete_bus
@ -332,6 +330,7 @@ set( BMAPS_MID
module_filtered_list
module_full_list
module_options
module_pin_filtered_list
module_ratsnest
module
modview_icon
@ -367,7 +366,6 @@ set( BMAPS_MID
new_cvpcb
new_footprint
new_library
new_module
new_pcb
new_project
new_sch
@ -510,6 +508,7 @@ set( BMAPS_MID
# 48 x 48 for now
set( BMAPS_BIG
dialog_warning
icon_3d
icon_cvpcb
icon_eeschema

View File

@ -8,40 +8,47 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x02, 0x03, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xd5, 0xd6, 0x4d, 0x4b, 0x55,
0x51, 0x14, 0x06, 0xe0, 0xc7, 0xb2, 0x1b, 0x5a, 0x68, 0x59, 0x49, 0x4a, 0x54, 0x46, 0x93, 0x72,
0x10, 0x12, 0x08, 0x22, 0x41, 0x14, 0x19, 0x82, 0x03, 0xa1, 0x2f, 0x6a, 0x62, 0x1f, 0x24, 0x12,
0x92, 0x5a, 0x56, 0x60, 0x69, 0x06, 0xa5, 0x69, 0x9f, 0x5a, 0x6a, 0x90, 0x85, 0xd4, 0xa8, 0x41,
0x34, 0x08, 0x0a, 0x07, 0x4d, 0xfa, 0x03, 0x11, 0x4d, 0xea, 0xd7, 0xdc, 0x26, 0x4b, 0x38, 0x9c,
0x8e, 0xb7, 0x14, 0x6e, 0xe0, 0xe0, 0x85, 0xb5, 0xd6, 0x3e, 0x7b, 0xbf, 0x67, 0xaf, 0xbd, 0xf6,
0xbb, 0xb6, 0x7c, 0x3e, 0xef, 0x7f, 0xc0, 0x8a, 0x23, 0x42, 0x09, 0x72, 0x58, 0x55, 0x6c, 0xa2,
0xed, 0x98, 0xc1, 0x38, 0x3a, 0x8a, 0x4d, 0x74, 0x29, 0xec, 0x61, 0xac, 0xfb, 0x83, 0x08, 0x7b,
0xd0, 0x8a, 0xaa, 0x02, 0x0b, 0xd5, 0xa0, 0x19, 0x75, 0x59, 0xe9, 0x49, 0x11, 0x5d, 0x44, 0x7d,
0x6a, 0x5c, 0x2b, 0x06, 0x70, 0x02, 0x63, 0xc8, 0xa5, 0xf2, 0xde, 0x8e, 0x57, 0x98, 0x44, 0x1f,
0xee, 0x63, 0x0e, 0x9d, 0x58, 0xbb, 0x08, 0xd1, 0x55, 0xd4, 0xa6, 0x89, 0x46, 0x51, 0x1a, 0x4e,
0x03, 0x2a, 0xc2, 0xae, 0xc4, 0x10, 0xae, 0x63, 0x43, 0x6a, 0x52, 0x0e, 0x67, 0x31, 0x81, 0x1d,
0x09, 0xa2, 0x31, 0x9c, 0xc3, 0x70, 0xc6, 0x8e, 0x8d, 0x87, 0x71, 0x05, 0x8f, 0xd1, 0x18, 0xfe,
0x10, 0x8e, 0x65, 0x4c, 0xb8, 0x8d, 0xe6, 0xb0, 0x1b, 0x31, 0x8d, 0xb2, 0xc0, 0x51, 0x1c, 0xc2,
0xfa, 0x2c, 0xa2, 0x01, 0xec, 0x0b, 0xa7, 0x13, 0x07, 0x70, 0x18, 0x83, 0x11, 0xdb, 0x96, 0x9a,
0x30, 0x83, 0x41, 0xb4, 0x05, 0x9e, 0xe0, 0x79, 0xc2, 0xcf, 0xc2, 0x56, 0xd8, 0x8c, 0x5b, 0xb1,
0xed, 0x5e, 0x54, 0xe0, 0x25, 0xb6, 0xc4, 0xc2, 0xf7, 0x70, 0x1e, 0xab, 0x13, 0x44, 0x9f, 0x31,
0x1b, 0x78, 0x8d, 0x9f, 0x78, 0x9b, 0x88, 0xa5, 0xd1, 0x90, 0x55, 0x5d, 0xd5, 0x98, 0x4c, 0xf8,
0x0f, 0xf1, 0x2e, 0xfe, 0xbc, 0x3a, 0x88, 0x5a, 0x52, 0x73, 0xfa, 0x16, 0x52, 0x5e, 0x50, 0x19,
0xb0, 0x17, 0xfd, 0x71, 0xf0, 0x53, 0xf8, 0x88, 0x1b, 0x81, 0xaf, 0xf8, 0x81, 0xef, 0x98, 0xc7,
0xfb, 0x0c, 0xa2, 0x76, 0x9c, 0xf9, 0x57, 0xa2, 0xcb, 0xe8, 0xc6, 0x03, 0x7c, 0x08, 0xbb, 0x1b,
0x5f, 0xf0, 0x2d, 0x30, 0x8f, 0x4f, 0x19, 0x44, 0xc7, 0x71, 0x6a, 0x49, 0x5a, 0x87, 0x4d, 0x98,
0xca, 0x48, 0xdd, 0x2c, 0x76, 0x2f, 0x92, 0xba, 0x6b, 0xd8, 0xbf, 0x64, 0x51, 0xc5, 0x8b, 0x85,
0x6a, 0x8b, 0x7b, 0x36, 0x80, 0xf2, 0x44, 0x31, 0xbc, 0x49, 0x1c, 0xf4, 0x1c, 0x7e, 0xa5, 0x62,
0x69, 0xec, 0x5a, 0x8c, 0xa8, 0x09, 0x23, 0xa1, 0x0c, 0xf5, 0x19, 0xe5, 0xdd, 0x83, 0x96, 0xc0,
0xb3, 0xa8, 0xd8, 0x96, 0x02, 0xa8, 0x2c, 0x24, 0x92, 0xfd, 0xc9, 0xb2, 0x4e, 0xc4, 0x6f, 0xa2,
0x29, 0xec, 0x23, 0x78, 0x8a, 0x35, 0xcb, 0xee, 0x47, 0x71, 0xd3, 0x7b, 0x70, 0x17, 0x3b, 0x51,
0x92, 0x18, 0xab, 0x8a, 0xb1, 0x11, 0x54, 0x27, 0xe2, 0x1d, 0x51, 0x4c, 0xa3, 0xa8, 0x5b, 0x52,
0x9b, 0xc0, 0xc1, 0x90, 0xa6, 0x39, 0xdc, 0x89, 0xf3, 0x9b, 0xc6, 0xc9, 0xe4, 0x6e, 0x43, 0xff,
0x26, 0x50, 0x1a, 0xa9, 0x3f, 0xbd, 0xac, 0x7e, 0x84, 0xf2, 0xb8, 0x06, 0x1b, 0x0b, 0x7c, 0x73,
0x21, 0xe4, 0xa8, 0x17, 0x35, 0xc5, 0x6a, 0x7c, 0xb5, 0xa1, 0x93, 0xb9, 0xd0, 0xb7, 0xa1, 0x62,
0x11, 0x95, 0xe1, 0x51, 0xa4, 0xb4, 0x0b, 0x5d, 0x45, 0x7b, 0x05, 0x85, 0x16, 0xb6, 0x85, 0xfa,
0x97, 0xac, 0xec, 0xe7, 0xd6, 0xdf, 0xf0, 0x1b, 0x78, 0x31, 0x40, 0x44, 0x3e, 0x72, 0xc2, 0xd2,
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x02, 0x68, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xed, 0x96, 0xcf, 0x6a, 0x13,
0x51, 0x14, 0xc6, 0x83, 0x56, 0xd1, 0x9d, 0x2f, 0x50, 0x95, 0x5a, 0x15, 0x7c, 0x8a, 0x2c, 0x9a,
0x76, 0xfe, 0x27, 0x33, 0xed, 0xb4, 0xc6, 0x46, 0xab, 0xc4, 0x4e, 0xba, 0x70, 0x25, 0xa9, 0x48,
0x77, 0x7d, 0x00, 0x51, 0x0b, 0x4a, 0x41, 0xc4, 0xb8, 0xd0, 0x85, 0x25, 0x26, 0xad, 0x92, 0x50,
0x8a, 0x22, 0x2a, 0x22, 0xd9, 0x76, 0x27, 0xb8, 0x90, 0x2c, 0x74, 0x15, 0x5c, 0x0c, 0x34, 0xa3,
0xc2, 0x71, 0xbe, 0xcb, 0xdc, 0xe1, 0x66, 0x3a, 0x13, 0x04, 0x49, 0x70, 0x61, 0xe0, 0x63, 0xce,
0xdc, 0xdf, 0x39, 0xf7, 0x63, 0xee, 0xcc, 0x3d, 0x37, 0x29, 0x22, 0x4a, 0x0d, 0x43, 0x3d, 0x37,
0xa6, 0x9a, 0xf9, 0xa4, 0xc8, 0x53, 0x3f, 0xb9, 0xb2, 0x4a, 0xe6, 0x0b, 0x67, 0x96, 0x3a, 0xb1,
0xab, 0xc9, 0x93, 0x7b, 0x5c, 0xc8, 0xe5, 0x0c, 0x79, 0x49, 0x75, 0xb1, 0x46, 0x48, 0x72, 0x97,
0x47, 0xc8, 0xbb, 0x71, 0x80, 0x49, 0x92, 0x24, 0x12, 0x59, 0xa7, 0x7c, 0x98, 0xdc, 0xe5, 0x43,
0x4c, 0x22, 0x43, 0xcc, 0x6b, 0xa2, 0x75, 0x89, 0x46, 0xf5, 0xc5, 0x71, 0xba, 0x3c, 0x23, 0x51,
0xd5, 0x39, 0xb3, 0xcf, 0xa8, 0xe6, 0x9c, 0x66, 0xac, 0xe6, 0x8c, 0xef, 0x33, 0x42, 0xfe, 0xbc,
0x29, 0xd3, 0xc6, 0xe2, 0xd9, 0x64, 0x23, 0xcb, 0xb2, 0x76, 0x15, 0x45, 0xc1, 0x63, 0xd3, 0xc2,
0xb4, 0x4c, 0x8f, 0xd7, 0xd7, 0xc8, 0xce, 0xca, 0xac, 0x80, 0x8d, 0x07, 0xec, 0x82, 0x3f, 0xd1,
0xa3, 0xfb, 0x77, 0xd8, 0x55, 0x64, 0x88, 0xe7, 0x2d, 0x99, 0x1e, 0xde, 0xbb, 0xdd, 0xc3, 0x0c,
0xc3, 0xf8, 0x9a, 0x4e, 0xa7, 0x8f, 0x84, 0x46, 0x9a, 0xa6, 0xed, 0x75, 0x3a, 0x1d, 0xd2, 0x55,
0x85, 0x1a, 0xa5, 0x93, 0xe4, 0xcc, 0x4e, 0xd1, 0xcb, 0xd2, 0x29, 0x56, 0xe0, 0x79, 0x1e, 0x13,
0xd8, 0x0b, 0x67, 0x2c, 0x60, 0x63, 0x3d, 0x0c, 0xf1, 0xce, 0xd2, 0x71, 0xba, 0x76, 0x7e, 0x92,
0xb6, 0x4b, 0x27, 0x42, 0xe6, 0x1b, 0x75, 0x73, 0xb9, 0xdc, 0xb1, 0x1e, 0x23, 0xd7, 0x75, 0x49,
0x53, 0x65, 0xb6, 0xc6, 0x74, 0x33, 0xc5, 0x84, 0x82, 0x8f, 0xcd, 0x26, 0x93, 0xa6, 0x24, 0x33,
0xb6, 0x54, 0xc1, 0x38, 0x67, 0xf8, 0x25, 0x1a, 0x15, 0x6c, 0xd3, 0x9f, 0x50, 0x0a, 0x35, 0x67,
0x19, 0xf4, 0x7e, 0x6b, 0x8b, 0xa9, 0x1f, 0x43, 0x1c, 0x65, 0x49, 0x46, 0xdd, 0x56, 0xab, 0x45,
0x1f, 0x1a, 0x0d, 0x7a, 0x53, 0xab, 0x85, 0x7a, 0x5b, 0xaf, 0x87, 0x93, 0xbd, 0xdb, 0xdc, 0x4c,
0x64, 0x88, 0xa3, 0x2c, 0xd6, 0x48, 0x55, 0x55, 0xaf, 0x58, 0x2c, 0xd2, 0xea, 0xca, 0x4a, 0x58,
0xfc, 0xb7, 0x4a, 0x5c, 0xba, 0x76, 0xbb, 0x4d, 0xba, 0xa6, 0xd1, 0xeb, 0x6a, 0x75, 0xb0, 0x46,
0x55, 0xdf, 0x60, 0xa1, 0x50, 0x18, 0xec, 0x13, 0xf9, 0xdf, 0xfc, 0x8f, 0x72, 0xb9, 0x4c, 0xcf,
0x2b, 0x95, 0xc1, 0x2f, 0x1d, 0xbe, 0x3a, 0x7c, 0xaa, 0x43, 0x31, 0xba, 0x34, 0x67, 0xb1, 0x3d,
0xc0, 0x95, 0x9f, 0xce, 0x86, 0x85, 0x17, 0x67, 0x2d, 0xb6, 0x97, 0xb8, 0xae, 0xe4, 0x67, 0x42,
0x86, 0x3c, 0xb1, 0x0e, 0xb9, 0x7d, 0x8d, 0xe2, 0x36, 0x25, 0x9f, 0x4c, 0x6c, 0x9c, 0x68, 0xbc,
0xc8, 0x15, 0x19, 0xaf, 0x01, 0x07, 0xeb, 0x6b, 0x84, 0x36, 0xf3, 0xcc, 0x6f, 0x8a, 0x62, 0x73,
0xf4, 0xba, 0x5d, 0x26, 0xc4, 0x1b, 0x01, 0x43, 0x0e, 0x72, 0x45, 0xf6, 0xf4, 0xea, 0x39, 0xd6,
0x1f, 0x9f, 0xf8, 0x57, 0xb0, 0x58, 0x23, 0xd3, 0x34, 0x3f, 0xfb, 0x7b, 0xe9, 0x17, 0x1a, 0x27,
0x26, 0xaa, 0xac, 0xdf, 0x0d, 0x9b, 0x23, 0xc6, 0x21, 0xc4, 0xbc, 0xa9, 0x22, 0x07, 0xb9, 0x51,
0xf6, 0x60, 0xed, 0x16, 0xbb, 0x72, 0xa6, 0xeb, 0xfa, 0x77, 0xdb, 0xb6, 0x8f, 0x86, 0x46, 0xfe,
0xcd, 0x41, 0x74, 0x59, 0x1c, 0x05, 0x4d, 0xbf, 0x29, 0x8a, 0xcd, 0x11, 0xe3, 0x10, 0xe2, 0xed,
0x80, 0x21, 0x07, 0xb9, 0x22, 0x7b, 0xb5, 0x34, 0x4a, 0xd7, 0xf3, 0x13, 0xb4, 0x53, 0x1a, 0x15,
0xd9, 0x48, 0xe2, 0x79, 0x14, 0x7d, 0x47, 0xe2, 0x99, 0x23, 0xbe, 0x07, 0xe4, 0xfe, 0x09, 0x8b,
0x35, 0xc2, 0x11, 0x2c, 0x7e, 0x3d, 0x86, 0x92, 0xf9, 0xc6, 0x19, 0x62, 0x91, 0x89, 0xc7, 0x75,
0x3f, 0x16, 0x6b, 0x34, 0xb4, 0x3f, 0x27, 0xff, 0x8d, 0xfe, 0x49, 0xa3, 0xdf, 0xf4, 0x5e, 0xec,
0x57, 0x87, 0xb9, 0x43, 0x28, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82,
};
const BITMAP_OPAQUE add_component_xpm[1] = {{ png, sizeof( png ), "add_component_xpm" }};

View File

@ -8,82 +8,66 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x04, 0xa7, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xcd, 0x96, 0x7d, 0x4c, 0x53,
0x57, 0x18, 0xc6, 0xdf, 0xb5, 0x94, 0x02, 0x85, 0x5a, 0x29, 0xc3, 0xa0, 0x03, 0x19, 0x0e, 0xcd,
0xb6, 0x2c, 0x71, 0xd9, 0x08, 0x99, 0x1a, 0xdd, 0x26, 0x26, 0x8e, 0x08, 0x7e, 0x54, 0x51, 0x60,
0x80, 0x02, 0x93, 0xa1, 0x7c, 0xa8, 0x31, 0x0e, 0x47, 0x81, 0x4b, 0x01, 0xc1, 0x62, 0xf9, 0x10,
0x10, 0x71, 0x82, 0x8a, 0x20, 0xca, 0x40, 0xcd, 0x96, 0xb0, 0x84, 0x3f, 0x46, 0xa6, 0x10, 0x05,
0x82, 0x43, 0x34, 0x11, 0x94, 0xae, 0x56, 0x14, 0x9c, 0x13, 0xa6, 0x2e, 0x6a, 0xb6, 0x44, 0x9e,
0xbd, 0x17, 0x90, 0x58, 0x45, 0x21, 0x24, 0xfb, 0xf8, 0xe3, 0x69, 0x6e, 0xef, 0x79, 0xde, 0xe7,
0x77, 0xda, 0xf3, 0x9e, 0x73, 0x2f, 0x01, 0xa0, 0x7f, 0x43, 0xf4, 0x9f, 0x82, 0x4e, 0x13, 0xb9,
0x9e, 0xf5, 0xf1, 0x69, 0x38, 0x29, 0x95, 0xae, 0x9b, 0x68, 0xd0, 0x29, 0xa9, 0xf4, 0xf3, 0x73,
0xcb, 0x97, 0x37, 0x54, 0x11, 0x4d, 0x9f, 0x10, 0xa8, 0x9a, 0xc8, 0xed, 0x24, 0x91, 0xf1, 0x8a,
0x10, 0x87, 0x53, 0x72, 0xab, 0x27, 0x7c, 0x1d, 0x36, 0x1e, 0xa4, 0x96, 0x28, 0xf2, 0x94, 0x5c,
0x36, 0xf8, 0x4b, 0x61, 0x1a, 0xd8, 0xdf, 0xc5, 0x19, 0x33, 0x5e, 0x09, 0xe2, 0xd9, 0xb8, 0xb3,
0xc9, 0xd4, 0x1e, 0xb2, 0x04, 0x7f, 0x56, 0x94, 0x61, 0xa0, 0x2a, 0x1f, 0x35, 0x32, 0xe9, 0x93,
0x13, 0x44, 0xe1, 0x2f, 0x83, 0x7c, 0x4b, 0x14, 0x55, 0x6b, 0x6d, 0x35, 0xd8, 0x5f, 0xae, 0xc7,
0x5f, 0x27, 0x4f, 0xa0, 0x7d, 0x83, 0x2f, 0x38, 0xe3, 0x1a, 0x67, 0xb9, 0x8e, 0x09, 0x3a, 0x4e,
0x34, 0x8b, 0x07, 0xcd, 0x6d, 0x6b, 0x17, 0xe0, 0x41, 0x96, 0x80, 0x87, 0x5a, 0x2d, 0x1e, 0x1b,
0x0c, 0xe8, 0xaf, 0x34, 0xa0, 0xda, 0x5a, 0x3a, 0x78, 0x8c, 0x03, 0x9f, 0x87, 0x70, 0x4d, 0x74,
0xb5, 0xdc, 0x6a, 0xf0, 0xee, 0xe1, 0x4c, 0x3c, 0xde, 0x95, 0x31, 0x5c, 0x73, 0xb4, 0x14, 0xed,
0xe1, 0xcb, 0xc0, 0x59, 0xc6, 0x4a, 0xa2, 0x99, 0x2f, 0x80, 0x8e, 0x12, 0x5d, 0x3c, 0xb3, 0x68,
0x36, 0xee, 0x26, 0x6f, 0xc3, 0xaf, 0xf1, 0xf1, 0xa3, 0xfa, 0x3d, 0x43, 0x87, 0xdf, 0xca, 0xb3,
0x70, 0x88, 0x03, 0xf7, 0x13, 0xc5, 0x3f, 0xf5, 0x17, 0x13, 0x6d, 0xad, 0x94, 0xcb, 0x70, 0xa7,
0x4c, 0x87, 0xfe, 0x64, 0xad, 0x45, 0xcd, 0xa3, 0x9a, 0x63, 0x38, 0xf3, 0xe9, 0x7b, 0xa8, 0x20,
0x6a, 0x7e, 0x01, 0x74, 0x84, 0x68, 0x7f, 0x8d, 0x8b, 0x12, 0x7d, 0x42, 0x18, 0x4c, 0x5f, 0x44,
0xc2, 0x18, 0x1e, 0x3e, 0xaa, 0xde, 0x9d, 0x5f, 0xe1, 0xf6, 0xa1, 0x54, 0xe8, 0x38, 0x38, 0x93,
0x68, 0x67, 0x06, 0x51, 0xe2, 0x2e, 0x1b, 0x19, 0xfa, 0xbe, 0x49, 0xc2, 0xcd, 0xed, 0xdb, 0x2c,
0xbc, 0x37, 0xb6, 0xc4, 0xe1, 0xc1, 0x77, 0xe5, 0xa8, 0x71, 0xb6, 0x07, 0x67, 0xe6, 0xbd, 0x00,
0x12, 0x88, 0x24, 0x65, 0x44, 0x87, 0x8f, 0x4f, 0xb3, 0xc7, 0xad, 0x94, 0x20, 0x5c, 0x09, 0x5e,
0x87, 0xcb, 0x01, 0x01, 0xa3, 0xea, 0x8e, 0xdf, 0x84, 0xeb, 0x25, 0x09, 0x88, 0xb7, 0x95, 0x61,
0xab, 0x9d, 0x35, 0xcc, 0xc5, 0x3b, 0x70, 0x35, 0x26, 0xca, 0xc2, 0xd3, 0x19, 0x16, 0x82, 0xbb,
0xbc, 0x56, 0x55, 0x4e, 0x0a, 0x94, 0x12, 0x95, 0x70, 0xfc, 0x6b, 0x63, 0x36, 0x83, 0x08, 0x3b,
0x40, 0x74, 0xb0, 0xf2, 0x75, 0x05, 0x7a, 0x92, 0x02, 0x70, 0x71, 0x85, 0x1f, 0xda, 0x7c, 0x7d,
0x47, 0xd5, 0x11, 0x11, 0x82, 0xee, 0x82, 0x38, 0x56, 0x3c, 0x3a, 0xd6, 0x07, 0x5b, 0x8e, 0xad,
0xf4, 0xc3, 0xed, 0xdc, 0x58, 0x54, 0xa8, 0xed, 0xc0, 0x19, 0x45, 0xcf, 0x42, 0xc6, 0xde, 0x47,
0x6c, 0xe0, 0xb5, 0x28, 0x39, 0xc2, 0x05, 0x66, 0xed, 0x2a, 0xb4, 0x2d, 0xf9, 0x04, 0xe7, 0x17,
0x2c, 0x18, 0xd2, 0x39, 0x56, 0xab, 0xc6, 0x0f, 0xad, 0xab, 0xfc, 0x86, 0xae, 0xc5, 0x7b, 0x17,
0x18, 0x62, 0x4a, 0x4d, 0xc1, 0x9d, 0xf2, 0x74, 0x1c, 0x76, 0xb4, 0x05, 0xaf, 0x5d, 0xfe, 0xc4,
0x4f, 0x06, 0x86, 0x15, 0xf0, 0xac, 0x4a, 0xb9, 0xf0, 0xba, 0xd6, 0x1f, 0x2d, 0xf3, 0xbc, 0xd0,
0x34, 0x77, 0xee, 0xb0, 0xbc, 0xbc, 0xd0, 0xae, 0xd1, 0xe0, 0xca, 0xa6, 0xcd, 0xe8, 0x88, 0x8e,
0x46, 0x4b, 0x68, 0x10, 0xae, 0x69, 0x7d, 0x70, 0x70, 0xaa, 0x2d, 0xf6, 0x12, 0x19, 0x26, 0x75,
0x04, 0xe5, 0xf1, 0xec, 0x4a, 0x54, 0x36, 0x30, 0xa5, 0xad, 0xc1, 0xb9, 0x45, 0xf3, 0xd1, 0xb4,
0x70, 0x21, 0x1a, 0x59, 0xf5, 0x33, 0xdd, 0x71, 0x5a, 0x22, 0x41, 0xdd, 0x14, 0x1b, 0x74, 0x27,
0x2d, 0x45, 0x89, 0xca, 0x16, 0xb9, 0x44, 0xbb, 0x27, 0x7d, 0xd6, 0xe5, 0x70, 0xd7, 0xec, 0xe3,
0x90, 0xee, 0xc4, 0xcf, 0xf0, 0xa3, 0x83, 0x1c, 0xf5, 0x6c, 0x7f, 0x56, 0x0d, 0xe2, 0x98, 0xe0,
0x07, 0xd1, 0x63, 0x98, 0x2c, 0x68, 0x37, 0x51, 0x41, 0x81, 0xa3, 0x02, 0xc6, 0x64, 0x7f, 0x34,
0x4f, 0x55, 0xa0, 0x91, 0xad, 0x67, 0x59, 0x3f, 0x8d, 0xa8, 0x71, 0x44, 0x2d, 0x6a, 0x7b, 0x18,
0x75, 0x1a, 0x88, 0x5e, 0x3d, 0x51, 0xf6, 0xc4, 0x41, 0xbc, 0x3e, 0xbc, 0x4f, 0x8a, 0xf2, 0x1d,
0xed, 0x61, 0x12, 0x56, 0xe3, 0x12, 0x43, 0x7e, 0x66, 0x9b, 0xa8, 0x36, 0x51, 0x6a, 0x87, 0x61,
0x8d, 0xdc, 0x13, 0x75, 0x89, 0xbf, 0x9b, 0xd2, 0x03, 0x91, 0xc7, 0x35, 0xbc, 0xcf, 0x72, 0xc6,
0x07, 0x31, 0x24, 0x8d, 0x37, 0x6e, 0xae, 0x93, 0x12, 0xe6, 0xb4, 0x40, 0x74, 0xab, 0x14, 0xe8,
0x62, 0x8b, 0xa8, 0x4e, 0x51, 0x33, 0xd4, 0x68, 0xca, 0x0c, 0x47, 0x53, 0x56, 0x24, 0xba, 0xf8,
0xba, 0x73, 0x64, 0x4c, 0x54, 0xb7, 0x7a, 0x0a, 0xcc, 0xd9, 0x31, 0xc8, 0x71, 0x52, 0x41, 0x37,
0x46, 0xe7, 0x0d, 0x7f, 0x30, 0x40, 0x58, 0xf3, 0xae, 0xb5, 0x20, 0x95, 0x94, 0x1a, 0xa6, 0x39,
0xa2, 0x47, 0x1f, 0x83, 0x5b, 0x2a, 0x07, 0xf4, 0xf0, 0xb0, 0xa8, 0x1b, 0xa2, 0xdc, 0x5c, 0x70,
0x3e, 0x67, 0x3b, 0xde, 0x71, 0x50, 0x60, 0x0e, 0xab, 0x39, 0x37, 0x01, 0x3d, 0xae, 0x2e, 0x43,
0x63, 0x4f, 0x7d, 0xb7, 0xd4, 0x53, 0xd1, 0x53, 0x20, 0xc0, 0xe0, 0xac, 0x46, 0xaa, 0x44, 0x52,
0xc8, 0xd9, 0x96, 0x1b, 0x56, 0x84, 0xa4, 0xa8, 0x95, 0x47, 0x0c, 0x73, 0xdc, 0xd1, 0xbb, 0x37,
0x19, 0x03, 0x2a, 0x25, 0xfa, 0x79, 0x68, 0x54, 0x1e, 0x6e, 0x68, 0x2d, 0x48, 0x83, 0xb7, 0xbd,
0x02, 0xa1, 0x44, 0xfa, 0x60, 0xa2, 0x3d, 0x1f, 0x32, 0xac, 0xad, 0x30, 0x03, 0x03, 0x6f, 0xba,
0x5a, 0x78, 0x07, 0xd4, 0x8e, 0xe8, 0x3d, 0x90, 0x8d, 0xb2, 0x8f, 0xbc, 0x51, 0xea, 0xed, 0x5d,
0x62, 0x01, 0x5a, 0xbf, 0xfe, 0x63, 0x9b, 0x64, 0x67, 0x95, 0xb1, 0x36, 0x78, 0x05, 0xee, 0xc7,
0x6e, 0xc0, 0x43, 0xbe, 0x3d, 0xaa, 0xd9, 0x1e, 0x68, 0x2f, 0xca, 0xc4, 0x7c, 0x3b, 0x5b, 0x84,
0x13, 0xe9, 0x9e, 0x16, 0x32, 0x30, 0x73, 0x1e, 0x83, 0x2f, 0x15, 0xeb, 0xf1, 0x68, 0x96, 0xbb,
0x45, 0xcd, 0x83, 0x1d, 0xb1, 0xa8, 0x0b, 0x5d, 0x87, 0xbd, 0x1e, 0x1e, 0x1d, 0x96, 0xbf, 0x48,
0x20, 0x49, 0x92, 0x8b, 0xd3, 0x07, 0x82, 0x8d, 0x75, 0x5f, 0x7d, 0xd8, 0x5a, 0xdc, 0x8b, 0x1e,
0x81, 0xbd, 0x3d, 0x1b, 0x97, 0x8b, 0xb2, 0xb1, 0x98, 0x21, 0x11, 0x44, 0xc9, 0xcf, 0xff, 0xef,
0x61, 0x44, 0xe9, 0x8b, 0x15, 0x76, 0xe8, 0x2c, 0x36, 0xe0, 0x91, 0xe7, 0xac, 0xa1, 0x9a, 0x7b,
0x5b, 0xbe, 0x44, 0x5d, 0xa0, 0x06, 0x3a, 0x89, 0xc4, 0xac, 0x57, 0x2a, 0x3d, 0xc7, 0x6c, 0x06,
0x6e, 0x04, 0xcf, 0x54, 0xa2, 0x9e, 0x1f, 0x82, 0x56, 0xe3, 0x7e, 0x7a, 0x22, 0x3a, 0x0b, 0xf5,
0xf0, 0xb7, 0x91, 0x0f, 0x46, 0x12, 0x7d, 0xfd, 0xb2, 0xb6, 0xe5, 0x5f, 0x29, 0xac, 0xe4, 0x89,
0x5c, 0xdb, 0xb7, 0x07, 0x7f, 0xe4, 0x64, 0xe0, 0xfb, 0xd5, 0xfe, 0xe0, 0x0c, 0x13, 0x9f, 0x9b,
0xee, 0xaf, 0x6c, 0x6f, 0x36, 0x78, 0x08, 0xb6, 0xf2, 0x9b, 0xfb, 0x57, 0x2d, 0x45, 0x84, 0x83,
0x62, 0x30, 0x8a, 0x68, 0xfb, 0x78, 0x8f, 0xf2, 0x8d, 0xfc, 0xd8, 0x88, 0x75, 0xb0, 0x47, 0xd3,
0x86, 0x50, 0x11, 0x62, 0xe4, 0x0c, 0xb7, 0x09, 0x6d, 0xd8, 0x84, 0xb7, 0xa6, 0xbf, 0xaf, 0x9d,
0xee, 0xd4, 0xb8, 0x43, 0x26, 0xdb, 0x38, 0xd1, 0x97, 0x93, 0x0c, 0xa5, 0x72, 0xf3, 0x05, 0x8d,
0xe6, 0x2a, 0x43, 0xde, 0xf8, 0xff, 0xbd, 0x6e, 0xfd, 0x13, 0xfa, 0x1b, 0x77, 0xe6, 0x75, 0xa6,
0x04, 0x24, 0xd2, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x03, 0x9b, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xdd, 0x56, 0x7d, 0x68, 0x96,
0x55, 0x14, 0xff, 0xdd, 0x67, 0xef, 0x98, 0x31, 0x9d, 0xc3, 0x34, 0x5a, 0x35, 0x44, 0xdb, 0x2c,
0x82, 0x2c, 0x6b, 0xad, 0x68, 0x90, 0xa1, 0x61, 0x1f, 0x92, 0x85, 0xc5, 0xb2, 0x16, 0x23, 0x89,
0x58, 0x52, 0x82, 0xc9, 0xc4, 0xc2, 0x60, 0xae, 0x55, 0xb4, 0x9a, 0x85, 0x06, 0x11, 0x7d, 0x81,
0xc2, 0xb2, 0x2c, 0xa6, 0xa0, 0x2c, 0x58, 0x4a, 0xda, 0x08, 0x19, 0xa9, 0x49, 0x86, 0x66, 0xac,
0x56, 0x7e, 0x6c, 0x7e, 0xae, 0x35, 0xd7, 0xf6, 0x3e, 0xf7, 0x3d, 0xe7, 0x77, 0xfa, 0xe3, 0xfd,
0xd8, 0x3b, 0xd9, 0xc7, 0xab, 0x82, 0x7f, 0x74, 0xe1, 0xf0, 0x3c, 0xf7, 0xb9, 0xe7, 0x9e, 0x1f,
0xbf, 0xdf, 0x39, 0xe7, 0x3e, 0xd7, 0x99, 0x19, 0x2e, 0xc7, 0x08, 0x70, 0x99, 0x46, 0x64, 0xc8,
0xec, 0xa3, 0xaa, 0xec, 0x81, 0x93, 0xe3, 0x77, 0x00, 0x41, 0x1b, 0x18, 0xac, 0xbd, 0xa2, 0xa6,
0xfe, 0xd8, 0xc5, 0x06, 0xfe, 0xbb, 0xaa, 0x6a, 0xe2, 0xd9, 0x9c, 0x9c, 0x68, 0xd1, 0xba, 0x75,
0x21, 0x00, 0xb8, 0x74, 0xe9, 0xfa, 0xeb, 0xaa, 0xeb, 0x1c, 0xf0, 0x6a, 0x62, 0x1a, 0x03, 0xdc,
0x97, 0xa4, 0x5b, 0x93, 0x5b, 0xf3, 0xf6, 0xfe, 0x8c, 0xa2, 0xd7, 0xd6, 0x06, 0x27, 0xbb, 0xda,
0x9f, 0x00, 0xb5, 0xca, 0x54, 0xcb, 0x8c, 0xfa, 0x17, 0xc9, 0x65, 0xd7, 0xae, 0x6f, 0xda, 0x96,
0x02, 0xea, 0x7f, 0x63, 0x79, 0x89, 0x63, 0xb0, 0x3b, 0xc9, 0xd2, 0xc8, 0x94, 0x41, 0xd9, 0x18,
0xd5, 0x81, 0x25, 0x93, 0xeb, 0x3f, 0x3d, 0x37, 0x2c, 0x40, 0x79, 0x79, 0xd6, 0xa9, 0x09, 0x41,
0x05, 0xc1, 0x55, 0xa6, 0x9c, 0x61, 0x4a, 0x90, 0x84, 0x29, 0x9b, 0x48, 0x6b, 0x98, 0xba, 0x69,
0xeb, 0xee, 0x41, 0xe9, 0xcc, 0x5d, 0x65, 0xaa, 0x07, 0x8d, 0x9c, 0x49, 0x4d, 0x80, 0x68, 0x0a,
0xac, 0xc2, 0xa9, 0xdd, 0x75, 0x66, 0x69, 0xe5, 0xa2, 0xc9, 0xef, 0x6f, 0xd8, 0x93, 0xda, 0xe3,
0x9c, 0xeb, 0x5c, 0xfc, 0xf8, 0x33, 0x6e, 0x1c, 0x57, 0x31, 0x8c, 0x5d, 0x9f, 0xdc, 0x03, 0xea,
0x11, 0x11, 0x79, 0x6e, 0xda, 0xe6, 0x96, 0x96, 0x94, 0xeb, 0xf9, 0x55, 0xf7, 0xcf, 0x8a, 0x25,
0x73, 0x8c, 0xfa, 0x92, 0x51, 0xe7, 0x53, 0xe9, 0xce, 0x03, 0x8c, 0x19, 0xe5, 0x95, 0xab, 0x3f,
0xfb, 0xfa, 0xdd, 0xa3, 0x8b, 0x16, 0x14, 0x20, 0x70, 0xeb, 0x41, 0xde, 0x17, 0x5f, 0xd7, 0xa4,
0xdf, 0xc7, 0x1a, 0xcb, 0xae, 0x2e, 0x6a, 0x6e, 0xee, 0x4d, 0x8f, 0xeb, 0x46, 0x2a, 0xef, 0xd3,
0xcf, 0x57, 0x14, 0x1b, 0xad, 0x81, 0xca, 0x05, 0x46, 0x1d, 0xc2, 0x90, 0xc2, 0x1d, 0x30, 0xbb,
0xd5, 0x54, 0xae, 0x34, 0x26, 0x64, 0x12, 0x76, 0x1a, 0x74, 0x71, 0x51, 0xf3, 0xae, 0x96, 0xe1,
0xe2, 0xb9, 0xb1, 0xfa, 0xe8, 0x78, 0xc5, 0xa3, 0x95, 0x54, 0xae, 0x35, 0x32, 0x3f, 0x0e, 0xa6,
0x83, 0xf9, 0x4b, 0x49, 0xac, 0x87, 0xb3, 0xe0, 0xe6, 0x4d, 0xff, 0xb6, 0xf5, 0xc8, 0x48, 0x71,
0x5c, 0x26, 0x0d, 0xdb, 0xfe, 0xd8, 0x43, 0xd7, 0x39, 0xf1, 0x9f, 0x40, 0x78, 0xff, 0x50, 0x10,
0x85, 0x91, 0x7b, 0x23, 0x8c, 0x3d, 0x58, 0xf4, 0xfd, 0xbe, 0xd3, 0x97, 0xdc, 0xb0, 0x45, 0x4d,
0xdf, 0x1c, 0x67, 0x7f, 0xf8, 0x87, 0x46, 0xa3, 0x90, 0x68, 0x14, 0x32, 0x90, 0x7c, 0x86, 0x90,
0x81, 0x70, 0xcf, 0x58, 0x20, 0x19, 0x33, 0xfa, 0x75, 0xf6, 0x9d, 0xab, 0x8d, 0xac, 0x49, 0x32,
0xe1, 0x50, 0x46, 0x30, 0xb5, 0x27, 0x67, 0xfd, 0x72, 0xf8, 0x8b, 0x4b, 0x02, 0x3a, 0x58, 0x36,
0xeb, 0x11, 0x8a, 0x6d, 0x36, 0xd2, 0xa5, 0xf2, 0xa3, 0xf4, 0x46, 0x06, 0x24, 0x23, 0x34, 0x80,
0x66, 0xe7, 0x5c, 0xe0, 0x4a, 0x4a, 0x0f, 0xfd, 0xfe, 0xdb, 0x45, 0x01, 0x1d, 0x28, 0x99, 0x79,
0x23, 0x55, 0xda, 0x8c, 0xcc, 0x4b, 0x55, 0x9c, 0x19, 0x68, 0x56, 0x0e, 0x5a, 0x44, 0x61, 0x8d,
0xa4, 0x39, 0x9a, 0xc1, 0xcc, 0x0e, 0xd0, 0x22, 0xa5, 0xf7, 0x76, 0x74, 0x44, 0xc7, 0x3e, 0xeb,
0xd2, 0x46, 0x5b, 0x71, 0x71, 0x5e, 0x76, 0x8e, 0x6d, 0x31, 0xb5, 0x3c, 0x1a, 0x60, 0x71, 0x00,
0x90, 0xb6, 0xf1, 0xee, 0xf6, 0x3f, 0xbf, 0x02, 0x80, 0x5d, 0xd3, 0x0a, 0x8b, 0x09, 0xab, 0x25,
0x0d, 0x66, 0x76, 0x33, 0xa1, 0xd5, 0x00, 0x5e, 0xbf, 0xa0, 0x62, 0x08, 0xb2, 0x58, 0x1b, 0x8b,
0xe9, 0x0d, 0x5e, 0x15, 0x5e, 0x05, 0x5e, 0x04, 0x5e, 0xa4, 0xbb, 0x0f, 0xd1, 0x65, 0x49, 0x9f,
0xd9, 0x1d, 0x47, 0x5f, 0x0b, 0x45, 0x1a, 0xbd, 0x2a, 0x42, 0x51, 0xf8, 0x98, 0xac, 0x6c, 0x9a,
0x32, 0xa5, 0x20, 0x63, 0xa0, 0xd6, 0xe2, 0xa9, 0x37, 0x85, 0x22, 0x2f, 0x7a, 0x51, 0x24, 0x2d,
0x54, 0x85, 0x17, 0x56, 0xcf, 0x6b, 0x3f, 0x71, 0x2a, 0xdd, 0xd7, 0xc6, 0x4d, 0x78, 0xd6, 0x8b,
0x1c, 0xf2, 0x2a, 0xf0, 0xaa, 0xe3, 0xcd, 0xf8, 0x66, 0xc6, 0x39, 0xda, 0x39, 0xbd, 0x70, 0x3b,
0x69, 0x73, 0x53, 0x72, 0xc5, 0x73, 0xf0, 0xdd, 0x03, 0xc7, 0x4e, 0xcc, 0x19, 0x2e, 0xc8, 0xa6,
0x49, 0x93, 0xca, 0xcc, 0xb1, 0x95, 0x66, 0xce, 0xcc, 0x48, 0xd3, 0x3b, 0x9e, 0xee, 0xf9, 0x77,
0xdf, 0xa8, 0x8c, 0xb6, 0x17, 0x5e, 0xb3, 0xd0, 0xc7, 0x64, 0xae, 0x17, 0x41, 0x28, 0x29, 0xc9,
0x10, 0x53, 0x59, 0x39, 0x92, 0xcc, 0xe5, 0xdd, 0xdd, 0x3f, 0x78, 0xd1, 0x0f, 0x13, 0xec, 0x03,
0x2f, 0xf6, 0xde, 0xa8, 0xd2, 0xd5, 0x3a, 0x17, 0x78, 0x6a, 0x43, 0xba, 0x64, 0x09, 0xdb, 0xf9,
0x70, 0xd7, 0x99, 0x1f, 0x47, 0xed, 0xfc, 0x48, 0xdf, 0xcb, 0x5e, 0xb4, 0x33, 0x8c, 0xfb, 0xdf,
0xf3, 0x41, 0x4e, 0xce, 0xc2, 0x11, 0x81, 0x6a, 0xcc, 0x18, 0x8a, 0x56, 0x7b, 0xd5, 0x7e, 0xaf,
0x89, 0xdc, 0x88, 0xc2, 0x53, 0xeb, 0xc7, 0x6a, 0xea, 0x8a, 0xb3, 0xd6, 0x1b, 0x6a, 0xec, 0x85,
0x41, 0x05, 0x74, 0xc5, 0x98, 0x39, 0xfa, 0x3c, 0x3f, 0xff, 0x76, 0x38, 0x6e, 0xa5, 0x59, 0x01,
0x69, 0x3f, 0x57, 0xf6, 0xf6, 0xdd, 0x92, 0xe9, 0x2f, 0x7c, 0x8d, 0x73, 0xdb, 0x00, 0xcc, 0x07,
0x00, 0x07, 0xdc, 0xb6, 0xdc, 0xec, 0xa7, 0x11, 0xab, 0xee, 0xa9, 0x9e, 0x9e, 0xbd, 0xfd, 0xa1,
0x94, 0x86, 0xa2, 0xfb, 0x3d, 0xf5, 0x9d, 0x0b, 0xb9, 0x2b, 0x18, 0x50, 0x97, 0x78, 0xed, 0x32,
0x20, 0x77, 0x70, 0x21, 0x5e, 0x51, 0xc3, 0xda, 0x06, 0x20, 0x77, 0x35, 0x10, 0x19, 0xcd, 0x67,
0x38, 0x6b, 0x00, 0x96, 0xbe, 0x05, 0x4c, 0x4c, 0xff, 0xe6, 0xfe, 0x77, 0xf7, 0xba, 0xff, 0x00,
0xa8, 0x6c, 0x30, 0x24, 0x92, 0xb0, 0x6e, 0x38, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE cancel_xpm[1] = {{ png, sizeof( png ), "cancel_xpm" }};

View File

@ -1,91 +0,0 @@
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x04, 0xa7, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xcd, 0x96, 0x7d, 0x4c, 0x53,
0x57, 0x18, 0xc6, 0xdf, 0xb5, 0x94, 0x02, 0x85, 0x5a, 0x29, 0xc3, 0xa0, 0x03, 0x19, 0x0e, 0xcd,
0xb6, 0x2c, 0x71, 0xd9, 0x08, 0x99, 0x1a, 0xdd, 0x26, 0x26, 0x8e, 0x08, 0x7e, 0x54, 0x51, 0x60,
0x80, 0x02, 0x93, 0xa1, 0x7c, 0xa8, 0x31, 0x0e, 0x47, 0x81, 0x4b, 0x01, 0xc1, 0x62, 0xf9, 0x10,
0x10, 0x71, 0x82, 0x8a, 0x20, 0xca, 0x40, 0xcd, 0x96, 0xb0, 0x84, 0x3f, 0x46, 0xa6, 0x10, 0x05,
0x82, 0x43, 0x34, 0x11, 0x94, 0xae, 0x56, 0x14, 0x9c, 0x13, 0xa6, 0x2e, 0x6a, 0xb6, 0x44, 0x9e,
0xbd, 0x17, 0x90, 0x58, 0x45, 0x21, 0x24, 0xfb, 0xf8, 0xe3, 0x69, 0x6e, 0xef, 0x79, 0xde, 0xe7,
0x77, 0xda, 0xf3, 0x9e, 0x73, 0x2f, 0x01, 0xa0, 0x7f, 0x43, 0xf4, 0x9f, 0x82, 0x4e, 0x13, 0xb9,
0x9e, 0xf5, 0xf1, 0x69, 0x38, 0x29, 0x95, 0xae, 0x9b, 0x68, 0xd0, 0x29, 0xa9, 0xf4, 0xf3, 0x73,
0xcb, 0x97, 0x37, 0x54, 0x11, 0x4d, 0x9f, 0x10, 0xa8, 0x9a, 0xc8, 0xed, 0x24, 0x91, 0xf1, 0x8a,
0x10, 0x87, 0x53, 0x72, 0xab, 0x27, 0x7c, 0x1d, 0x36, 0x1e, 0xa4, 0x96, 0x28, 0xf2, 0x94, 0x5c,
0x36, 0xf8, 0x4b, 0x61, 0x1a, 0xd8, 0xdf, 0xc5, 0x19, 0x33, 0x5e, 0x09, 0xe2, 0xd9, 0xb8, 0xb3,
0xc9, 0xd4, 0x1e, 0xb2, 0x04, 0x7f, 0x56, 0x94, 0x61, 0xa0, 0x2a, 0x1f, 0x35, 0x32, 0xe9, 0x93,
0x13, 0x44, 0xe1, 0x2f, 0x83, 0x7c, 0x4b, 0x14, 0x55, 0x6b, 0x6d, 0x35, 0xd8, 0x5f, 0xae, 0xc7,
0x5f, 0x27, 0x4f, 0xa0, 0x7d, 0x83, 0x2f, 0x38, 0xe3, 0x1a, 0x67, 0xb9, 0x8e, 0x09, 0x3a, 0x4e,
0x34, 0x8b, 0x07, 0xcd, 0x6d, 0x6b, 0x17, 0xe0, 0x41, 0x96, 0x80, 0x87, 0x5a, 0x2d, 0x1e, 0x1b,
0x0c, 0xe8, 0xaf, 0x34, 0xa0, 0xda, 0x5a, 0x3a, 0x78, 0x8c, 0x03, 0x9f, 0x87, 0x70, 0x4d, 0x74,
0xb5, 0xdc, 0x6a, 0xf0, 0xee, 0xe1, 0x4c, 0x3c, 0xde, 0x95, 0x31, 0x5c, 0x73, 0xb4, 0x14, 0xed,
0xe1, 0xcb, 0xc0, 0x59, 0xc6, 0x4a, 0xa2, 0x99, 0x2f, 0x80, 0x8e, 0x12, 0x5d, 0x3c, 0xb3, 0x68,
0x36, 0xee, 0x26, 0x6f, 0xc3, 0xaf, 0xf1, 0xf1, 0xa3, 0xfa, 0x3d, 0x43, 0x87, 0xdf, 0xca, 0xb3,
0x70, 0x88, 0x03, 0xf7, 0x13, 0xc5, 0x3f, 0xf5, 0x17, 0x13, 0x6d, 0xad, 0x94, 0xcb, 0x70, 0xa7,
0x4c, 0x87, 0xfe, 0x64, 0xad, 0x45, 0xcd, 0xa3, 0x9a, 0x63, 0x38, 0xf3, 0xe9, 0x7b, 0xa8, 0x20,
0x6a, 0x7e, 0x01, 0x74, 0x84, 0x68, 0x7f, 0x8d, 0x8b, 0x12, 0x7d, 0x42, 0x18, 0x4c, 0x5f, 0x44,
0xc2, 0x18, 0x1e, 0x3e, 0xaa, 0xde, 0x9d, 0x5f, 0xe1, 0xf6, 0xa1, 0x54, 0xe8, 0x38, 0x38, 0x93,
0x68, 0x67, 0x06, 0x51, 0xe2, 0x2e, 0x1b, 0x19, 0xfa, 0xbe, 0x49, 0xc2, 0xcd, 0xed, 0xdb, 0x2c,
0xbc, 0x37, 0xb6, 0xc4, 0xe1, 0xc1, 0x77, 0xe5, 0xa8, 0x71, 0xb6, 0x07, 0x67, 0xe6, 0xbd, 0x00,
0x12, 0x88, 0x24, 0x65, 0x44, 0x87, 0x8f, 0x4f, 0xb3, 0xc7, 0xad, 0x94, 0x20, 0x5c, 0x09, 0x5e,
0x87, 0xcb, 0x01, 0x01, 0xa3, 0xea, 0x8e, 0xdf, 0x84, 0xeb, 0x25, 0x09, 0x88, 0xb7, 0x95, 0x61,
0xab, 0x9d, 0x35, 0xcc, 0xc5, 0x3b, 0x70, 0x35, 0x26, 0xca, 0xc2, 0xd3, 0x19, 0x16, 0x82, 0xbb,
0xbc, 0x56, 0x55, 0x4e, 0x0a, 0x94, 0x12, 0x95, 0x70, 0xfc, 0x6b, 0x63, 0x36, 0x83, 0x08, 0x3b,
0x40, 0x74, 0xb0, 0xf2, 0x75, 0x05, 0x7a, 0x92, 0x02, 0x70, 0x71, 0x85, 0x1f, 0xda, 0x7c, 0x7d,
0x47, 0xd5, 0x11, 0x11, 0x82, 0xee, 0x82, 0x38, 0x56, 0x3c, 0x3a, 0xd6, 0x07, 0x5b, 0x8e, 0xad,
0xf4, 0xc3, 0xed, 0xdc, 0x58, 0x54, 0xa8, 0xed, 0xc0, 0x19, 0x45, 0xcf, 0x42, 0xc6, 0xde, 0x47,
0x6c, 0xe0, 0xb5, 0x28, 0x39, 0xc2, 0x05, 0x66, 0xed, 0x2a, 0xb4, 0x2d, 0xf9, 0x04, 0xe7, 0x17,
0x2c, 0x18, 0xd2, 0x39, 0x56, 0xab, 0xc6, 0x0f, 0xad, 0xab, 0xfc, 0x86, 0xae, 0xc5, 0x7b, 0x17,
0x18, 0x62, 0x4a, 0x4d, 0xc1, 0x9d, 0xf2, 0x74, 0x1c, 0x76, 0xb4, 0x05, 0xaf, 0x5d, 0xfe, 0xc4,
0x4f, 0x06, 0x86, 0x15, 0xf0, 0xac, 0x4a, 0xb9, 0xf0, 0xba, 0xd6, 0x1f, 0x2d, 0xf3, 0xbc, 0xd0,
0x34, 0x77, 0xee, 0xb0, 0xbc, 0xbc, 0xd0, 0xae, 0xd1, 0xe0, 0xca, 0xa6, 0xcd, 0xe8, 0x88, 0x8e,
0x46, 0x4b, 0x68, 0x10, 0xae, 0x69, 0x7d, 0x70, 0x70, 0xaa, 0x2d, 0xf6, 0x12, 0x19, 0x26, 0x75,
0x04, 0xe5, 0xf1, 0xec, 0x4a, 0x54, 0x36, 0x30, 0xa5, 0xad, 0xc1, 0xb9, 0x45, 0xf3, 0xd1, 0xb4,
0x70, 0x21, 0x1a, 0x59, 0xf5, 0x33, 0xdd, 0x71, 0x5a, 0x22, 0x41, 0xdd, 0x14, 0x1b, 0x74, 0x27,
0x2d, 0x45, 0x89, 0xca, 0x16, 0xb9, 0x44, 0xbb, 0x27, 0x7d, 0xd6, 0xe5, 0x70, 0xd7, 0xec, 0xe3,
0x90, 0xee, 0xc4, 0xcf, 0xf0, 0xa3, 0x83, 0x1c, 0xf5, 0x6c, 0x7f, 0x56, 0x0d, 0xe2, 0x98, 0xe0,
0x07, 0xd1, 0x63, 0x98, 0x2c, 0x68, 0x37, 0x51, 0x41, 0x81, 0xa3, 0x02, 0xc6, 0x64, 0x7f, 0x34,
0x4f, 0x55, 0xa0, 0x91, 0xad, 0x67, 0x59, 0x3f, 0x8d, 0xa8, 0x71, 0x44, 0x2d, 0x6a, 0x7b, 0x18,
0x75, 0x1a, 0x88, 0x5e, 0x3d, 0x51, 0xf6, 0xc4, 0x41, 0xbc, 0x3e, 0xbc, 0x4f, 0x8a, 0xf2, 0x1d,
0xed, 0x61, 0x12, 0x56, 0xe3, 0x12, 0x43, 0x7e, 0x66, 0x9b, 0xa8, 0x36, 0x51, 0x6a, 0x87, 0x61,
0x8d, 0xdc, 0x13, 0x75, 0x89, 0xbf, 0x9b, 0xd2, 0x03, 0x91, 0xc7, 0x35, 0xbc, 0xcf, 0x72, 0xc6,
0x07, 0x31, 0x24, 0x8d, 0x37, 0x6e, 0xae, 0x93, 0x12, 0xe6, 0xb4, 0x40, 0x74, 0xab, 0x14, 0xe8,
0x62, 0x8b, 0xa8, 0x4e, 0x51, 0x33, 0xd4, 0x68, 0xca, 0x0c, 0x47, 0x53, 0x56, 0x24, 0xba, 0xf8,
0xba, 0x73, 0x64, 0x4c, 0x54, 0xb7, 0x7a, 0x0a, 0xcc, 0xd9, 0x31, 0xc8, 0x71, 0x52, 0x41, 0x37,
0x46, 0xe7, 0x0d, 0x7f, 0x30, 0x40, 0x58, 0xf3, 0xae, 0xb5, 0x20, 0x95, 0x94, 0x1a, 0xa6, 0x39,
0xa2, 0x47, 0x1f, 0x83, 0x5b, 0x2a, 0x07, 0xf4, 0xf0, 0xb0, 0xa8, 0x1b, 0xa2, 0xdc, 0x5c, 0x70,
0x3e, 0x67, 0x3b, 0xde, 0x71, 0x50, 0x60, 0x0e, 0xab, 0x39, 0x37, 0x01, 0x3d, 0xae, 0x2e, 0x43,
0x63, 0x4f, 0x7d, 0xb7, 0xd4, 0x53, 0xd1, 0x53, 0x20, 0xc0, 0xe0, 0xac, 0x46, 0xaa, 0x44, 0x52,
0xc8, 0xd9, 0x96, 0x1b, 0x56, 0x84, 0xa4, 0xa8, 0x95, 0x47, 0x0c, 0x73, 0xdc, 0xd1, 0xbb, 0x37,
0x19, 0x03, 0x2a, 0x25, 0xfa, 0x79, 0x68, 0x54, 0x1e, 0x6e, 0x68, 0x2d, 0x48, 0x83, 0xb7, 0xbd,
0x02, 0xa1, 0x44, 0xfa, 0x60, 0xa2, 0x3d, 0x1f, 0x32, 0xac, 0xad, 0x30, 0x03, 0x03, 0x6f, 0xba,
0x5a, 0x78, 0x07, 0xd4, 0x8e, 0xe8, 0x3d, 0x90, 0x8d, 0xb2, 0x8f, 0xbc, 0x51, 0xea, 0xed, 0x5d,
0x62, 0x01, 0x5a, 0xbf, 0xfe, 0x63, 0x9b, 0x64, 0x67, 0x95, 0xb1, 0x36, 0x78, 0x05, 0xee, 0xc7,
0x6e, 0xc0, 0x43, 0xbe, 0x3d, 0xaa, 0xd9, 0x1e, 0x68, 0x2f, 0xca, 0xc4, 0x7c, 0x3b, 0x5b, 0x84,
0x13, 0xe9, 0x9e, 0x16, 0x32, 0x30, 0x73, 0x1e, 0x83, 0x2f, 0x15, 0xeb, 0xf1, 0x68, 0x96, 0xbb,
0x45, 0xcd, 0x83, 0x1d, 0xb1, 0xa8, 0x0b, 0x5d, 0x87, 0xbd, 0x1e, 0x1e, 0x1d, 0x96, 0xbf, 0x48,
0x20, 0x49, 0x92, 0x8b, 0xd3, 0x07, 0x82, 0x8d, 0x75, 0x5f, 0x7d, 0xd8, 0x5a, 0xdc, 0x8b, 0x1e,
0x81, 0xbd, 0x3d, 0x1b, 0x97, 0x8b, 0xb2, 0xb1, 0x98, 0x21, 0x11, 0x44, 0xc9, 0xcf, 0xff, 0xef,
0x61, 0x44, 0xe9, 0x8b, 0x15, 0x76, 0xe8, 0x2c, 0x36, 0xe0, 0x91, 0xe7, 0xac, 0xa1, 0x9a, 0x7b,
0x5b, 0xbe, 0x44, 0x5d, 0xa0, 0x06, 0x3a, 0x89, 0xc4, 0xac, 0x57, 0x2a, 0x3d, 0xc7, 0x6c, 0x06,
0x6e, 0x04, 0xcf, 0x54, 0xa2, 0x9e, 0x1f, 0x82, 0x56, 0xe3, 0x7e, 0x7a, 0x22, 0x3a, 0x0b, 0xf5,
0xf0, 0xb7, 0x91, 0x0f, 0x46, 0x12, 0x7d, 0xfd, 0xb2, 0xb6, 0xe5, 0x5f, 0x29, 0xac, 0xe4, 0x89,
0x5c, 0xdb, 0xb7, 0x07, 0x7f, 0xe4, 0x64, 0xe0, 0xfb, 0xd5, 0xfe, 0xe0, 0x0c, 0x13, 0x9f, 0x9b,
0xee, 0xaf, 0x6c, 0x6f, 0x36, 0x78, 0x08, 0xb6, 0xf2, 0x9b, 0xfb, 0x57, 0x2d, 0x45, 0x84, 0x83,
0x62, 0x30, 0x8a, 0x68, 0xfb, 0x78, 0x8f, 0xf2, 0x8d, 0xfc, 0xd8, 0x88, 0x75, 0xb0, 0x47, 0xd3,
0x86, 0x50, 0x11, 0x62, 0xe4, 0x0c, 0xb7, 0x09, 0x6d, 0xd8, 0x84, 0xb7, 0xa6, 0xbf, 0xaf, 0x9d,
0xee, 0xd4, 0xb8, 0x43, 0x26, 0xdb, 0x38, 0xd1, 0x97, 0x93, 0x0c, 0xa5, 0x72, 0xf3, 0x05, 0x8d,
0xe6, 0x2a, 0x43, 0xde, 0xf8, 0xff, 0xbd, 0x6e, 0xfd, 0x13, 0xfa, 0x1b, 0x77, 0xe6, 0x75, 0xa6,
0x04, 0x24, 0xd2, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE cancel_tool_xpm[1] = {{ png, sizeof( png ), "cancel_tool_xpm" }};
//EOF

View File

@ -8,46 +8,67 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x02, 0x67, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xed, 0x96, 0xcb, 0x6b, 0x13,
0x51, 0x14, 0x87, 0xe3, 0x0b, 0xc5, 0x95, 0x6e, 0xaa, 0xa6, 0x8a, 0x6e, 0x44, 0xb0, 0x2a, 0x44,
0x53, 0x11, 0x37, 0xea, 0x46, 0xcc, 0xc6, 0xd2, 0xd8, 0x24, 0x0d, 0xd1, 0x34, 0xc9, 0xbc, 0xd2,
0xd4, 0xb6, 0xd0, 0x2a, 0x46, 0xac, 0x56, 0x90, 0x68, 0x94, 0x28, 0x2e, 0x7c, 0xa4, 0xba, 0x53,
0x37, 0x2a, 0x82, 0x45, 0x68, 0xeb, 0x9f, 0x90, 0x2e, 0x5c, 0x24, 0x21, 0x8f, 0x86, 0x3c, 0x48,
0xd2, 0x3c, 0xc0, 0x24, 0x93, 0x90, 0x77, 0x30, 0xc7, 0x73, 0x87, 0xf8, 0x07, 0x98, 0x87, 0x0b,
0xe9, 0xc0, 0xc7, 0xc0, 0x85, 0x39, 0xdf, 0x39, 0x33, 0xbf, 0xcb, 0x1d, 0x11, 0x00, 0x88, 0xfe,
0x05, 0xa2, 0x0d, 0x51, 0x4f, 0x44, 0x5a, 0xad, 0x56, 0x32, 0x35, 0x75, 0xfd, 0x4e, 0xcf, 0x45,
0x3a, 0x83, 0x4e, 0xb7, 0xb8, 0xf8, 0xb5, 0x36, 0x33, 0x33, 0xfd, 0x4d, 0x26, 0x93, 0x6d, 0xef,
0x99, 0xc8, 0xc0, 0x18, 0x98, 0x5c, 0x2e, 0x07, 0xe5, 0x72, 0xb9, 0x79, 0xef, 0xfe, 0x5d, 0xb7,
0x42, 0xa1, 0xe8, 0xef, 0x89, 0x88, 0x62, 0x28, 0x13, 0x11, 0xd5, 0xeb, 0x75, 0x81, 0x57, 0x0b,
0x2f, 0xd7, 0xf5, 0x7a, 0xfd, 0xb9, 0xae, 0x8b, 0x18, 0x8e, 0x9a, 0x26, 0xa2, 0x42, 0xa1, 0x00,
0x3c, 0xcf, 0x43, 0xa3, 0xd1, 0x80, 0x95, 0xef, 0xcb, 0xbc, 0xd1, 0xc8, 0xce, 0x76, 0x55, 0xc4,
0x1a, 0xe9, 0x59, 0x22, 0xca, 0x64, 0x32, 0x90, 0x4e, 0xa7, 0x21, 0x95, 0x4a, 0x41, 0xa5, 0x52,
0x01, 0xff, 0x9a, 0xbf, 0x3a, 0x31, 0x69, 0xfa, 0xc8, 0xb2, 0xec, 0xb6, 0x6e, 0x89, 0xcc, 0x44,
0x44, 0x04, 0xf1, 0x78, 0x1c, 0xa2, 0xd1, 0x28, 0x44, 0x22, 0x11, 0xc8, 0x66, 0xb3, 0x44, 0xde,
0x34, 0xdf, 0xbe, 0xf5, 0x63, 0xf8, 0xda, 0x70, 0x5f, 0xc7, 0x22, 0x6e, 0x9c, 0x99, 0x23, 0x22,
0x22, 0x08, 0x85, 0x42, 0x10, 0x0c, 0x06, 0x21, 0x10, 0x08, 0x80, 0xdf, 0xef, 0x87, 0x58, 0x2c,
0x06, 0xa5, 0x52, 0x09, 0x6c, 0xcf, 0x6c, 0x51, 0x8d, 0x46, 0x33, 0xd8, 0xe1, 0x44, 0xec, 0x3c,
0x11, 0x11, 0x01, 0x29, 0xee, 0xf3, 0xf9, 0xc0, 0xe3, 0xf1, 0x80, 0xdb, 0xed, 0x06, 0xa7, 0xd3,
0x09, 0x5e, 0xaf, 0x57, 0x78, 0x95, 0x9f, 0xbf, 0x7c, 0xca, 0x52, 0x2c, 0xc5, 0x75, 0x32, 0xd1,
0x03, 0x9e, 0xcf, 0x09, 0x05, 0x49, 0xf1, 0x70, 0x38, 0x2c, 0x4c, 0x54, 0xad, 0x56, 0x85, 0x70,
0x64, 0xb2, 0x19, 0x48, 0x24, 0x13, 0xcd, 0x70, 0x38, 0xf4, 0xeb, 0xe1, 0x23, 0x4b, 0x99, 0x62,
0x0c, 0xd6, 0x36, 0x53, 0xc7, 0x58, 0x49, 0x41, 0xd2, 0x3d, 0x79, 0x7d, 0xb5, 0x5a, 0x0d, 0x92,
0xc9, 0xa4, 0x10, 0x8e, 0x85, 0xb7, 0xf6, 0x9f, 0x4a, 0xf5, 0x15, 0xf5, 0x88, 0x6a, 0x44, 0xa6,
0x54, 0xca, 0x2f, 0xa8, 0x54, 0xf2, 0x33, 0xa3, 0xa3, 0x43, 0x07, 0xda, 0x0d, 0x83, 0x8d, 0xcf,
0xf3, 0x42, 0x18, 0xb0, 0xeb, 0x3a, 0x67, 0x64, 0x12, 0xf9, 0x7c, 0x1e, 0x5c, 0x2e, 0x17, 0x99,
0xa8, 0x39, 0x31, 0x39, 0xfe, 0xb4, 0x5b, 0xfb, 0xe8, 0x39, 0x29, 0xbc, 0xba, 0xea, 0x28, 0xa3,
0xd4, 0xa2, 0x56, 0x5f, 0xde, 0xf3, 0xfe, 0xc3, 0xbb, 0x34, 0x11, 0x93, 0x70, 0x2c, 0xad, 0x2c,
0xe5, 0xe4, 0x57, 0xe5, 0xfb, 0x3a, 0x8f, 0x37, 0x47, 0xbf, 0xb0, 0xbf, 0xb1, 0x17, 0x68, 0xda,
0x40, 0xfd, 0x59, 0xa3, 0x19, 0xc3, 0x6b, 0xdc, 0x53, 0x4d, 0x87, 0xc3, 0x21, 0x7c, 0xa7, 0x9b,
0xe6, 0x1b, 0xcb, 0x1d, 0x8b, 0x68, 0x8e, 0x1e, 0x1a, 0x1b, 0xd3, 0x5c, 0x14, 0x89, 0x44, 0x5b,
0x91, 0x5d, 0x48, 0xbf, 0x58, 0x2c, 0x96, 0xd8, 0x6c, 0x4f, 0xd2, 0x24, 0xda, 0xc5, 0x62, 0x11,
0xac, 0x8f, 0x2d, 0x6b, 0xb8, 0x7e, 0x04, 0x39, 0x84, 0xf4, 0x21, 0x3b, 0xdb, 0x3a, 0x8f, 0xc8,
0x83, 0xc8, 0x5e, 0xe4, 0x30, 0x72, 0x0a, 0x39, 0x2f, 0x95, 0x9e, 0x9c, 0xe7, 0x4c, 0x6c, 0x0c,
0x37, 0xec, 0xfa, 0xc0, 0xf1, 0x81, 0x39, 0x5c, 0xbb, 0x84, 0x9c, 0x45, 0x8e, 0x21, 0x07, 0x91,
0xdd, 0xc8, 0xe6, 0xbf, 0x3e, 0xf8, 0xf0, 0xda, 0xd1, 0xea, 0x96, 0x74, 0x7d, 0x14, 0x91, 0x20,
0xa7, 0x5b, 0x48, 0x91, 0x13, 0xad, 0x46, 0xf6, 0xb7, 0x26, 0xdf, 0xd2, 0xb5, 0x13, 0x16, 0xaf,
0x4d, 0xa4, 0x6b, 0x72, 0xdf, 0xf8, 0x67, 0xf8, 0x3f, 0x44, 0xbf, 0x01, 0xa3, 0x1c, 0x6c, 0xc6,
0xf1, 0x20, 0x65, 0x79, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x03, 0xb0, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xdd, 0x96, 0x4d, 0x68, 0x5c,
0x55, 0x14, 0xc7, 0xff, 0xe7, 0x7e, 0xbc, 0xf7, 0xe6, 0x2b, 0xc9, 0xd4, 0xc9, 0x47, 0x9b, 0x6a,
0xdb, 0x54, 0x5c, 0x84, 0x14, 0xec, 0x46, 0x49, 0x4c, 0x9a, 0x26, 0xd3, 0xc9, 0xcb, 0x47, 0x8b,
0x82, 0x4b, 0x89, 0x60, 0xc1, 0xfa, 0x01, 0x0a, 0xd6, 0x8d, 0x82, 0x0b, 0x17, 0x82, 0x44, 0x37,
0x2e, 0x15, 0x14, 0x11, 0x97, 0x2a, 0x2e, 0x2a, 0x4d, 0x4d, 0xa7, 0x48, 0x51, 0xd2, 0xd6, 0x06,
0x4a, 0x11, 0x4b, 0xa9, 0xb8, 0x89, 0xfd, 0x8e, 0xcc, 0x4c, 0x66, 0x32, 0x1f, 0x6f, 0xde, 0x7b,
0xf7, 0xb8, 0x98, 0x0c, 0x8a, 0x34, 0x29, 0x26, 0x6d, 0x17, 0x9e, 0xd5, 0xe5, 0x5e, 0x38, 0xbf,
0xfb, 0xff, 0x9f, 0x73, 0x2e, 0x97, 0x98, 0x19, 0x0f, 0x22, 0x04, 0x1e, 0x50, 0xfc, 0xff, 0x40,
0x6a, 0xad, 0x83, 0x91, 0xa9, 0x91, 0xae, 0xa8, 0xb0, 0x66, 0xbc, 0x30, 0x9c, 0xc9, 0x1e, 0xcf,
0x5e, 0xba, 0x6f, 0x8a, 0xac, 0x40, 0xf4, 0xfa, 0x7e, 0x38, 0xad, 0x20, 0x2e, 0x64, 0xdc, 0xcc,
0xe1, 0xfb, 0x06, 0x62, 0x86, 0x8a, 0x27, 0xec, 0xea, 0xf4, 0x91, 0x3d, 0x96, 0x65, 0x8b, 0x8f,
0x27, 0x0f, 0xb9, 0x5f, 0x0d, 0x3e, 0x3d, 0x98, 0xb8, 0x0f, 0x35, 0x62, 0x45, 0x44, 0xe8, 0xed,
0xeb, 0xc2, 0x9b, 0xef, 0x0c, 0xe9, 0xce, 0xae, 0xf8, 0xa1, 0x16, 0x13, 0xfb, 0x35, 0x93, 0xc9,
0xec, 0xbd, 0xa7, 0x20, 0x22, 0x92, 0x82, 0x08, 0xc6, 0x28, 0xb4, 0xb6, 0xc6, 0xf0, 0xca, 0x1b,
0x83, 0x76, 0xff, 0xd0, 0xae, 0x6e, 0xa1, 0xf0, 0xb3, 0xeb, 0x1e, 0x78, 0xfd, 0x9e, 0x5a, 0x27,
0x24, 0xb1, 0x09, 0x25, 0x4c, 0x28, 0x01, 0x28, 0xb8, 0x53, 0x7d, 0x62, 0xfa, 0xf0, 0x80, 0xb2,
0x22, 0xfa, 0xc3, 0xc9, 0x29, 0xf7, 0xf8, 0xc1, 0x83, 0x43, 0xc9, 0x4d, 0x83, 0x0c, 0x91, 0x24,
0x22, 0x98, 0x50, 0xc2, 0x18, 0x09, 0x5e, 0x05, 0x3e, 0xfa, 0xd8, 0x56, 0xbc, 0x76, 0x74, 0xdc,
0xda, 0xba, 0x3d, 0x39, 0x1a, 0x72, 0xf4, 0x72, 0xda, 0x4d, 0x0f, 0x6c, 0x76, 0x8e, 0x14, 0x11,
0xad, 0x02, 0x54, 0x03, 0x66, 0x1a, 0xd0, 0x58, 0x3c, 0x86, 0x17, 0x5e, 0xcc, 0xd8, 0x4f, 0xed,
0xeb, 0x6d, 0x57, 0x42, 0x9c, 0x76, 0x27, 0x0e, 0xbc, 0x4d, 0x44, 0xb4, 0x51, 0x90, 0x24, 0x6a,
0x40, 0x38, 0xfc, 0x5b, 0x11, 0x87, 0x0d, 0x20, 0x1b, 0x89, 0xe1, 0xfd, 0x7b, 0xe9, 0xb9, 0xe7,
0xc7, 0x94, 0xed, 0xd8, 0xef, 0x4e, 0x4c, 0x8e, 0xfd, 0xe0, 0xba, 0x6e, 0xc7, 0x86, 0x15, 0x99,
0x55, 0x15, 0x4d, 0x0b, 0x9b, 0xeb, 0x86, 0x3a, 0x81, 0x47, 0x76, 0x74, 0xe3, 0xc8, 0xcb, 0xcf,
0x5a, 0xdb, 0xba, 0x3b, 0xfb, 0x85, 0xc4, 0x65, 0xd7, 0x4d, 0x8f, 0xfe, 0xb7, 0xae, 0x03, 0x49,
0x22, 0x81, 0x66, 0x33, 0xfc, 0xb3, 0x4e, 0x4d, 0x0b, 0xf3, 0xb9, 0x0a, 0x96, 0x6e, 0x17, 0x51,
0x2a, 0x7a, 0x18, 0xde, 0xff, 0x84, 0xb5, 0x63, 0xe7, 0xf6, 0xa4, 0x01, 0x65, 0xdd, 0x71, 0xf7,
0xbd, 0x7f, 0x5b, 0xa9, 0xd6, 0x53, 0x24, 0x48, 0x80, 0x43, 0xd9, 0xe8, 0x42, 0x10, 0xc0, 0x8d,
0x2b, 0x30, 0x13, 0xfe, 0x58, 0xbc, 0x85, 0x2f, 0xbf, 0x38, 0x06, 0x00, 0x2c, 0x84, 0xf0, 0x89,
0xc8, 0x07, 0xc1, 0xd7, 0x4a, 0xd5, 0x0d, 0xf3, 0x33, 0x13, 0x13, 0x13, 0x1f, 0x00, 0x28, 0xde,
0x15, 0xc4, 0x60, 0xd5, 0x54, 0x04, 0x10, 0x96, 0x96, 0xf2, 0x98, 0x3b, 0x31, 0xef, 0xf5, 0x0f,
0x3c, 0x6e, 0xef, 0xea, 0x79, 0x18, 0xed, 0xed, 0x1d, 0x88, 0xc6, 0x22, 0x5e, 0xa5, 0x52, 0x7b,
0xeb, 0xfb, 0xd9, 0xb9, 0x8f, 0x36, 0x3e, 0xb0, 0x20, 0x29, 0x84, 0x20, 0x63, 0x14, 0x7e, 0xbb,
0x72, 0x15, 0x9f, 0x7f, 0xf6, 0xad, 0xbf, 0xb8, 0x78, 0xe3, 0xd2, 0x77, 0xc7, 0x4e, 0x7b, 0x7e,
0x1d, 0xd0, 0xd2, 0xc1, 0xb8, 0x3b, 0x6a, 0x0b, 0xa2, 0xf7, 0xd3, 0xe9, 0x74, 0xf7, 0x26, 0xdb,
0x5b, 0xe0, 0xec, 0x99, 0x8b, 0xfc, 0xcd, 0xd7, 0x27, 0xfc, 0xd0, 0x0f, 0x5e, 0xcd, 0xfd, 0x99,
0x7f, 0xb2, 0x56, 0xf3, 0x6e, 0x9e, 0x3b, 0x7b, 0x91, 0x8d, 0x91, 0xe8, 0xe9, 0xd9, 0x8d, 0x9e,
0xdd, 0x3b, 0x85, 0xe5, 0xe8, 0x4f, 0x36, 0x01, 0x32, 0xf2, 0xda, 0xb5, 0x1b, 0x91, 0x9f, 0x7e,
0x3c, 0x5f, 0x08, 0xc1, 0xc3, 0x73, 0x73, 0xa7, 0x3e, 0x5d, 0x58, 0x58, 0xf0, 0x83, 0x7a, 0xf8,
0xd2, 0xfc, 0xfc, 0xf9, 0x70, 0xb9, 0x50, 0x05, 0x87, 0x12, 0xe9, 0x91, 0x8c, 0xc5, 0x8c, 0x31,
0xd7, 0x4d, 0xef, 0xdb, 0xd8, 0x13, 0x44, 0x74, 0x4e, 0x4a, 0x35, 0x5b, 0xaf, 0xf9, 0x7b, 0xb2,
0xb3, 0xd9, 0x33, 0xcd, 0xfd, 0x6c, 0x36, 0x3b, 0x47, 0xa0, 0x53, 0x27, 0x4f, 0x66, 0xfd, 0x20,
0x60, 0x48, 0xa1, 0x60, 0x3b, 0x56, 0x68, 0x84, 0x48, 0xad, 0x07, 0xa2, 0xb5, 0x3e, 0x27, 0x44,
0x44, 0xa9, 0x14, 0xe2, 0xcc, 0x68, 0xb1, 0xe2, 0x68, 0x89, 0x38, 0x3a, 0x66, 0x5b, 0x1c, 0x55,
0x0e, 0x2c, 0xdb, 0x4e, 0x6d, 0x7b, 0x28, 0xd1, 0x37, 0x43, 0x24, 0x53, 0xc6, 0x18, 0x01, 0x84,
0x57, 0xae, 0xde, 0xfa, 0xe5, 0x68, 0xb9, 0x54, 0xb8, 0x19, 0xd6, 0xfc, 0x95, 0x7c, 0x1e, 0xc5,
0x72, 0x19, 0x45, 0x66, 0xae, 0xae, 0x0b, 0x4a, 0x26, 0xa9, 0xcd, 0xb6, 0x91, 0x74, 0x12, 0x3a,
0x19, 0x4b, 0x70, 0x32, 0x1a, 0xe7, 0x36, 0xbb, 0x05, 0x6d, 0x89, 0x28, 0xb7, 0x3a, 0x31, 0xd1,
0x62, 0xd9, 0x88, 0x29, 0xa9, 0x9d, 0xea, 0xca, 0x96, 0x0e, 0x13, 0xfa, 0x95, 0x50, 0xe4, 0x7e,
0xaf, 0xae, 0x98, 0x62, 0xad, 0x4c, 0xcb, 0x95, 0x32, 0xf2, 0xb5, 0x22, 0x15, 0x4a, 0xe5, 0x20,
0x5f, 0x29, 0x20, 0x9f, 0xcb, 0x21, 0xc7, 0xcc, 0x15, 0x75, 0x27, 0x25, 0x89, 0x04, 0xa4, 0xd6,
0x50, 0xc2, 0x86, 0x22, 0x0d, 0x25, 0x34, 0x2c, 0x4b, 0xb1, 0xad, 0x6d, 0xe1, 0x68, 0x0b, 0x51,
0x27, 0x42, 0x09, 0xed, 0x04, 0x8e, 0x13, 0xbf, 0x5d, 0x0e, 0x3c, 0x94, 0x57, 0xca, 0x88, 0x98,
0xba, 0xf0, 0xea, 0x1e, 0x6b, 0xa9, 0x61, 0x19, 0x82, 0x92, 0x42, 0x2b, 0x63, 0xf9, 0x2a, 0x95,
0x82, 0xbc, 0x9b, 0x75, 0x76, 0x34, 0x85, 0x2d, 0x6d, 0x16, 0x5a, 0x9d, 0xb8, 0x4e, 0xe8, 0x08,
0xc7, 0x23, 0x36, 0x47, 0x55, 0x14, 0x11, 0x21, 0xa0, 0x15, 0x35, 0x12, 0xd4, 0x81, 0xc0, 0x78,
0xf0, 0x3c, 0x8f, 0xaa, 0xa6, 0x86, 0x4a, 0xa5, 0x4a, 0xa5, 0x4a, 0xcd, 0x2f, 0xd5, 0x96, 0x51,
0x28, 0x95, 0x50, 0x60, 0xe6, 0x60, 0x5d, 0xd0, 0x1d, 0xc0, 0x02, 0x80, 0xee, 0xec, 0x84, 0xaa,
0xd7, 0xa1, 0x82, 0x00, 0x8a, 0x08, 0xac, 0x14, 0x02, 0xc7, 0x41, 0x70, 0xfd, 0x3a, 0x7c, 0x00,
0x01, 0xaf, 0x91, 0xf0, 0x2f, 0xec, 0x6a, 0xa5, 0x78, 0xe2, 0xce, 0xd5, 0xd9, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE cursor_xpm[1] = {{ png, sizeof( png ), "cursor_xpm" }};

View File

@ -8,66 +8,91 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0x9b, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xdd, 0x56, 0x7d, 0x68, 0x96,
0x55, 0x14, 0xff, 0xdd, 0x67, 0xef, 0x98, 0x31, 0x9d, 0xc3, 0x34, 0x5a, 0x35, 0x44, 0xdb, 0x2c,
0x82, 0x2c, 0x6b, 0xad, 0x68, 0x90, 0xa1, 0x61, 0x1f, 0x92, 0x85, 0xc5, 0xb2, 0x16, 0x23, 0x89,
0x58, 0x52, 0x82, 0xc9, 0xc4, 0xc2, 0x60, 0xae, 0x55, 0xb4, 0x9a, 0x85, 0x06, 0x11, 0x7d, 0x81,
0xc2, 0xb2, 0x2c, 0xa6, 0xa0, 0x2c, 0x58, 0x4a, 0xda, 0x08, 0x19, 0xa9, 0x49, 0x86, 0x66, 0xac,
0x56, 0x7e, 0x6c, 0x7e, 0xae, 0x35, 0xd7, 0xf6, 0x3e, 0xf7, 0x3d, 0xe7, 0x77, 0xfa, 0xe3, 0xfd,
0xd8, 0x3b, 0xd9, 0xc7, 0xab, 0x82, 0x7f, 0x74, 0xe1, 0xf0, 0x3c, 0xf7, 0xb9, 0xe7, 0x9e, 0x1f,
0xbf, 0xdf, 0x39, 0xe7, 0x3e, 0xd7, 0x99, 0x19, 0x2e, 0xc7, 0x08, 0x70, 0x99, 0x46, 0x64, 0xc8,
0xec, 0xa3, 0xaa, 0xec, 0x81, 0x93, 0xe3, 0x77, 0x00, 0x41, 0x1b, 0x18, 0xac, 0xbd, 0xa2, 0xa6,
0xfe, 0xd8, 0xc5, 0x06, 0xfe, 0xbb, 0xaa, 0x6a, 0xe2, 0xd9, 0x9c, 0x9c, 0x68, 0xd1, 0xba, 0x75,
0x21, 0x00, 0xb8, 0x74, 0xe9, 0xfa, 0xeb, 0xaa, 0xeb, 0x1c, 0xf0, 0x6a, 0x62, 0x1a, 0x03, 0xdc,
0x97, 0xa4, 0x5b, 0x93, 0x5b, 0xf3, 0xf6, 0xfe, 0x8c, 0xa2, 0xd7, 0xd6, 0x06, 0x27, 0xbb, 0xda,
0x9f, 0x00, 0xb5, 0xca, 0x54, 0xcb, 0x8c, 0xfa, 0x17, 0xc9, 0x65, 0xd7, 0xae, 0x6f, 0xda, 0x96,
0x02, 0xea, 0x7f, 0x63, 0x79, 0x89, 0x63, 0xb0, 0x3b, 0xc9, 0xd2, 0xc8, 0x94, 0x41, 0xd9, 0x18,
0xd5, 0x81, 0x25, 0x93, 0xeb, 0x3f, 0x3d, 0x37, 0x2c, 0x40, 0x79, 0x79, 0xd6, 0xa9, 0x09, 0x41,
0x05, 0xc1, 0x55, 0xa6, 0x9c, 0x61, 0x4a, 0x90, 0x84, 0x29, 0x9b, 0x48, 0x6b, 0x98, 0xba, 0x69,
0xeb, 0xee, 0x41, 0xe9, 0xcc, 0x5d, 0x65, 0xaa, 0x07, 0x8d, 0x9c, 0x49, 0x4d, 0x80, 0x68, 0x0a,
0xac, 0xc2, 0xa9, 0xdd, 0x75, 0x66, 0x69, 0xe5, 0xa2, 0xc9, 0xef, 0x6f, 0xd8, 0x93, 0xda, 0xe3,
0x9c, 0xeb, 0x5c, 0xfc, 0xf8, 0x33, 0x6e, 0x1c, 0x57, 0x31, 0x8c, 0x5d, 0x9f, 0xdc, 0x03, 0xea,
0x11, 0x11, 0x79, 0x6e, 0xda, 0xe6, 0x96, 0x96, 0x94, 0xeb, 0xf9, 0x55, 0xf7, 0xcf, 0x8a, 0x25,
0x73, 0x8c, 0xfa, 0x92, 0x51, 0xe7, 0x53, 0xe9, 0xce, 0x03, 0x8c, 0x19, 0xe5, 0x95, 0xab, 0x3f,
0xfb, 0xfa, 0xdd, 0xa3, 0x8b, 0x16, 0x14, 0x20, 0x70, 0xeb, 0x41, 0xde, 0x17, 0x5f, 0xd7, 0xa4,
0xdf, 0xc7, 0x1a, 0xcb, 0xae, 0x2e, 0x6a, 0x6e, 0xee, 0x4d, 0x8f, 0xeb, 0x46, 0x2a, 0xef, 0xd3,
0xcf, 0x57, 0x14, 0x1b, 0xad, 0x81, 0xca, 0x05, 0x46, 0x1d, 0xc2, 0x90, 0xc2, 0x1d, 0x30, 0xbb,
0xd5, 0x54, 0xae, 0x34, 0x26, 0x64, 0x12, 0x76, 0x1a, 0x74, 0x71, 0x51, 0xf3, 0xae, 0x96, 0xe1,
0xe2, 0xb9, 0xb1, 0xfa, 0xe8, 0x78, 0xc5, 0xa3, 0x95, 0x54, 0xae, 0x35, 0x32, 0x3f, 0x0e, 0xa6,
0x83, 0xf9, 0x4b, 0x49, 0xac, 0x87, 0xb3, 0xe0, 0xe6, 0x4d, 0xff, 0xb6, 0xf5, 0xc8, 0x48, 0x71,
0x5c, 0x26, 0x0d, 0xdb, 0xfe, 0xd8, 0x43, 0xd7, 0x39, 0xf1, 0x9f, 0x40, 0x78, 0xff, 0x50, 0x10,
0x85, 0x91, 0x7b, 0x23, 0x8c, 0x3d, 0x58, 0xf4, 0xfd, 0xbe, 0xd3, 0x97, 0xdc, 0xb0, 0x45, 0x4d,
0xdf, 0x1c, 0x67, 0x7f, 0xf8, 0x87, 0x46, 0xa3, 0x90, 0x68, 0x14, 0x32, 0x90, 0x7c, 0x86, 0x90,
0x81, 0x70, 0xcf, 0x58, 0x20, 0x19, 0x33, 0xfa, 0x75, 0xf6, 0x9d, 0xab, 0x8d, 0xac, 0x49, 0x32,
0xe1, 0x50, 0x46, 0x30, 0xb5, 0x27, 0x67, 0xfd, 0x72, 0xf8, 0x8b, 0x4b, 0x02, 0x3a, 0x58, 0x36,
0xeb, 0x11, 0x8a, 0x6d, 0x36, 0xd2, 0xa5, 0xf2, 0xa3, 0xf4, 0x46, 0x06, 0x24, 0x23, 0x34, 0x80,
0x66, 0xe7, 0x5c, 0xe0, 0x4a, 0x4a, 0x0f, 0xfd, 0xfe, 0xdb, 0x45, 0x01, 0x1d, 0x28, 0x99, 0x79,
0x23, 0x55, 0xda, 0x8c, 0xcc, 0x4b, 0x55, 0x9c, 0x19, 0x68, 0x56, 0x0e, 0x5a, 0x44, 0x61, 0x8d,
0xa4, 0x39, 0x9a, 0xc1, 0xcc, 0x0e, 0xd0, 0x22, 0xa5, 0xf7, 0x76, 0x74, 0x44, 0xc7, 0x3e, 0xeb,
0xd2, 0x46, 0x5b, 0x71, 0x71, 0x5e, 0x76, 0x8e, 0x6d, 0x31, 0xb5, 0x3c, 0x1a, 0x60, 0x71, 0x00,
0x90, 0xb6, 0xf1, 0xee, 0xf6, 0x3f, 0xbf, 0x02, 0x80, 0x5d, 0xd3, 0x0a, 0x8b, 0x09, 0xab, 0x25,
0x0d, 0x66, 0x76, 0x33, 0xa1, 0xd5, 0x00, 0x5e, 0xbf, 0xa0, 0x62, 0x08, 0xb2, 0x58, 0x1b, 0x8b,
0xe9, 0x0d, 0x5e, 0x15, 0x5e, 0x05, 0x5e, 0x04, 0x5e, 0xa4, 0xbb, 0x0f, 0xd1, 0x65, 0x49, 0x9f,
0xd9, 0x1d, 0x47, 0x5f, 0x0b, 0x45, 0x1a, 0xbd, 0x2a, 0x42, 0x51, 0xf8, 0x98, 0xac, 0x6c, 0x9a,
0x32, 0xa5, 0x20, 0x63, 0xa0, 0xd6, 0xe2, 0xa9, 0x37, 0x85, 0x22, 0x2f, 0x7a, 0x51, 0x24, 0x2d,
0x54, 0x85, 0x17, 0x56, 0xcf, 0x6b, 0x3f, 0x71, 0x2a, 0xdd, 0xd7, 0xc6, 0x4d, 0x78, 0xd6, 0x8b,
0x1c, 0xf2, 0x2a, 0xf0, 0xaa, 0xe3, 0xcd, 0xf8, 0x66, 0xc6, 0x39, 0xda, 0x39, 0xbd, 0x70, 0x3b,
0x69, 0x73, 0x53, 0x72, 0xc5, 0x73, 0xf0, 0xdd, 0x03, 0xc7, 0x4e, 0xcc, 0x19, 0x2e, 0xc8, 0xa6,
0x49, 0x93, 0xca, 0xcc, 0xb1, 0x95, 0x66, 0xce, 0xcc, 0x48, 0xd3, 0x3b, 0x9e, 0xee, 0xf9, 0x77,
0xdf, 0xa8, 0x8c, 0xb6, 0x17, 0x5e, 0xb3, 0xd0, 0xc7, 0x64, 0xae, 0x17, 0x41, 0x28, 0x29, 0xc9,
0x10, 0x53, 0x59, 0x39, 0x92, 0xcc, 0xe5, 0xdd, 0xdd, 0x3f, 0x78, 0xd1, 0x0f, 0x13, 0xec, 0x03,
0x2f, 0xf6, 0xde, 0xa8, 0xd2, 0xd5, 0x3a, 0x17, 0x78, 0x6a, 0x43, 0xba, 0x64, 0x09, 0xdb, 0xf9,
0x70, 0xd7, 0x99, 0x1f, 0x47, 0xed, 0xfc, 0x48, 0xdf, 0xcb, 0x5e, 0xb4, 0x33, 0x8c, 0xfb, 0xdf,
0xf3, 0x41, 0x4e, 0xce, 0xc2, 0x11, 0x81, 0x6a, 0xcc, 0x18, 0x8a, 0x56, 0x7b, 0xd5, 0x7e, 0xaf,
0x89, 0xdc, 0x88, 0xc2, 0x53, 0xeb, 0xc7, 0x6a, 0xea, 0x8a, 0xb3, 0xd6, 0x1b, 0x6a, 0xec, 0x85,
0x41, 0x05, 0x74, 0xc5, 0x98, 0x39, 0xfa, 0x3c, 0x3f, 0xff, 0x76, 0x38, 0x6e, 0xa5, 0x59, 0x01,
0x69, 0x3f, 0x57, 0xf6, 0xf6, 0xdd, 0x92, 0xe9, 0x2f, 0x7c, 0x8d, 0x73, 0xdb, 0x00, 0xcc, 0x07,
0x00, 0x07, 0xdc, 0xb6, 0xdc, 0xec, 0xa7, 0x11, 0xab, 0xee, 0xa9, 0x9e, 0x9e, 0xbd, 0xfd, 0xa1,
0x94, 0x86, 0xa2, 0xfb, 0x3d, 0xf5, 0x9d, 0x0b, 0xb9, 0x2b, 0x18, 0x50, 0x97, 0x78, 0xed, 0x32,
0x20, 0x77, 0x70, 0x21, 0x5e, 0x51, 0xc3, 0xda, 0x06, 0x20, 0x77, 0x35, 0x10, 0x19, 0xcd, 0x67,
0x38, 0x6b, 0x00, 0x96, 0xbe, 0x05, 0x4c, 0x4c, 0xff, 0xe6, 0xfe, 0x77, 0xf7, 0xba, 0xff, 0x00,
0xa8, 0x6c, 0x30, 0x24, 0x92, 0xb0, 0x6e, 0x38, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x05, 0x2a, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xad, 0x96, 0x0b, 0x50, 0x94,
0x55, 0x14, 0xc7, 0xf7, 0xc1, 0xb2, 0x2c, 0xb2, 0x2c, 0xb0, 0xc0, 0x2e, 0xcb, 0xb2, 0x2c, 0x0b,
0x0b, 0xcb, 0x53, 0x41, 0x40, 0x5e, 0xc2, 0xc6, 0x53, 0x36, 0x59, 0x90, 0x67, 0x42, 0x2a, 0x93,
0x88, 0xa3, 0x85, 0x62, 0x6a, 0x0f, 0xed, 0x81, 0xf8, 0xc8, 0x50, 0xd2, 0x31, 0xbf, 0x71, 0x12,
0xb5, 0x87, 0x6f, 0x0c, 0x29, 0xb3, 0x42, 0x63, 0x4c, 0x22, 0x83, 0xc4, 0x50, 0x14, 0x89, 0x44,
0xc5, 0x0c, 0xad, 0xc8, 0x7c, 0xe4, 0x68, 0x2f, 0xf1, 0x74, 0xae, 0xde, 0xcf, 0x59, 0x16, 0x5c,
0xb5, 0xfa, 0x66, 0x7e, 0x33, 0xdf, 0x7c, 0xdf, 0x9d, 0xfb, 0x3f, 0x73, 0xee, 0x39, 0xe7, 0x7f,
0x39, 0x00, 0xc0, 0x21, 0xe0, 0xa3, 0x41, 0x96, 0x23, 0x36, 0xec, 0xb7, 0x7f, 0x03, 0x3e, 0x33,
0x91, 0x54, 0x84, 0x37, 0xe8, 0xbb, 0xc9, 0x02, 0x5f, 0x84, 0xa1, 0x82, 0xbc, 0xff, 0x20, 0x34,
0x1f, 0x29, 0x44, 0xec, 0x11, 0xae, 0x25, 0xa1, 0xa8, 0xff, 0x41, 0x68, 0x1a, 0x22, 0x7f, 0x90,
0x50, 0xdc, 0xa3, 0x0a, 0xd1, 0xe0, 0x98, 0xfb, 0xe0, 0x64, 0x2e, 0xe4, 0x8f, 0xac, 0x42, 0x16,
0x93, 0xf7, 0x47, 0x14, 0x8a, 0xe6, 0x0b, 0x44, 0x4c, 0x70, 0xfa, 0xea, 0x7b, 0xf8, 0xc4, 0xcd,
0x67, 0x85, 0x46, 0x91, 0xc0, 0x4d, 0x17, 0x73, 0xe9, 0xf9, 0xcc, 0x42, 0xd6, 0x22, 0x95, 0x88,
0x78, 0x98, 0x4d, 0x05, 0x88, 0x95, 0xb9, 0x90, 0xc0, 0xc6, 0x81, 0xc9, 0xac, 0x84, 0x7b, 0xe8,
0x67, 0x1e, 0x63, 0x85, 0x92, 0x10, 0xbe, 0xe9, 0xe2, 0x11, 0x48, 0x36, 0xb2, 0x7a, 0x9c, 0xaf,
0x86, 0x29, 0x8d, 0x08, 0x7d, 0x01, 0xdf, 0xdd, 0x4c, 0xf3, 0x4c, 0xd7, 0x91, 0x43, 0x4e, 0x1f,
0x94, 0x7f, 0xcb, 0x42, 0xa9, 0x77, 0x84, 0xa8, 0x40, 0x31, 0x52, 0x8d, 0xcc, 0xd5, 0xba, 0x38,
0xc4, 0xff, 0xfa, 0xf2, 0xec, 0x73, 0x37, 0x2b, 0xe7, 0x42, 0xff, 0xc2, 0x59, 0x87, 0xaf, 0x55,
0xcc, 0x99, 0x00, 0x15, 0x15, 0x3c, 0x93, 0x4d, 0x25, 0x24, 0x18, 0xc4, 0x83, 0x15, 0x23, 0x42,
0x76, 0x7c, 0x6b, 0x66, 0x8f, 0xa3, 0x17, 0x73, 0x40, 0x1b, 0xb2, 0xe5, 0x44, 0x4a, 0x72, 0xeb,
0xc9, 0xec, 0x8c, 0x33, 0x39, 0xde, 0x9e, 0xf5, 0xa6, 0x42, 0x23, 0x91, 0x95, 0xc8, 0x0a, 0xa4,
0xa0, 0xab, 0xbc, 0xa4, 0x96, 0x88, 0xb0, 0xdc, 0xa8, 0x98, 0x03, 0x57, 0x17, 0x96, 0x9d, 0xfb,
0x72, 0x6a, 0x41, 0x09, 0xfe, 0x57, 0x22, 0x5a, 0x1a, 0xe9, 0x5c, 0x92, 0x46, 0x56, 0xc8, 0xa8,
0x52, 0xee, 0x3c, 0x9d, 0x6d, 0xec, 0xb9, 0x38, 0x25, 0xe7, 0xf6, 0x85, 0x49, 0xd9, 0xd0, 0x57,
0x68, 0x1c, 0xa8, 0x4d, 0x8c, 0xe9, 0x0e, 0x75, 0x92, 0xe4, 0xb0, 0x42, 0x5c, 0xba, 0x41, 0xbe,
0x44, 0x28, 0xac, 0x6a, 0x2e, 0x2d, 0xfc, 0xf6, 0xfa, 0x2b, 0xe5, 0x03, 0xd7, 0x5f, 0x2a, 0x83,
0xdf, 0x5e, 0x7c, 0x1a, 0xae, 0x3d, 0x37, 0x03, 0xae, 0xcc, 0x2b, 0x85, 0xcb, 0x73, 0x4a, 0xa0,
0x2e, 0x2b, 0xb5, 0xcb, 0x59, 0x24, 0x5c, 0x65, 0x52, 0x51, 0xb1, 0xe7, 0x27, 0xe7, 0xc5, 0x75,
0x16, 0x64, 0xb4, 0xf6, 0x3d, 0x99, 0x05, 0x3f, 0x4c, 0x34, 0xc2, 0xf9, 0xfc, 0xf1, 0xd0, 0x56,
0x54, 0x72, 0xb1, 0xb4, 0xa4, 0x7e, 0xdb, 0xa0, 0xd4, 0x99, 0x1c, 0xb0, 0x0c, 0x09, 0x21, 0x9d,
0x1d, 0xe8, 0x22, 0xdd, 0xb4, 0xd9, 0x98, 0xd2, 0x72, 0x69, 0xf6, 0x53, 0x97, 0x2f, 0x95, 0x15,
0xc3, 0x2f, 0x33, 0x27, 0x43, 0xff, 0xf4, 0x22, 0xf8, 0x79, 0xda, 0x44, 0xe8, 0x2c, 0xca, 0xbc,
0x62, 0x50, 0xb9, 0xbf, 0x2f, 0x16, 0x08, 0xde, 0xda, 0xac, 0x8f, 0x6e, 0x3b, 0x5f, 0x90, 0x71,
0xfb, 0xfb, 0x3c, 0x03, 0x9c, 0xcb, 0x1e, 0x07, 0x67, 0x33, 0x53, 0xfe, 0x6a, 0x8e, 0x4e, 0x6c,
0xda, 0xea, 0xa5, 0x67, 0x56, 0xba, 0x87, 0x33, 0x43, 0x84, 0xa8, 0x58, 0x00, 0xf2, 0x3c, 0xf2,
0x06, 0x6d, 0xb8, 0x84, 0xd1, 0x0a, 0xa9, 0x6e, 0x7b, 0x5a, 0x7c, 0x5d, 0x5f, 0x71, 0xee, 0xc0,
0x85, 0xc9, 0x39, 0xd0, 0x57, 0x74, 0x37, 0xea, 0xde, 0x3c, 0xc3, 0x40, 0x87, 0x31, 0xf9, 0x7a,
0xef, 0x84, 0x34, 0x38, 0x6b, 0x4c, 0x86, 0x33, 0x8f, 0x27, 0xc2, 0xbe, 0xb1, 0x11, 0x7d, 0x5b,
0x03, 0xd3, 0xde, 0x5d, 0xaf, 0x1d, 0xc7, 0x10, 0x96, 0xaa, 0x62, 0x86, 0x14, 0x83, 0x0e, 0xa9,
0xa0, 0x3d, 0x94, 0x4b, 0xfb, 0x69, 0x0c, 0x12, 0x86, 0x28, 0x90, 0x29, 0xd1, 0x2e, 0xce, 0xdb,
0x9a, 0xd2, 0xf5, 0x3f, 0x91, 0xa8, 0x7b, 0x33, 0x53, 0xe0, 0xcc, 0xf8, 0x24, 0x38, 0x6d, 0xd0,
0x43, 0x4f, 0x5a, 0x3c, 0x9c, 0x4a, 0x8e, 0x83, 0xa6, 0xd8, 0xd1, 0xfb, 0xc5, 0x22, 0xc7, 0x75,
0x0f, 0xaa, 0xba, 0x40, 0xe4, 0x55, 0x64, 0x0d, 0xf2, 0x0c, 0xed, 0x72, 0x92, 0x46, 0x21, 0xe9,
0x17, 0x5a, 0xe2, 0x69, 0xd6, 0x7c, 0x7e, 0x5e, 0xc3, 0xd8, 0x88, 0xa6, 0x53, 0xa9, 0x63, 0xe1,
0xbb, 0xa4, 0x18, 0xe8, 0xd6, 0x47, 0x41, 0x57, 0x7c, 0x24, 0xb4, 0x45, 0x8d, 0xda, 0x8f, 0x8b,
0x62, 0xac, 0x84, 0x62, 0x26, 0x69, 0x56, 0xf7, 0x3d, 0x22, 0x27, 0xd6, 0x0f, 0x11, 0x22, 0xc5,
0xa0, 0x46, 0x0c, 0xc8, 0x02, 0x5a, 0xba, 0x4f, 0x90, 0x7e, 0x31, 0x69, 0x64, 0xf7, 0x9d, 0x61,
0x41, 0xb3, 0xbb, 0x12, 0x22, 0x07, 0xba, 0xe2, 0xc2, 0xe1, 0x64, 0x74, 0x18, 0x9c, 0x18, 0x33,
0x12, 0x8e, 0x87, 0x07, 0x43, 0x47, 0x68, 0xe0, 0x8d, 0x19, 0xae, 0xd2, 0x49, 0x16, 0x46, 0xd0,
0x90, 0x62, 0x70, 0xa0, 0xe7, 0x54, 0x86, 0xbc, 0x89, 0x2c, 0xa3, 0x3d, 0xc6, 0xfd, 0x3a, 0x32,
0x34, 0xba, 0x33, 0x6a, 0xe4, 0xef, 0x27, 0x22, 0x42, 0xa0, 0x23, 0x2c, 0x08, 0x8e, 0x8d, 0xf2,
0x87, 0xf6, 0x60, 0xbf, 0xbf, 0xdb, 0x03, 0x7c, 0xe0, 0x88, 0xce, 0x1b, 0x9a, 0x7d, 0xd5, 0x7d,
0x72, 0x1b, 0xbb, 0x0d, 0xe1, 0xf9, 0x3b, 0x18, 0x96, 0x80, 0x94, 0xe5, 0xc3, 0x0a, 0x91, 0x14,
0xe9, 0xa9, 0x1f, 0x2d, 0xa2, 0x13, 0x82, 0xa4, 0x50, 0x7b, 0x68, 0x74, 0xa0, 0xaa, 0x23, 0x34,
0xe0, 0xc7, 0xa3, 0x21, 0x3a, 0x68, 0x0f, 0xd2, 0xc2, 0x37, 0xfe, 0xde, 0xd0, 0xaa, 0xd3, 0xf4,
0x2c, 0x71, 0x97, 0xe7, 0xb5, 0x68, 0xd5, 0x97, 0x0f, 0xf9, 0x78, 0x42, 0xb3, 0xb7, 0x0a, 0x6a,
0x3c, 0x14, 0xbd, 0x59, 0x8b, 0x06, 0x2c, 0x9e, 0x91, 0x81, 0x56, 0x1a, 0x19, 0xa6, 0x8f, 0xd1,
0xe2, 0x20, 0xc5, 0x10, 0x98, 0x2c, 0xb5, 0x55, 0x60, 0xd4, 0x47, 0x8f, 0xe8, 0x34, 0x70, 0xd8,
0xcf, 0x0b, 0x5a, 0x7d, 0xd5, 0xf0, 0x95, 0xd6, 0xf3, 0xd6, 0x6e, 0x95, 0x1b, 0x99, 0xf0, 0xa2,
0x46, 0xb5, 0x52, 0x7f, 0x40, 0xed, 0xfe, 0x67, 0xa3, 0x4a, 0x01, 0xfb, 0x3d, 0xdc, 0x60, 0x71,
0x66, 0x75, 0xa3, 0x25, 0x21, 0x0d, 0x15, 0xa9, 0xa6, 0x86, 0xe5, 0x47, 0xd3, 0x68, 0xdd, 0xe2,
0xe7, 0xb5, 0x04, 0xa3, 0x06, 0x36, 0xea, 0x26, 0x8d, 0x07, 0x7c, 0xee, 0xa9, 0x5c, 0x41, 0xcf,
0xed, 0xce, 0xf8, 0x69, 0x50, 0xca, 0x0a, 0x3f, 0x56, 0xb8, 0xde, 0xfe, 0xc8, 0xcd, 0x05, 0x76,
0xa9, 0xbc, 0x6e, 0x4c, 0x78, 0xb6, 0x77, 0xbd, 0x61, 0xc1, 0x55, 0x26, 0x6e, 0x6a, 0xf3, 0x10,
0x21, 0x1e, 0x1d, 0x2b, 0xe5, 0xf4, 0x87, 0x33, 0xf9, 0xd6, 0xa4, 0x51, 0x6a, 0xbf, 0xd0, 0x78,
0xfc, 0x71, 0xd0, 0x4b, 0x09, 0x18, 0x35, 0xdc, 0x8d, 0x5a, 0xde, 0x53, 0xab, 0x54, 0x8a, 0xcc,
0x27, 0xfa, 0x3a, 0xa9, 0x43, 0x5d, 0x9d, 0x8b, 0x13, 0xec, 0x92, 0x3a, 0x40, 0xb9, 0x9d, 0x6d,
0xbb, 0xa5, 0x62, 0xb0, 0x46, 0x22, 0xe8, 0x0f, 0xd2, 0x3f, 0x3c, 0xdc, 0xb8, 0xe1, 0x33, 0x95,
0x1b, 0xec, 0x53, 0xca, 0xe1, 0x53, 0x77, 0x19, 0x60, 0xd4, 0xb0, 0x47, 0x26, 0x4d, 0x1c, 0xce,
0x8f, 0xc6, 0x08, 0x85, 0xda, 0x4d, 0x12, 0x71, 0xff, 0x16, 0x89, 0x18, 0xde, 0xb1, 0xb7, 0xbb,
0xe5, 0x6f, 0x65, 0x45, 0x2a, 0xb7, 0x94, 0x92, 0x60, 0x3e, 0x19, 0x74, 0x54, 0x28, 0x66, 0xaf,
0x52, 0x9e, 0xf3, 0x89, 0x42, 0x06, 0x7b, 0xdd, 0x70, 0x73, 0xb9, 0x0b, 0x7c, 0x20, 0x93, 0xc2,
0x6e, 0x99, 0xf4, 0xa0, 0x05, 0xe3, 0xe3, 0x56, 0x88, 0x44, 0xb9, 0x1b, 0x47, 0x88, 0xa0, 0x46,
0x64, 0x03, 0x95, 0x42, 0xeb, 0xe3, 0xf8, 0x2d, 0x92, 0x9a, 0x5e, 0x90, 0xb9, 0xf1, 0xb1, 0x56,
0x1e, 0x5b, 0xe7, 0x2a, 0xcd, 0xae, 0x77, 0x95, 0xde, 0xbc, 0x93, 0x0e, 0x67, 0x47, 0xd8, 0xe9,
0xe4, 0x00, 0x3b, 0x9c, 0x24, 0xa9, 0x0f, 0x70, 0x59, 0xfe, 0x5a, 0xa1, 0xa0, 0x66, 0xad, 0xc0,
0x0a, 0xd6, 0x58, 0xf1, 0x61, 0x3a, 0x87, 0x93, 0x45, 0x9b, 0xde, 0xda, 0xdc, 0xca, 0x89, 0xa1,
0x25, 0xd3, 0x48, 0x78, 0xdb, 0x9d, 0x25, 0xe1, 0xdb, 0x1c, 0xed, 0x2f, 0x90, 0x74, 0xbc, 0x67,
0x2f, 0x3e, 0xfc, 0x30, 0x96, 0xfe, 0x3a, 0x3a, 0x72, 0x15, 0x97, 0xd3, 0x8f, 0x9e, 0x03, 0xd8,
0x84, 0x1f, 0xde, 0xef, 0x72, 0xc2, 0xa5, 0xd5, 0xe6, 0xc3, 0x5e, 0x4e, 0x36, 0xda, 0xda, 0x2a,
0x30, 0x1d, 0x6d, 0x1b, 0x6c, 0x6d, 0xb3, 0x1e, 0xf6, 0xfe, 0x50, 0xc5, 0xe1, 0xcc, 0x23, 0x42,
0xaf, 0x71, 0x38, 0xf5, 0xc3, 0x0a, 0x51, 0x31, 0x1e, 0x6b, 0x66, 0x2c, 0x6f, 0x93, 0x0b, 0xa5,
0x99, 0x9d, 0x5b, 0x02, 0x73, 0x6f, 0xb7, 0xf4, 0x6e, 0xc3, 0x0f, 0xba, 0x49, 0xfd, 0x03, 0xb7,
0x67, 0x2f, 0x8b, 0xe2, 0xe0, 0xe7, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae,
0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE delete_association_xpm[1] = {{ png, sizeof( png ), "delete_association_xpm" }};

View File

@ -1,75 +0,0 @@
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0x9b, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xdd, 0x56, 0x7d, 0x68, 0x96,
0x55, 0x14, 0xff, 0xdd, 0x67, 0xef, 0x98, 0x31, 0x9d, 0xc3, 0x34, 0x5a, 0x35, 0x44, 0xdb, 0x2c,
0x82, 0x2c, 0x6b, 0xad, 0x68, 0x90, 0xa1, 0x61, 0x1f, 0x92, 0x85, 0xc5, 0xb2, 0x16, 0x23, 0x89,
0x58, 0x52, 0x82, 0xc9, 0xc4, 0xc2, 0x60, 0xae, 0x55, 0xb4, 0x9a, 0x85, 0x06, 0x11, 0x7d, 0x81,
0xc2, 0xb2, 0x2c, 0xa6, 0xa0, 0x2c, 0x58, 0x4a, 0xda, 0x08, 0x19, 0xa9, 0x49, 0x86, 0x66, 0xac,
0x56, 0x7e, 0x6c, 0x7e, 0xae, 0x35, 0xd7, 0xf6, 0x3e, 0xf7, 0x3d, 0xe7, 0x77, 0xfa, 0xe3, 0xfd,
0xd8, 0x3b, 0xd9, 0xc7, 0xab, 0x82, 0x7f, 0x74, 0xe1, 0xf0, 0x3c, 0xf7, 0xb9, 0xe7, 0x9e, 0x1f,
0xbf, 0xdf, 0x39, 0xe7, 0x3e, 0xd7, 0x99, 0x19, 0x2e, 0xc7, 0x08, 0x70, 0x99, 0x46, 0x64, 0xc8,
0xec, 0xa3, 0xaa, 0xec, 0x81, 0x93, 0xe3, 0x77, 0x00, 0x41, 0x1b, 0x18, 0xac, 0xbd, 0xa2, 0xa6,
0xfe, 0xd8, 0xc5, 0x06, 0xfe, 0xbb, 0xaa, 0x6a, 0xe2, 0xd9, 0x9c, 0x9c, 0x68, 0xd1, 0xba, 0x75,
0x21, 0x00, 0xb8, 0x74, 0xe9, 0xfa, 0xeb, 0xaa, 0xeb, 0x1c, 0xf0, 0x6a, 0x62, 0x1a, 0x03, 0xdc,
0x97, 0xa4, 0x5b, 0x93, 0x5b, 0xf3, 0xf6, 0xfe, 0x8c, 0xa2, 0xd7, 0xd6, 0x06, 0x27, 0xbb, 0xda,
0x9f, 0x00, 0xb5, 0xca, 0x54, 0xcb, 0x8c, 0xfa, 0x17, 0xc9, 0x65, 0xd7, 0xae, 0x6f, 0xda, 0x96,
0x02, 0xea, 0x7f, 0x63, 0x79, 0x89, 0x63, 0xb0, 0x3b, 0xc9, 0xd2, 0xc8, 0x94, 0x41, 0xd9, 0x18,
0xd5, 0x81, 0x25, 0x93, 0xeb, 0x3f, 0x3d, 0x37, 0x2c, 0x40, 0x79, 0x79, 0xd6, 0xa9, 0x09, 0x41,
0x05, 0xc1, 0x55, 0xa6, 0x9c, 0x61, 0x4a, 0x90, 0x84, 0x29, 0x9b, 0x48, 0x6b, 0x98, 0xba, 0x69,
0xeb, 0xee, 0x41, 0xe9, 0xcc, 0x5d, 0x65, 0xaa, 0x07, 0x8d, 0x9c, 0x49, 0x4d, 0x80, 0x68, 0x0a,
0xac, 0xc2, 0xa9, 0xdd, 0x75, 0x66, 0x69, 0xe5, 0xa2, 0xc9, 0xef, 0x6f, 0xd8, 0x93, 0xda, 0xe3,
0x9c, 0xeb, 0x5c, 0xfc, 0xf8, 0x33, 0x6e, 0x1c, 0x57, 0x31, 0x8c, 0x5d, 0x9f, 0xdc, 0x03, 0xea,
0x11, 0x11, 0x79, 0x6e, 0xda, 0xe6, 0x96, 0x96, 0x94, 0xeb, 0xf9, 0x55, 0xf7, 0xcf, 0x8a, 0x25,
0x73, 0x8c, 0xfa, 0x92, 0x51, 0xe7, 0x53, 0xe9, 0xce, 0x03, 0x8c, 0x19, 0xe5, 0x95, 0xab, 0x3f,
0xfb, 0xfa, 0xdd, 0xa3, 0x8b, 0x16, 0x14, 0x20, 0x70, 0xeb, 0x41, 0xde, 0x17, 0x5f, 0xd7, 0xa4,
0xdf, 0xc7, 0x1a, 0xcb, 0xae, 0x2e, 0x6a, 0x6e, 0xee, 0x4d, 0x8f, 0xeb, 0x46, 0x2a, 0xef, 0xd3,
0xcf, 0x57, 0x14, 0x1b, 0xad, 0x81, 0xca, 0x05, 0x46, 0x1d, 0xc2, 0x90, 0xc2, 0x1d, 0x30, 0xbb,
0xd5, 0x54, 0xae, 0x34, 0x26, 0x64, 0x12, 0x76, 0x1a, 0x74, 0x71, 0x51, 0xf3, 0xae, 0x96, 0xe1,
0xe2, 0xb9, 0xb1, 0xfa, 0xe8, 0x78, 0xc5, 0xa3, 0x95, 0x54, 0xae, 0x35, 0x32, 0x3f, 0x0e, 0xa6,
0x83, 0xf9, 0x4b, 0x49, 0xac, 0x87, 0xb3, 0xe0, 0xe6, 0x4d, 0xff, 0xb6, 0xf5, 0xc8, 0x48, 0x71,
0x5c, 0x26, 0x0d, 0xdb, 0xfe, 0xd8, 0x43, 0xd7, 0x39, 0xf1, 0x9f, 0x40, 0x78, 0xff, 0x50, 0x10,
0x85, 0x91, 0x7b, 0x23, 0x8c, 0x3d, 0x58, 0xf4, 0xfd, 0xbe, 0xd3, 0x97, 0xdc, 0xb0, 0x45, 0x4d,
0xdf, 0x1c, 0x67, 0x7f, 0xf8, 0x87, 0x46, 0xa3, 0x90, 0x68, 0x14, 0x32, 0x90, 0x7c, 0x86, 0x90,
0x81, 0x70, 0xcf, 0x58, 0x20, 0x19, 0x33, 0xfa, 0x75, 0xf6, 0x9d, 0xab, 0x8d, 0xac, 0x49, 0x32,
0xe1, 0x50, 0x46, 0x30, 0xb5, 0x27, 0x67, 0xfd, 0x72, 0xf8, 0x8b, 0x4b, 0x02, 0x3a, 0x58, 0x36,
0xeb, 0x11, 0x8a, 0x6d, 0x36, 0xd2, 0xa5, 0xf2, 0xa3, 0xf4, 0x46, 0x06, 0x24, 0x23, 0x34, 0x80,
0x66, 0xe7, 0x5c, 0xe0, 0x4a, 0x4a, 0x0f, 0xfd, 0xfe, 0xdb, 0x45, 0x01, 0x1d, 0x28, 0x99, 0x79,
0x23, 0x55, 0xda, 0x8c, 0xcc, 0x4b, 0x55, 0x9c, 0x19, 0x68, 0x56, 0x0e, 0x5a, 0x44, 0x61, 0x8d,
0xa4, 0x39, 0x9a, 0xc1, 0xcc, 0x0e, 0xd0, 0x22, 0xa5, 0xf7, 0x76, 0x74, 0x44, 0xc7, 0x3e, 0xeb,
0xd2, 0x46, 0x5b, 0x71, 0x71, 0x5e, 0x76, 0x8e, 0x6d, 0x31, 0xb5, 0x3c, 0x1a, 0x60, 0x71, 0x00,
0x90, 0xb6, 0xf1, 0xee, 0xf6, 0x3f, 0xbf, 0x02, 0x80, 0x5d, 0xd3, 0x0a, 0x8b, 0x09, 0xab, 0x25,
0x0d, 0x66, 0x76, 0x33, 0xa1, 0xd5, 0x00, 0x5e, 0xbf, 0xa0, 0x62, 0x08, 0xb2, 0x58, 0x1b, 0x8b,
0xe9, 0x0d, 0x5e, 0x15, 0x5e, 0x05, 0x5e, 0x04, 0x5e, 0xa4, 0xbb, 0x0f, 0xd1, 0x65, 0x49, 0x9f,
0xd9, 0x1d, 0x47, 0x5f, 0x0b, 0x45, 0x1a, 0xbd, 0x2a, 0x42, 0x51, 0xf8, 0x98, 0xac, 0x6c, 0x9a,
0x32, 0xa5, 0x20, 0x63, 0xa0, 0xd6, 0xe2, 0xa9, 0x37, 0x85, 0x22, 0x2f, 0x7a, 0x51, 0x24, 0x2d,
0x54, 0x85, 0x17, 0x56, 0xcf, 0x6b, 0x3f, 0x71, 0x2a, 0xdd, 0xd7, 0xc6, 0x4d, 0x78, 0xd6, 0x8b,
0x1c, 0xf2, 0x2a, 0xf0, 0xaa, 0xe3, 0xcd, 0xf8, 0x66, 0xc6, 0x39, 0xda, 0x39, 0xbd, 0x70, 0x3b,
0x69, 0x73, 0x53, 0x72, 0xc5, 0x73, 0xf0, 0xdd, 0x03, 0xc7, 0x4e, 0xcc, 0x19, 0x2e, 0xc8, 0xa6,
0x49, 0x93, 0xca, 0xcc, 0xb1, 0x95, 0x66, 0xce, 0xcc, 0x48, 0xd3, 0x3b, 0x9e, 0xee, 0xf9, 0x77,
0xdf, 0xa8, 0x8c, 0xb6, 0x17, 0x5e, 0xb3, 0xd0, 0xc7, 0x64, 0xae, 0x17, 0x41, 0x28, 0x29, 0xc9,
0x10, 0x53, 0x59, 0x39, 0x92, 0xcc, 0xe5, 0xdd, 0xdd, 0x3f, 0x78, 0xd1, 0x0f, 0x13, 0xec, 0x03,
0x2f, 0xf6, 0xde, 0xa8, 0xd2, 0xd5, 0x3a, 0x17, 0x78, 0x6a, 0x43, 0xba, 0x64, 0x09, 0xdb, 0xf9,
0x70, 0xd7, 0x99, 0x1f, 0x47, 0xed, 0xfc, 0x48, 0xdf, 0xcb, 0x5e, 0xb4, 0x33, 0x8c, 0xfb, 0xdf,
0xf3, 0x41, 0x4e, 0xce, 0xc2, 0x11, 0x81, 0x6a, 0xcc, 0x18, 0x8a, 0x56, 0x7b, 0xd5, 0x7e, 0xaf,
0x89, 0xdc, 0x88, 0xc2, 0x53, 0xeb, 0xc7, 0x6a, 0xea, 0x8a, 0xb3, 0xd6, 0x1b, 0x6a, 0xec, 0x85,
0x41, 0x05, 0x74, 0xc5, 0x98, 0x39, 0xfa, 0x3c, 0x3f, 0xff, 0x76, 0x38, 0x6e, 0xa5, 0x59, 0x01,
0x69, 0x3f, 0x57, 0xf6, 0xf6, 0xdd, 0x92, 0xe9, 0x2f, 0x7c, 0x8d, 0x73, 0xdb, 0x00, 0xcc, 0x07,
0x00, 0x07, 0xdc, 0xb6, 0xdc, 0xec, 0xa7, 0x11, 0xab, 0xee, 0xa9, 0x9e, 0x9e, 0xbd, 0xfd, 0xa1,
0x94, 0x86, 0xa2, 0xfb, 0x3d, 0xf5, 0x9d, 0x0b, 0xb9, 0x2b, 0x18, 0x50, 0x97, 0x78, 0xed, 0x32,
0x20, 0x77, 0x70, 0x21, 0x5e, 0x51, 0xc3, 0xda, 0x06, 0x20, 0x77, 0x35, 0x10, 0x19, 0xcd, 0x67,
0x38, 0x6b, 0x00, 0x96, 0xbe, 0x05, 0x4c, 0x4c, 0xff, 0xe6, 0xfe, 0x77, 0xf7, 0xba, 0xff, 0x00,
0xa8, 0x6c, 0x30, 0x24, 0x92, 0xb0, 0x6e, 0x38, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE delete_body_xpm[1] = {{ png, sizeof( png ), "delete_body_xpm" }};
//EOF

View File

@ -8,72 +8,65 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x04, 0x0f, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xb5, 0x96, 0x5d, 0x48, 0x1c,
0x57, 0x14, 0xc7, 0xb7, 0x49, 0x4b, 0x9a, 0x86, 0x94, 0xa4, 0x49, 0x68, 0x48, 0x42, 0xa0, 0x69,
0x0a, 0x09, 0x69, 0x9b, 0x10, 0x2c, 0x94, 0x42, 0x10, 0x51, 0xf1, 0xe3, 0xc1, 0x17, 0xf1, 0x45,
0x88, 0x50, 0x7c, 0x48, 0x62, 0x08, 0x65, 0x83, 0x09, 0xdd, 0x80, 0x8f, 0x62, 0x7d, 0xb0, 0x88,
0xa0, 0x58, 0x1f, 0x84, 0x68, 0x02, 0x46, 0x90, 0xee, 0x4b, 0x35, 0x89, 0x4b, 0x9a, 0x34, 0x71,
0xb7, 0xae, 0x71, 0x77, 0xd5, 0xb8, 0x8a, 0xbb, 0x31, 0xda, 0x5d, 0xbf, 0x3f, 0xd6, 0x75, 0xc7,
0x75, 0xfc, 0x3c, 0xfd, 0x9f, 0xdb, 0x99, 0x61, 0x9c, 0xcc, 0x9a, 0x06, 0x92, 0x0b, 0x3f, 0x58,
0x98, 0x3b, 0xf7, 0x77, 0xcf, 0xb9, 0xe7, 0x9e, 0x59, 0x8b, 0xc5, 0x62, 0xd9, 0x09, 0xbe, 0x00,
0x5f, 0xbe, 0x23, 0x0e, 0x13, 0x91, 0xc5, 0x08, 0x8f, 0xd3, 0x03, 0x03, 0x03, 0xe1, 0xa9, 0xa9,
0x29, 0xc9, 0xc8, 0xa4, 0xca, 0xe4, 0xa4, 0x34, 0xc1, 0x4c, 0x4c, 0x08, 0xc6, 0x99, 0xf1, 0x71,
0x69, 0x8c, 0x19, 0x1b, 0x93, 0xc2, 0x20, 0x14, 0x0e, 0x4b, 0xff, 0x84, 0xc2, 0x52, 0x6d, 0x6d,
0xed, 0xef, 0x58, 0xf3, 0x63, 0x33, 0xd1, 0xd7, 0x91, 0x48, 0x44, 0x5e, 0x5c, 0x5c, 0x24, 0x3d,
0x51, 0x95, 0x68, 0x94, 0x16, 0x98, 0x85, 0x05, 0x8a, 0x80, 0xf9, 0x48, 0x84, 0xe6, 0xe6, 0xe7,
0x05, 0xb3, 0x73, 0x73, 0x34, 0x33, 0x3b, 0x4b, 0xd3, 0x33, 0x33, 0x04, 0x39, 0x61, 0x33, 0xd4,
0xda, 0xd6, 0xe6, 0xc4, 0x9a, 0xbb, 0x4d, 0x45, 0x58, 0x48, 0x96, 0x24, 0x89, 0x98, 0x98, 0x9e,
0x58, 0x8c, 0x16, 0x19, 0x83, 0x54, 0x2f, 0x64, 0xd1, 0x6f, 0x75, 0x75, 0x64, 0xbb, 0x75, 0x8b,
0x3c, 0x5e, 0x2f, 0xb5, 0x6d, 0x27, 0xc2, 0x02, 0xf2, 0x52, 0x3c, 0x4e, 0x1a, 0x4b, 0x4b, 0x02,
0x89, 0x31, 0x48, 0x59, 0xa8, 0x46, 0x38, 0x0f, 0xd1, 0xed, 0x86, 0x06, 0x72, 0xbb, 0xdd, 0xb4,
0xbc, 0xbc, 0x4c, 0x25, 0x25, 0x25, 0x74, 0xe7, 0xee, 0x5d, 0x4f, 0x42, 0x11, 0x76, 0x2c, 0xf3,
0x44, 0x3d, 0x71, 0x06, 0xd2, 0xb8, 0x22, 0xd6, 0xa4, 0x3a, 0x21, 0xce, 0x88, 0x9a, 0x9a, 0x9a,
0x68, 0x73, 0x73, 0x93, 0x78, 0xf0, 0xf3, 0xc2, 0xc2, 0xc2, 0x68, 0x52, 0x52, 0xd2, 0x09, 0x53,
0x11, 0x26, 0xc8, 0x2b, 0x2b, 0x2b, 0xa4, 0x22, 0x33, 0xb2, 0x2c, 0xd0, 0xc4, 0x3a, 0x21, 0x47,
0xc8, 0x32, 0x4e, 0x5f, 0x55, 0x55, 0x95, 0x88, 0x4c, 0x1d, 0x28, 0x8e, 0x58, 0x46, 0x46, 0x86,
0x33, 0x35, 0x35, 0xf5, 0x80, 0xa9, 0x68, 0x75, 0x75, 0x95, 0x8c, 0x68, 0x62, 0x16, 0x2a, 0x52,
0x4d, 0xa8, 0x44, 0x17, 0x0e, 0x87, 0xe9, 0x97, 0xf2, 0x72, 0x31, 0x5f, 0x1d, 0xa1, 0x50, 0xc8,
0x99, 0x96, 0x96, 0xf6, 0x34, 0x27, 0x27, 0x67, 0xef, 0x16, 0x11, 0x5e, 0x94, 0xd7, 0xd6, 0xd6,
0xc8, 0x88, 0x51, 0x2a, 0x27, 0x90, 0xf5, 0xf6, 0xf6, 0x52, 0x4d, 0x4d, 0x8d, 0x96, 0x42, 0x1e,
0xb8, 0x32, 0x8f, 0x11, 0xd9, 0xa3, 0xac, 0xac, 0xac, 0x5d, 0x5b, 0x44, 0xeb, 0xeb, 0xeb, 0xa4,
0x62, 0x26, 0x65, 0x89, 0xdd, 0x6e, 0xa7, 0xc6, 0xc6, 0x46, 0xaa, 0xaf, 0xaf, 0xa7, 0x3a, 0x54,
0x5a, 0x75, 0x75, 0xb5, 0x48, 0x5d, 0x45, 0x45, 0x05, 0x95, 0x96, 0x96, 0x52, 0x57, 0x57, 0x17,
0xe9, 0x07, 0x8a, 0xe4, 0x4f, 0xc8, 0xec, 0x79, 0x79, 0x79, 0x3b, 0x85, 0x08, 0x3b, 0xdc, 0x22,
0x32, 0x93, 0x72, 0x44, 0x7a, 0xb1, 0xfa, 0x7c, 0x63, 0x63, 0x83, 0xb6, 0x1b, 0xad, 0xad, 0xad,
0x8f, 0x33, 0x33, 0x33, 0x7f, 0xd5, 0x44, 0xfc, 0x82, 0x11, 0xbd, 0x90, 0x45, 0xc6, 0x4d, 0x88,
0x79, 0xba, 0x74, 0x99, 0x0d, 0xa4, 0xd6, 0x97, 0x9d, 0x9d, 0x6d, 0x17, 0x22, 0xe4, 0x5d, 0xe6,
0xfc, 0xaa, 0x98, 0x09, 0x59, 0xd4, 0xd7, 0xd7, 0x47, 0x3e, 0x9f, 0x4f, 0xd0, 0xd3, 0xd3, 0x23,
0xce, 0xa6, 0xbf, 0xbf, 0x9f, 0xcf, 0x83, 0xfc, 0x7e, 0xbf, 0x28, 0x0c, 0xfd, 0x40, 0xba, 0x07,
0x73, 0x73, 0x73, 0x87, 0x90, 0xbe, 0x93, 0xa6, 0x22, 0x33, 0x29, 0xa7, 0x2b, 0x10, 0x08, 0x88,
0x05, 0x59, 0xe0, 0xf1, 0x78, 0xc4, 0x99, 0xb8, 0x5c, 0x2e, 0x72, 0x38, 0x1c, 0x64, 0xb5, 0x5a,
0x45, 0x91, 0xa8, 0x03, 0x05, 0x34, 0x92, 0x9f, 0x9f, 0x1f, 0x4c, 0x4f, 0x4f, 0x3f, 0xa7, 0x15,
0x03, 0x8b, 0xcc, 0xc2, 0x36, 0xca, 0x8c, 0xe7, 0xc6, 0xd5, 0xc8, 0x45, 0x82, 0x46, 0x4a, 0x68,
0xb6, 0xda, 0x7b, 0x98, 0x3b, 0x51, 0x50, 0x50, 0xf0, 0x02, 0x91, 0x5c, 0xd8, 0x52, 0xde, 0x31,
0xdd, 0x3d, 0x52, 0x0f, 0x5a, 0x2d, 0xd5, 0x37, 0xc9, 0xda, 0xdb, 0xdb, 0xa9, 0xb3, 0xb3, 0x53,
0x1f, 0xc9, 0x5a, 0x51, 0x51, 0xd1, 0xf3, 0x94, 0x94, 0x94, 0xec, 0xd7, 0x3e, 0x13, 0xa1, 0xb1,
0xf1, 0xf8, 0xf4, 0xf4, 0x34, 0xe1, 0xd3, 0x40, 0x73, 0xe8, 0xc8, 0xdc, 0x3c, 0x79, 0xa7, 0xbc,
0xe0, 0x76, 0x32, 0x9e, 0xc7, 0xe5, 0xae, 0xbf, 0x3f, 0x65, 0x65, 0x65, 0xd1, 0xe4, 0xe4, 0xe4,
0x8b, 0x66, 0x2d, 0xe8, 0x93, 0x62, 0xdb, 0xcf, 0x0d, 0x2f, 0xfc, 0x03, 0x9b, 0x4f, 0x9e, 0xfc,
0x85, 0x9c, 0xff, 0x2d, 0x0e, 0x77, 0x06, 0xad, 0x9f, 0x2f, 0xa5, 0x99, 0x4c, 0x15, 0xf1, 0x99,
0x54, 0x56, 0x56, 0x8a, 0x79, 0x3c, 0x9a, 0xee, 0xdd, 0xe3, 0xfb, 0x14, 0x34, 0x6d, 0xaa, 0x8a,
0xed, 0x80, 0xf5, 0xe6, 0xcd, 0x47, 0xf8, 0xc0, 0xd1, 0xcb, 0x97, 0xc3, 0xd4, 0xd1, 0xe1, 0x24,
0xa7, 0xd3, 0x25, 0x22, 0xe4, 0x4e, 0xa0, 0xde, 0x15, 0x63, 0x54, 0x9c, 0x3a, 0x3e, 0x9b, 0x72,
0xb4, 0xa0, 0x96, 0x96, 0x16, 0x6a, 0x6e, 0x6e, 0xa6, 0x76, 0x87, 0xc3, 0x99, 0x50, 0xa4, 0xc8,
0x8e, 0x5e, 0x2b, 0x2e, 0x76, 0x73, 0xea, 0x78, 0xa1, 0x87, 0x0f, 0x1d, 0xd4, 0x8b, 0x72, 0xc6,
0x47, 0x51, 0x2c, 0x98, 0x28, 0x2a, 0x7e, 0xc6, 0x1b, 0xea, 0xee, 0xee, 0x16, 0x9b, 0x72, 0xbc,
0x49, 0xa4, 0xc8, 0xbe, 0xfa, 0xe9, 0xc6, 0x8d, 0x1e, 0x96, 0x79, 0xbd, 0x3e, 0xe2, 0x54, 0xf2,
0x8e, 0xf9, 0xbc, 0x8c, 0x25, 0xaf, 0x17, 0xa9, 0xbd, 0x90, 0x1b, 0xef, 0xff, 0x12, 0x29, 0xb2,
0x13, 0x57, 0xac, 0xd6, 0x8e, 0x57, 0x23, 0xa3, 0xd4, 0x76, 0xff, 0x01, 0x0d, 0x0f, 0xbf, 0x12,
0x67, 0xa1, 0xaf, 0xc2, 0x44, 0x22, 0xf9, 0x6d, 0x44, 0x8a, 0xec, 0xf0, 0xd5, 0xeb, 0xd7, 0xff,
0x70, 0x7b, 0xbc, 0x1b, 0xef, 0x55, 0xa4, 0xc8, 0xf6, 0xfd, 0x78, 0xe9, 0x72, 0xe5, 0x33, 0x57,
0xe7, 0x48, 0xbf, 0xdf, 0x3f, 0x1a, 0x08, 0x04, 0x47, 0x83, 0xc1, 0xff, 0x40, 0x87, 0xd0, 0x18,
0x1a, 0x1a, 0xd2, 0x18, 0x1c, 0x1c, 0x1c, 0xb5, 0xd9, 0x6c, 0x65, 0x78, 0xf7, 0xc3, 0xed, 0x8a,
0x61, 0x07, 0xff, 0x4d, 0x02, 0x9f, 0x82, 0x83, 0xe0, 0x08, 0xe0, 0x1e, 0xf5, 0x1d, 0xf8, 0x01,
0x24, 0x83, 0x54, 0x90, 0xa6, 0xc0, 0xbf, 0x53, 0xc0, 0x05, 0xf0, 0x3d, 0x38, 0x0f, 0xbe, 0x01,
0xc7, 0xc1, 0x7e, 0xb0, 0x07, 0x7c, 0xc4, 0x0b, 0x1b, 0x45, 0x1f, 0x28, 0x0f, 0x78, 0xc2, 0x3e,
0x70, 0x48, 0x91, 0x1d, 0x57, 0xfe, 0x18, 0x9e, 0x02, 0x67, 0xc0, 0xb7, 0xe0, 0x2c, 0x77, 0x14,
0xbe, 0xec, 0x5c, 0x40, 0xca, 0x1f, 0xd0, 0x63, 0xe0, 0x73, 0xf0, 0x19, 0xd8, 0xab, 0x6c, 0x7a,
0x87, 0xba, 0xfe, 0xbf, 0xf5, 0x3f, 0xf0, 0x2e, 0x64, 0x60, 0x78, 0x06, 0x00, 0x00, 0x00, 0x00,
0xce, 0x00, 0x00, 0x03, 0x9f, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xb5, 0xd5, 0x7b, 0x4c, 0x53,
0x57, 0x1c, 0x07, 0xf0, 0x3b, 0xe9, 0x7d, 0x34, 0xc6, 0xc5, 0x19, 0x75, 0x86, 0x18, 0x8c, 0x13,
0xa7, 0x38, 0xa8, 0xd2, 0x56, 0xb9, 0x97, 0xd4, 0xf6, 0xb6, 0x10, 0x47, 0x70, 0x62, 0xf7, 0x72,
0x9a, 0x0d, 0x0d, 0x2e, 0x95, 0x5b, 0x68, 0x79, 0x14, 0x79, 0x88, 0x2e, 0x2c, 0x12, 0x56, 0x11,
0x19, 0x2e, 0x99, 0x61, 0xd2, 0x1a, 0x93, 0x86, 0x7f, 0x36, 0xfe, 0x51, 0x16, 0x08, 0x69, 0x78,
0x88, 0xf2, 0xe8, 0x58, 0xed, 0x2d, 0xf8, 0x98, 0x6c, 0x4b, 0xb6, 0x2c, 0x8c, 0xa1, 0x49, 0xfd,
0xc7, 0x2c, 0xcb, 0x96, 0xb0, 0xef, 0x4e, 0x6b, 0x87, 0xd3, 0xa8, 0x83, 0xa6, 0x34, 0xf9, 0x26,
0xe7, 0x8f, 0x7b, 0xcf, 0xe7, 0x9e, 0x73, 0x7e, 0xe7, 0x57, 0x8a, 0xa2, 0xa8, 0x04, 0x92, 0xf5,
0x24, 0x1b, 0xe2, 0x94, 0x35, 0x00, 0xa8, 0x27, 0x13, 0xfe, 0x6d, 0x69, 0x6f, 0x6f, 0xbf, 0xdd,
0xdd, 0xdd, 0x3d, 0x1d, 0x6b, 0xba, 0xba, 0xba, 0xa6, 0x3b, 0x3a, 0x3a, 0x66, 0xc2, 0xe3, 0x92,
0x92, 0x92, 0x76, 0x32, 0x27, 0xf7, 0x34, 0x28, 0xb5, 0xbf, 0xbf, 0x3f, 0x34, 0x3e, 0x3e, 0x8e,
0x58, 0x22, 0xcb, 0x32, 0x1a, 0x1b, 0x1b, 0x51, 0x58, 0x21, 0x81, 0x7c, 0x30, 0xea, 0xeb, 0xeb,
0xbf, 0x26, 0x73, 0x2a, 0xe3, 0x0e, 0xb5, 0xb4, 0xb4, 0xa0, 0xe0, 0x62, 0x21, 0x32, 0xbf, 0x30,
0x41, 0xaa, 0xb6, 0xc2, 0x6e, 0xb7, 0xfb, 0xe2, 0x0e, 0x05, 0x83, 0x41, 0x94, 0x3a, 0x1d, 0x50,
0x79, 0x32, 0xb1, 0xf5, 0x1c, 0x0f, 0x43, 0xf3, 0x2e, 0xec, 0xd9, 0x97, 0x77, 0x5f, 0xa7, 0xd3,
0x65, 0xc7, 0x7d, 0x45, 0xad, 0xad, 0xad, 0x38, 0x7c, 0xd1, 0x1a, 0x81, 0xb6, 0x39, 0x79, 0x64,
0xd6, 0x1a, 0x7e, 0x37, 0xe5, 0x98, 0x64, 0xa3, 0xd1, 0xa8, 0x89, 0x2b, 0x14, 0x08, 0x04, 0x50,
0xf7, 0x71, 0x1d, 0xde, 0x76, 0x1f, 0x88, 0x40, 0xea, 0x5a, 0x1e, 0xda, 0x22, 0x7e, 0x52, 0xcc,
0x32, 0xde, 0xd0, 0xeb, 0xf5, 0x29, 0x31, 0x41, 0x63, 0x63, 0x63, 0xf0, 0xf9, 0x7c, 0x18, 0x1d,
0x1d, 0xc5, 0xc8, 0xc8, 0x08, 0x86, 0x87, 0x87, 0x31, 0x34, 0x34, 0x84, 0x9e, 0x9e, 0x1e, 0x58,
0xcb, 0x8a, 0x90, 0xf5, 0x69, 0x6e, 0x04, 0xd2, 0xd8, 0x78, 0xec, 0xc8, 0xe7, 0x83, 0x7a, 0x51,
0x3f, 0x99, 0x9e, 0x9e, 0xbe, 0x6e, 0x41, 0xd0, 0xd5, 0xc9, 0x21, 0x34, 0x5c, 0x69, 0x42, 0xed,
0xa5, 0x3a, 0x54, 0x7f, 0x79, 0x02, 0x95, 0x9e, 0x63, 0x70, 0xb8, 0xaa, 0x50, 0x7a, 0xae, 0x02,
0xb6, 0xe6, 0x52, 0x58, 0x3f, 0xb1, 0xe1, 0xc3, 0xa6, 0xc2, 0x39, 0x68, 0xfb, 0x21, 0x1e, 0xbc,
0x59, 0xf8, 0x46, 0xa3, 0xd1, 0xdc, 0x54, 0xa9, 0x54, 0xab, 0xe7, 0x0d, 0x7d, 0x36, 0x75, 0x1e,
0xc9, 0x0f, 0x04, 0xbc, 0x3a, 0x2d, 0x60, 0xd3, 0x1d, 0x01, 0x29, 0xdf, 0x0a, 0xd8, 0xd2, 0x27,
0x20, 0xf5, 0x92, 0x80, 0x34, 0x8f, 0x30, 0x77, 0x46, 0xff, 0x85, 0x76, 0xbc, 0x49, 0x30, 0x13,
0x7f, 0x4d, 0xad, 0x56, 0x77, 0x2f, 0x3a, 0x94, 0x91, 0x95, 0xe1, 0x23, 0xab, 0xf2, 0xce, 0x1b,
0xea, 0xff, 0xfe, 0x0a, 0xea, 0x46, 0x9d, 0xa8, 0xea, 0xf9, 0x08, 0x15, 0x97, 0x6b, 0xe1, 0xf8,
0xaa, 0x06, 0xa5, 0x9e, 0x4a, 0xd8, 0x5d, 0x0e, 0xd8, 0x3e, 0x2f, 0x83, 0xd4, 0x54, 0x8c, 0xc3,
0xcd, 0x47, 0x1e, 0x83, 0x32, 0xcc, 0xbc, 0x4c, 0x90, 0x3b, 0x24, 0x49, 0xf3, 0x86, 0x26, 0x26,
0x26, 0x22, 0x05, 0x30, 0x38, 0x38, 0x88, 0x81, 0x81, 0x01, 0x90, 0x77, 0xd0, 0xd7, 0xd7, 0x87,
0xde, 0xde, 0x5e, 0x74, 0x76, 0x76, 0x42, 0xb2, 0x5b, 0xf1, 0xfa, 0xd9, 0xbc, 0x47, 0xc5, 0x70,
0x90, 0xbf, 0x4d, 0x8a, 0xe1, 0x07, 0x82, 0x6c, 0x8e, 0x5b, 0x0b, 0x6a, 0x68, 0x68, 0xc0, 0x7b,
0xee, 0xfc, 0x47, 0x5b, 0x57, 0xcc, 0xff, 0x24, 0x66, 0x8b, 0xb7, 0x44, 0x51, 0xd4, 0xc6, 0xed,
0x1e, 0xb9, 0xdd, 0x6e, 0x58, 0xdc, 0xc5, 0x73, 0x67, 0x24, 0x1c, 0xd7, 0xff, 0x21, 0xe6, 0x18,
0x03, 0x04, 0x11, 0xe3, 0xdc, 0x82, 0xca, 0xe7, 0x5a, 0x90, 0xee, 0x4c, 0x36, 0xde, 0x38, 0x90,
0x17, 0x22, 0x17, 0xf5, 0xad, 0xa7, 0xb5, 0xa0, 0x14, 0xaf, 0xd7, 0x7b, 0x37, 0xd6, 0x15, 0x39,
0x4f, 0x39, 0x91, 0xef, 0xb1, 0x20, 0xa3, 0xd5, 0x80, 0xc2, 0x63, 0x12, 0x24, 0x49, 0x0a, 0x3c,
0xab, 0xa9, 0x2e, 0xb5, 0x48, 0x05, 0x17, 0x26, 0xbe, 0xbb, 0xfe, 0x57, 0x40, 0xf6, 0x47, 0xf6,
0x7c, 0x21, 0x90, 0xdf, 0xef, 0xc7, 0xc9, 0xfa, 0x93, 0x90, 0x6a, 0x8a, 0xe0, 0x72, 0xb9, 0x9e,
0xfd, 0x37, 0x11, 0xd5, 0x56, 0x96, 0x57, 0xda, 0xbc, 0x77, 0xef, 0xcd, 0xe0, 0xb7, 0x7b, 0x53,
0xb8, 0x71, 0xf3, 0x61, 0xbb, 0x59, 0x48, 0x41, 0x84, 0x2b, 0x30, 0x3c, 0x7e, 0x2e, 0x14, 0xc5,
0xd6, 0x1e, 0xad, 0x29, 0x1b, 0x09, 0x85, 0x42, 0x98, 0x9d, 0x9d, 0x45, 0x78, 0x75, 0xb1, 0x6c,
0xe5, 0xff, 0x42, 0x51, 0x6c, 0x63, 0xf5, 0x71, 0x87, 0x1c, 0xc6, 0x7e, 0x9e, 0xfa, 0x31, 0x72,
0xd8, 0x8b, 0x02, 0x45, 0xb1, 0x57, 0xca, 0xab, 0xec, 0x57, 0x7f, 0x9d, 0xf9, 0xe5, 0x6f, 0x59,
0x0e, 0x2c, 0x1e, 0x14, 0xc5, 0xd6, 0xd8, 0x1c, 0xd6, 0xcb, 0xc1, 0x5b, 0xfe, 0x3f, 0x17, 0x15,
0x8a, 0x62, 0xcb, 0xf7, 0xbf, 0xbf, 0xef, 0x74, 0x5b, 0x5b, 0x9b, 0x9f, 0x5c, 0xca, 0xeb, 0xf3,
0x8d, 0xd9, 0x6c, 0x3e, 0x41, 0xde, 0x55, 0x3c, 0xaf, 0x18, 0x96, 0x50, 0x54, 0x22, 0x47, 0x51,
0xdb, 0x5e, 0xa4, 0x69, 0xc3, 0x4a, 0x8e, 0xdb, 0x9d, 0x48, 0xd3, 0x7b, 0x93, 0x19, 0x26, 0x77,
0x3b, 0xcb, 0xbe, 0x9b, 0xc9, 0x30, 0x07, 0x0d, 0x2c, 0x6b, 0xc9, 0x62, 0xd9, 0xa2, 0x6c, 0x96,
0xb5, 0x92, 0x1c, 0x21, 0xe3, 0x02, 0x23, 0xc3, 0xec, 0xdf, 0x49, 0xd3, 0x79, 0xbc, 0x42, 0x61,
0x52, 0x2b, 0x14, 0xda, 0xb4, 0x84, 0x04, 0x6d, 0x12, 0xc3, 0x68, 0x5f, 0xa2, 0xa8, 0xe4, 0xa5,
0x14, 0xb5, 0x8a, 0x0e, 0x4f, 0xfc, 0x24, 0xf4, 0x02, 0xa9, 0x72, 0x3a, 0xfc, 0x00, 0xc3, 0xa8,
0x97, 0xd3, 0xb4, 0x69, 0x15, 0xc7, 0xed, 0x4d, 0x64, 0x98, 0x0f, 0x92, 0x38, 0xce, 0xb2, 0x81,
0x65, 0x4b, 0x36, 0x2b, 0x95, 0x47, 0x5f, 0xe3, 0xb8, 0x2a, 0x15, 0xc7, 0xd5, 0x6c, 0x55, 0x2a,
0xab, 0x53, 0x59, 0xb6, 0x3c, 0x85, 0xe3, 0xa4, 0x8d, 0x0c, 0x73, 0x68, 0x3d, 0xcb, 0xbe, 0xb3,
0x56, 0xa1, 0xc8, 0x79, 0x99, 0xa6, 0x75, 0x2b, 0x28, 0x2a, 0x6d, 0xd9, 0xc3, 0x8f, 0xa6, 0x96,
0xfc, 0x3b, 0xff, 0x3f, 0xa9, 0xa3, 0xc3, 0x80, 0xb9, 0x3a, 0x7a, 0x3f, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};

View File

@ -8,89 +8,84 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x05, 0x17, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x96, 0xdf, 0x6f, 0x14,
0x55, 0x14, 0xc7, 0x3f, 0xf7, 0xce, 0xce, 0xee, 0x4e, 0x77, 0xbb, 0x3b, 0x4a, 0x2b, 0x5d, 0x37,
0x82, 0xd0, 0x2e, 0x5b, 0xf9, 0xb5, 0x12, 0xe8, 0x83, 0x18, 0xa8, 0xc6, 0x44, 0x94, 0x84, 0xa4,
0x2f, 0x18, 0x63, 0x24, 0x06, 0x49, 0x34, 0xf2, 0xa2, 0x89, 0xf2, 0xe0, 0x9b, 0x89, 0x7f, 0x00,
0x09, 0xd1, 0xc4, 0x12, 0xab, 0x31, 0x3c, 0x18, 0x5e, 0x04, 0x2d, 0x18, 0x1e, 0x0c, 0x62, 0xd1,
0x18, 0x52, 0x13, 0x28, 0x3f, 0x0a, 0xa5, 0x34, 0x50, 0x6a, 0x61, 0xe9, 0x8f, 0xfd, 0x31, 0x65,
0xa7, 0xdd, 0xdd, 0x99, 0xb9, 0x3e, 0x40, 0x27, 0x5d, 0xba, 0x18, 0x88, 0x89, 0x27, 0x39, 0x99,
0x3b, 0xb9, 0x77, 0xce, 0xf7, 0x7c, 0xcf, 0xaf, 0xb9, 0x42, 0x29, 0xc5, 0xff, 0x21, 0x01, 0x80,
0x83, 0x07, 0x0f, 0x7e, 0x2f, 0x84, 0x78, 0x33, 0x10, 0x08, 0xa0, 0x69, 0x1a, 0x4a, 0x29, 0x1c,
0xc7, 0xc1, 0x75, 0x5d, 0x1c, 0xc7, 0xf1, 0xf5, 0x71, 0xdf, 0xa5, 0x94, 0x5f, 0xf5, 0xf4, 0xf4,
0x7c, 0x00, 0xc0, 0x81, 0x03, 0x07, 0x62, 0xdd, 0xdd, 0xdd, 0x95, 0x6a, 0xb5, 0xaa, 0x5c, 0xd7,
0xad, 0xab, 0x8e, 0xe3, 0xf8, 0x5a, 0xad, 0x56, 0x6b, 0xb4, 0x52, 0xa9, 0xf8, 0x5a, 0x2e, 0x97,
0x7d, 0xb5, 0x2c, 0x4b, 0xed, 0xda, 0xb5, 0xcb, 0x53, 0x4a, 0xa1, 0x94, 0x22, 0xe0, 0xba, 0xae,
0x94, 0x52, 0x7a, 0x42, 0x08, 0x6e, 0xde, 0xbc, 0x89, 0x10, 0x02, 0x00, 0x21, 0x44, 0xcd, 0xba,
0xde, 0xf3, 0x61, 0x22, 0xa5, 0xc4, 0x34, 0x4d, 0x94, 0x52, 0xa2, 0x26, 0x74, 0x9e, 0xe7, 0xd5,
0x35, 0x5e, 0x6f, 0xfd, 0x28, 0x40, 0xf5, 0xf6, 0x03, 0x00, 0xae, 0xeb, 0x02, 0x60, 0x59, 0x16,
0xf9, 0x7c, 0x9e, 0x65, 0xcb, 0x96, 0x21, 0xa5, 0x64, 0x64, 0x64, 0x84, 0x07, 0x8b, 0xe5, 0xdf,
0x40, 0x94, 0x52, 0xa4, 0xd3, 0x69, 0xff, 0xcc, 0xc2, 0x6f, 0x17, 0x31, 0x6a, 0x6b, 0x6b, 0x23,
0x14, 0x0a, 0x61, 0xdb, 0x36, 0xa9, 0x54, 0xea, 0xb1, 0xc2, 0xa7, 0x94, 0x42, 0x4a, 0x89, 0x94,
0x72, 0x31, 0x50, 0xb1, 0x58, 0xc4, 0x34, 0x4d, 0x00, 0x4c, 0xd3, 0x44, 0x08, 0x41, 0xb9, 0x5c,
0x46, 0x08, 0xc1, 0xb5, 0x6b, 0xd7, 0xfc, 0xc3, 0x96, 0x65, 0x31, 0x33, 0x33, 0x83, 0x61, 0x18,
0x98, 0xa6, 0xc9, 0xe4, 0xe4, 0x24, 0xd5, 0x6a, 0x95, 0x4c, 0x26, 0x43, 0x4b, 0x4b, 0x4b, 0x5d,
0xd6, 0x8b, 0x18, 0xb9, 0xae, 0x8b, 0x52, 0x0a, 0x21, 0x84, 0xbf, 0x29, 0x84, 0x20, 0x95, 0x4a,
0xe1, 0xba, 0x2e, 0x03, 0x03, 0x03, 0x6c, 0xd8, 0xb0, 0x81, 0x58, 0x2c, 0xce, 0xe8, 0x1d, 0x8b,
0xdb, 0xd3, 0x77, 0xe9, 0xd8, 0xbc, 0x96, 0x66, 0xd3, 0x60, 0x6c, 0x6c, 0x8c, 0x33, 0x67, 0xce,
0xb0, 0x69, 0xd3, 0x26, 0x74, 0x5d, 0xf7, 0xed, 0x2c, 0xb4, 0xe5, 0x03, 0x39, 0x8e, 0x53, 0xd7,
0xa3, 0xa1, 0xa1, 0x21, 0x6c, 0xdb, 0x66, 0xeb, 0xd6, 0x4e, 0xbe, 0x3b, 0x71, 0x91, 0x5f, 0xce,
0xf6, 0x93, 0x68, 0x8a, 0xf2, 0x74, 0x53, 0x94, 0x1f, 0x7e, 0xbf, 0xc1, 0x64, 0x71, 0x96, 0xf7,
0xb6, 0xb7, 0xb3, 0x65, 0xcb, 0x16, 0x8e, 0x1f, 0x3f, 0x4e, 0x22, 0x91, 0x60, 0xdd, 0xba, 0x75,
0xbe, 0x9d, 0xf9, 0x94, 0x2c, 0x2a, 0x86, 0x79, 0x4f, 0xe6, 0x81, 0x4a, 0xa5, 0x12, 0x9d, 0x9d,
0x2f, 0xf1, 0xe1, 0x17, 0xa7, 0x58, 0xb2, 0xc4, 0xe4, 0x93, 0xb7, 0x5f, 0xa4, 0xe5, 0x09, 0x83,
0x90, 0xae, 0x11, 0xd2, 0x25, 0xd9, 0xfc, 0x2c, 0x5f, 0xf7, 0x0e, 0x70, 0xf1, 0x7a, 0x8e, 0x77,
0x5f, 0x7f, 0x8d, 0xd3, 0xa7, 0x4f, 0xa3, 0x69, 0x5a, 0x5d, 0x20, 0x09, 0x50, 0xad, 0x56, 0x6b,
0x28, 0x0b, 0x21, 0x18, 0x1d, 0x1d, 0x25, 0x93, 0xc9, 0xf0, 0xcd, 0xcf, 0xe7, 0x09, 0x87, 0xc3,
0x6c, 0x59, 0x9b, 0xa0, 0x41, 0xbf, 0x77, 0xd6, 0x75, 0x1d, 0x3c, 0xcf, 0xe3, 0xa9, 0x58, 0x88,
0xf7, 0x76, 0xac, 0x65, 0xe0, 0x7a, 0x81, 0xc1, 0xd1, 0x3c, 0x89, 0x44, 0x82, 0xf1, 0xf1, 0x71,
0xbf, 0x18, 0x6a, 0x80, 0x0a, 0x85, 0x82, 0xcf, 0x68, 0x21, 0xab, 0xc1, 0xc1, 0x41, 0x22, 0x91,
0x28, 0x27, 0xcf, 0xdd, 0xe1, 0xf9, 0xe7, 0x9e, 0xc1, 0x93, 0x3a, 0x9a, 0xae, 0x23, 0xb5, 0x00,
0x0a, 0x49, 0xd5, 0x05, 0x57, 0x41, 0x3c, 0x6a, 0xb0, 0x6b, 0x7b, 0x86, 0x6f, 0x4f, 0x5c, 0x26,
0x99, 0x4c, 0x72, 0xeb, 0xd6, 0xad, 0x87, 0x87, 0xce, 0x71, 0x9c, 0x45, 0x4d, 0x39, 0x31, 0x31,
0xc1, 0xdf, 0x93, 0x16, 0x8d, 0x0d, 0x01, 0x66, 0x66, 0x66, 0x98, 0xb3, 0x4b, 0x98, 0x86, 0x20,
0x12, 0xd6, 0xd1, 0x03, 0x92, 0x80, 0x14, 0x68, 0x12, 0x04, 0xd0, 0xf2, 0x84, 0xc1, 0xdd, 0x59,
0x07, 0x4d, 0xd3, 0xc8, 0xe5, 0x72, 0xbe, 0x9d, 0xba, 0x39, 0x7a, 0x30, 0x74, 0x73, 0x73, 0x73,
0xdc, 0xc9, 0x95, 0x68, 0x8c, 0x1a, 0xc4, 0x62, 0x31, 0x00, 0xb2, 0x45, 0x87, 0x15, 0x86, 0x81,
0x12, 0x12, 0x39, 0x0f, 0xa6, 0x09, 0xdc, 0xb2, 0x83, 0xd4, 0x24, 0xe5, 0x4a, 0xc5, 0x6f, 0x0d,
0xa5, 0x54, 0x7d, 0x46, 0x0f, 0x4a, 0xa5, 0x52, 0x61, 0x79, 0x73, 0x03, 0x77, 0xa6, 0x2c, 0x2c,
0xcb, 0xba, 0xdf, 0x4b, 0x30, 0x9d, 0x2f, 0xb2, 0xac, 0x39, 0x82, 0x19, 0x09, 0x12, 0xd4, 0x40,
0xe0, 0x31, 0x95, 0x2f, 0x80, 0xe7, 0x12, 0xd4, 0x75, 0xc2, 0xe1, 0x70, 0xfd, 0x11, 0x54, 0x28,
0x14, 0xfc, 0x86, 0x5d, 0x98, 0xa7, 0x44, 0x22, 0x81, 0xc4, 0x21, 0xa4, 0x6b, 0x04, 0x82, 0x06,
0x11, 0x23, 0xe8, 0xef, 0x17, 0x2b, 0x12, 0x47, 0x28, 0xe2, 0x0d, 0x41, 0x1a, 0x42, 0x1a, 0xb9,
0xf2, 0x2c, 0x6b, 0x57, 0x3c, 0x89, 0x6d, 0xdb, 0x34, 0x37, 0x37, 0x2f, 0x4a, 0x83, 0x5f, 0x75,
0x8e, 0xe3, 0xd4, 0x84, 0x0e, 0xa0, 0xa3, 0xa3, 0x83, 0xbe, 0xbe, 0x3e, 0xf6, 0xbd, 0x91, 0xa1,
0xaf, 0x7f, 0x98, 0x7c, 0xa1, 0x88, 0x65, 0xdd, 0x63, 0x97, 0xcb, 0x15, 0x98, 0x98, 0x98, 0xe2,
0xe6, 0xdf, 0xe3, 0x9c, 0xbf, 0x3c, 0xc2, 0x4f, 0xbf, 0x0d, 0xf1, 0xfe, 0x8e, 0x0c, 0xfd, 0xfd,
0xfd, 0xac, 0x5e, 0xbd, 0xba, 0x2e, 0x23, 0xbf, 0xbc, 0x01, 0x72, 0xb9, 0x1c, 0x83, 0x83, 0x83,
0x94, 0xcb, 0x65, 0x5a, 0x5b, 0x5b, 0xb1, 0x6d, 0x9b, 0x78, 0xc8, 0xe5, 0x9d, 0x57, 0x57, 0xf1,
0xe7, 0xc0, 0x18, 0xd6, 0xac, 0x22, 0x12, 0x6d, 0xa4, 0x31, 0x16, 0x27, 0x1c, 0x89, 0x33, 0x5e,
0x14, 0x9c, 0xba, 0x30, 0xcd, 0x67, 0xbb, 0x5f, 0xa0, 0x3c, 0x57, 0x42, 0x08, 0xc1, 0xf0, 0xf0,
0xf0, 0xc3, 0x81, 0xe6, 0x73, 0xa4, 0x69, 0x1a, 0xa9, 0x54, 0x8a, 0x68, 0x34, 0x0a, 0xc0, 0xfa,
0xf5, 0xeb, 0xd9, 0xbf, 0x7f, 0x3f, 0xc9, 0xc8, 0x2c, 0x5f, 0x7e, 0xf4, 0x32, 0x21, 0x65, 0xd3,
0x77, 0x66, 0x90, 0xde, 0x5f, 0xcf, 0x73, 0xfa, 0xaf, 0xab, 0x2c, 0x8d, 0x0a, 0x0e, 0x7e, 0xfc,
0x0a, 0x21, 0x55, 0xe2, 0xea, 0xd5, 0xab, 0xd8, 0xb6, 0x4d, 0x3e, 0x9f, 0xe7, 0xe4, 0xc9, 0x93,
0x35, 0x85, 0x00, 0x20, 0xba, 0xba, 0xba, 0xcc, 0x78, 0x3c, 0x9e, 0xed, 0xee, 0xee, 0x0e, 0x15,
0x8b, 0xc5, 0x9a, 0xc9, 0x3b, 0xef, 0xd9, 0xd1, 0xa3, 0x47, 0xc9, 0xe5, 0x72, 0x6c, 0xdb, 0xb6,
0x8d, 0x64, 0x32, 0x89, 0x61, 0x18, 0x94, 0x4a, 0x25, 0x26, 0x26, 0x26, 0x38, 0x77, 0xee, 0x1c,
0xae, 0xeb, 0x12, 0x8d, 0x46, 0xb9, 0x70, 0xe1, 0x02, 0xa6, 0x69, 0xd2, 0xda, 0xda, 0x4a, 0xa9,
0x54, 0xe2, 0xf0, 0xe1, 0xc3, 0x1c, 0x39, 0x72, 0x44, 0xf8, 0x40, 0x91, 0x48, 0x24, 0xdb, 0xd3,
0xd3, 0x13, 0x2a, 0x16, 0x8b, 0x35, 0x03, 0x51, 0xd3, 0x34, 0x84, 0x10, 0x48, 0x29, 0xc9, 0x66,
0xb3, 0x5c, 0xba, 0x74, 0x89, 0x91, 0x91, 0x11, 0xa6, 0xa6, 0xa6, 0x48, 0x26, 0x93, 0xb4, 0xb7,
0xb7, 0xd3, 0xd1, 0xd1, 0xc1, 0xed, 0xdb, 0xb7, 0x39, 0x7b, 0xf6, 0x2c, 0xba, 0xae, 0x33, 0x34,
0x34, 0x44, 0x28, 0x14, 0x22, 0x9d, 0x4e, 0x73, 0xe3, 0xc6, 0x0d, 0x2a, 0x95, 0x4a, 0xdb, 0xbe,
0x7d, 0xfb, 0x46, 0xc4, 0xce, 0x9d, 0x3b, 0xe3, 0x4a, 0xa9, 0xc9, 0x43, 0x87, 0x0e, 0xe9, 0x0b,
0x63, 0xeb, 0x79, 0x9e, 0xcf, 0xee, 0xc1, 0x91, 0x5f, 0x4f, 0xb2, 0xd9, 0x2c, 0x7d, 0x7d, 0x7d,
0x34, 0x36, 0x36, 0x72, 0xe5, 0xca, 0x15, 0x3c, 0xcf, 0x23, 0x9d, 0x4e, 0x63, 0x59, 0xd6, 0xec,
0xf4, 0xf4, 0xf4, 0x66, 0x01, 0x3c, 0xd9, 0xd5, 0xd5, 0xf5, 0xa3, 0x10, 0x62, 0xf3, 0xc2, 0x81,
0xb8, 0x30, 0x74, 0x8f, 0xfa, 0xdb, 0x0e, 0x06, 0x83, 0x6c, 0xdc, 0xb8, 0x51, 0xae, 0x5c, 0xb9,
0x92, 0xe1, 0xe1, 0x61, 0x9a, 0x9a, 0x9a, 0xe8, 0xec, 0xec, 0xe4, 0xd8, 0xb1, 0x63, 0x7f, 0x08,
0xc0, 0x04, 0x96, 0xc6, 0x62, 0xb1, 0x67, 0x85, 0x10, 0xd1, 0xf9, 0x26, 0xe6, 0xde, 0x74, 0x79,
0xec, 0x4b, 0x5f, 0x53, 0x53, 0x93, 0xb1, 0x67, 0xcf, 0x9e, 0x4f, 0xd7, 0xac, 0x59, 0xb3, 0xaa,
0xbd, 0xbd, 0x9d, 0x58, 0x2c, 0x46, 0x6f, 0x6f, 0xef, 0x80, 0xb8, 0xef, 0xb9, 0x04, 0xc2, 0xf7,
0x35, 0xf8, 0x1f, 0xef, 0x8a, 0x6a, 0xf9, 0xf2, 0xe5, 0x6a, 0xef, 0xde, 0xbd, 0x9f, 0xb7, 0xb5,
0xb5, 0xed, 0xae, 0x54, 0x2a, 0x77, 0xc7, 0xc6, 0xc6, 0xde, 0xfa, 0x07, 0x60, 0xff, 0xc9, 0x15,
0x2a, 0xd2, 0x37, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x04, 0xbb, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x96, 0x4b, 0x6c, 0x1b,
0x55, 0x14, 0x86, 0xbf, 0x7b, 0x67, 0xfc, 0x4a, 0x1c, 0xdb, 0x72, 0xd3, 0x34, 0x4a, 0xe3, 0x28,
0xa5, 0xb1, 0xe2, 0x3a, 0x21, 0x88, 0x22, 0x0a, 0x34, 0x52, 0xda, 0xaa, 0xa2, 0x5d, 0x20, 0xd2,
0xec, 0x40, 0xa2, 0x11, 0x0b, 0x58, 0x50, 0x56, 0xac, 0x91, 0x8a, 0x58, 0x21, 0x58, 0x74, 0xd3,
0x15, 0xad, 0x94, 0x45, 0x57, 0x45, 0x42, 0x42, 0x65, 0x55, 0xb1, 0xa0, 0x40, 0xc5, 0x06, 0xa5,
0x4f, 0x35, 0xcd, 0x4b, 0x4e, 0x1f, 0x4e, 0x5b, 0x8b, 0x46, 0x69, 0x1c, 0xb7, 0x71, 0x33, 0x9e,
0xc7, 0x61, 0x41, 0xc6, 0xb2, 0x63, 0x07, 0xe8, 0x86, 0x2b, 0xfd, 0x9a, 0x3b, 0x9a, 0x3b, 0xf7,
0x3f, 0xff, 0x39, 0x67, 0xfe, 0x3b, 0x4a, 0x44, 0xf8, 0x3f, 0x86, 0x09, 0x70, 0xf6, 0xec, 0xd9,
0xf3, 0x4a, 0xa9, 0xf7, 0x4d, 0xd3, 0xc4, 0x30, 0x0c, 0x44, 0x04, 0xc7, 0x71, 0x70, 0x5d, 0x17,
0xc7, 0x71, 0xaa, 0x78, 0xd1, 0x7b, 0xad, 0xf5, 0xb7, 0x13, 0x13, 0x13, 0x27, 0x00, 0x38, 0x7d,
0xfa, 0x74, 0xec, 0xcc, 0x99, 0x33, 0x15, 0xdb, 0xb6, 0xc5, 0x75, 0xdd, 0xa6, 0x70, 0x1c, 0xa7,
0x0a, 0xdb, 0xb6, 0xeb, 0x50, 0xa9, 0x54, 0xaa, 0xb0, 0x2c, 0xab, 0x8a, 0x52, 0xa9, 0x24, 0xe3,
0xe3, 0xe3, 0x9e, 0x88, 0x20, 0x22, 0x98, 0xae, 0xeb, 0x6a, 0xad, 0xb5, 0xa7, 0x94, 0x22, 0x9f,
0xcf, 0xa3, 0x94, 0x02, 0x40, 0x29, 0x55, 0x37, 0x6f, 0x76, 0xdd, 0x6a, 0x68, 0xad, 0x49, 0x24,
0x12, 0x88, 0x88, 0xaa, 0x4b, 0x9d, 0xe7, 0x79, 0x4d, 0x37, 0x6f, 0x36, 0xff, 0x2f, 0x44, 0xcd,
0x9e, 0x9b, 0x00, 0xae, 0xeb, 0x02, 0x50, 0x2a, 0x95, 0x58, 0x59, 0x59, 0xa1, 0xa7, 0xa7, 0x07,
0xad, 0x35, 0x0b, 0x0b, 0x0b, 0x6c, 0x6e, 0x96, 0x7f, 0x22, 0x11, 0x11, 0xfa, 0xfb, 0xfb, 0xab,
0x6b, 0x6a, 0xdf, 0x6d, 0x50, 0xd4, 0xd7, 0xd7, 0x47, 0x28, 0x14, 0xa2, 0x5c, 0x2e, 0x93, 0x4e,
0xa7, 0x5f, 0x28, 0x7d, 0x22, 0x82, 0xd6, 0x1a, 0xad, 0x75, 0x23, 0xd1, 0xea, 0xea, 0x2a, 0x89,
0x44, 0x02, 0x80, 0x44, 0x22, 0x81, 0x52, 0x0a, 0xcb, 0xb2, 0x50, 0x4a, 0x91, 0xcb, 0xe5, 0xea,
0x16, 0x6f, 0xde, 0x5c, 0x44, 0x18, 0x18, 0x18, 0xd8, 0x32, 0x75, 0x0d, 0x8a, 0x5c, 0xd7, 0x45,
0x44, 0x50, 0x4a, 0x55, 0x1f, 0x2a, 0xa5, 0x48, 0xa7, 0xd3, 0xd5, 0xe8, 0x9a, 0x35, 0x87, 0xaf,
0x60, 0x33, 0xb9, 0xbf, 0xb6, 0x81, 0xc8, 0x71, 0x9c, 0xa6, 0x11, 0xfd, 0x9b, 0xa2, 0x66, 0x0a,
0xb3, 0xd9, 0x6c, 0xf5, 0xde, 0x2f, 0x49, 0x43, 0x33, 0xf8, 0x91, 0xf8, 0x1b, 0xf8, 0x85, 0xad,
0x55, 0x92, 0xcb, 0xe5, 0xb0, 0x6d, 0x9b, 0xb6, 0xb6, 0x36, 0x4c, 0xd3, 0xa4, 0x58, 0x2c, 0xb2,
0xbe, 0xbe, 0x4e, 0x36, 0x9b, 0x25, 0x14, 0x0a, 0xd5, 0x29, 0x6c, 0x20, 0xb2, 0x6d, 0xbb, 0x4e,
0xb2, 0xbf, 0xf1, 0xfc, 0xfc, 0x7c, 0x55, 0x91, 0x65, 0x59, 0x88, 0x08, 0x83, 0x43, 0xaf, 0xf0,
0xd3, 0xd5, 0x87, 0x4c, 0xdd, 0x5c, 0xc2, 0x71, 0x3c, 0xd2, 0xdd, 0x09, 0xde, 0x79, 0xa3, 0x8f,
0xc5, 0xc5, 0xfb, 0x14, 0x0a, 0x05, 0x46, 0x46, 0x46, 0x30, 0x0c, 0xa3, 0x91, 0xa8, 0x58, 0x2c,
0x12, 0x8b, 0xc5, 0xea, 0xd2, 0xb1, 0x59, 0x91, 0xe7, 0x79, 0xcc, 0xcc, 0xcc, 0xd0, 0xb2, 0xbd,
0x97, 0x93, 0xe7, 0xae, 0x71, 0x6c, 0x64, 0x0f, 0x1f, 0x0e, 0xec, 0xc2, 0xb2, 0x3d, 0xee, 0x14,
0x56, 0xf9, 0xea, 0xbb, 0x9b, 0x1c, 0x7d, 0xb5, 0x93, 0x3d, 0xe9, 0x34, 0x4b, 0x4b, 0x4b, 0x74,
0x76, 0x76, 0x36, 0x57, 0xe4, 0x38, 0x4e, 0xc3, 0x47, 0x09, 0x30, 0x37, 0x37, 0x87, 0x88, 0xf0,
0xf8, 0xf1, 0x63, 0x5e, 0x7f, 0x73, 0x98, 0x2f, 0xce, 0x5d, 0xe5, 0xb3, 0xf7, 0xf6, 0xd1, 0xb5,
0x2d, 0x8a, 0xe3, 0x7a, 0x94, 0x2d, 0x9b, 0x4c, 0x77, 0x8c, 0x64, 0x6c, 0x88, 0xef, 0x7f, 0xbe,
0x4d, 0x3a, 0xd5, 0xcf, 0xfd, 0x85, 0x5b, 0x74, 0x74, 0x74, 0x6c, 0x5d, 0xa3, 0x66, 0xa9, 0xcb,
0x64, 0x32, 0x68, 0xad, 0xb1, 0x2c, 0x8b, 0x1f, 0x7e, 0xbf, 0xcb, 0xdb, 0x6f, 0xf5, 0x13, 0x8f,
0x46, 0x70, 0x3c, 0x01, 0xa5, 0x09, 0x06, 0x02, 0x78, 0x68, 0x44, 0x2a, 0xbc, 0x36, 0xd8, 0xc3,
0xc4, 0xc5, 0x69, 0x4e, 0x1c, 0xdd, 0xc5, 0xf2, 0xf2, 0x32, 0x91, 0x48, 0xa4, 0xb9, 0xa2, 0x66,
0x63, 0x7e, 0x7e, 0x1e, 0xdb, 0xb6, 0x31, 0x4d, 0x93, 0x85, 0x47, 0x25, 0x76, 0xf7, 0xec, 0xe0,
0xe9, 0xb3, 0x32, 0xeb, 0xa6, 0x42, 0x21, 0xb8, 0xae, 0xc7, 0xda, 0xba, 0xcd, 0x83, 0x47, 0x4b,
0xd8, 0x15, 0xe1, 0xb9, 0xe5, 0x10, 0x0e, 0x87, 0x29, 0x14, 0x0a, 0x74, 0x77, 0x77, 0xd7, 0xfb,
0x5f, 0xb1, 0x58, 0xac, 0x76, 0xdd, 0xe6, 0x3a, 0x65, 0x32, 0x19, 0x32, 0x99, 0x0c, 0x86, 0x61,
0x60, 0x1a, 0x0a, 0xcc, 0x20, 0xda, 0x0c, 0x12, 0x0c, 0x86, 0x88, 0x44, 0x22, 0x44, 0x5a, 0x5a,
0xc0, 0x0c, 0x93, 0xda, 0xd9, 0x49, 0x57, 0xe7, 0x76, 0x42, 0xc1, 0x00, 0x96, 0x65, 0xe1, 0x79,
0x5e, 0x43, 0x19, 0xaa, 0x8a, 0x6a, 0x53, 0xe7, 0x8f, 0xd9, 0xd9, 0x59, 0x3c, 0xcf, 0x63, 0x6d,
0x6d, 0x8d, 0xc1, 0xde, 0x76, 0xae, 0xdc, 0xbe, 0xc7, 0xb3, 0xd5, 0x36, 0xa2, 0x21, 0x8d, 0x16,
0x07, 0x25, 0x36, 0xcf, 0x6d, 0xc5, 0xba, 0xa3, 0x58, 0x29, 0x7b, 0x84, 0x03, 0x42, 0xb9, 0x5c,
0x26, 0x99, 0x4c, 0x36, 0x3a, 0xba, 0xdf, 0xde, 0x00, 0x4f, 0x9e, 0x3c, 0x61, 0x7a, 0x7a, 0x1a,
0xcb, 0xb2, 0xaa, 0x35, 0x1a, 0x1c, 0x1c, 0x44, 0x6b, 0xcd, 0xb1, 0xfd, 0xbb, 0x78, 0xf8, 0xe7,
0x53, 0x08, 0x44, 0x69, 0x8d, 0x6f, 0x63, 0xfb, 0x8e, 0x9d, 0x74, 0xa5, 0x76, 0xd3, 0xd3, 0xd3,
0x4b, 0x47, 0x67, 0x17, 0x33, 0xf9, 0xa7, 0x7c, 0x3a, 0x3a, 0xc4, 0xf5, 0xeb, 0xd7, 0x49, 0xa5,
0x52, 0xcd, 0xdd, 0xdb, 0xaf, 0x91, 0x61, 0x18, 0xa4, 0xd3, 0x69, 0x5a, 0x5b, 0x5b, 0xa9, 0x54,
0x2a, 0xcc, 0xce, 0xce, 0x22, 0x22, 0x84, 0xc3, 0x61, 0x2e, 0x5f, 0xfe, 0x8d, 0x93, 0xe3, 0x07,
0xf8, 0xe6, 0xfc, 0x24, 0xd1, 0x48, 0x80, 0x9d, 0xed, 0x61, 0xa2, 0xad, 0x11, 0xd6, 0x2a, 0x26,
0x53, 0xb9, 0x02, 0x9f, 0xbc, 0x3b, 0x40, 0x40, 0x39, 0x58, 0x96, 0xc5, 0xe4, 0xe4, 0x24, 0xc3,
0xc3, 0xc3, 0xf5, 0x44, 0xc5, 0x62, 0x91, 0x78, 0x3c, 0x8e, 0x88, 0x10, 0x8f, 0xc7, 0xd1, 0x5a,
0x57, 0x15, 0xf6, 0xf7, 0xf7, 0x63, 0x18, 0x06, 0x4a, 0x29, 0x8a, 0xc5, 0x22, 0xd7, 0xfe, 0xb8,
0xcc, 0x97, 0xe3, 0xc3, 0xdc, 0x5b, 0x5a, 0xe7, 0xd6, 0x9d, 0x65, 0xca, 0x65, 0x9b, 0x97, 0x5f,
0x4a, 0xf0, 0xc1, 0x81, 0x7d, 0x5c, 0xbd, 0x32, 0x89, 0x93, 0x48, 0x10, 0x0a, 0x85, 0xc8, 0xe7,
0xf3, 0x2c, 0x2e, 0x2e, 0x36, 0xa6, 0xae, 0xb6, 0xeb, 0x6a, 0xbd, 0xad, 0xd6, 0x50, 0x93, 0xc9,
0x24, 0x87, 0x0f, 0x1f, 0x26, 0x97, 0xcb, 0xf1, 0x60, 0xee, 0x0a, 0xa9, 0xd0, 0x12, 0x43, 0x1d,
0xcf, 0x59, 0xbe, 0x7b, 0x8d, 0x5f, 0x7f, 0xb9, 0x44, 0xa9, 0x54, 0x22, 0x9f, 0xcf, 0xfb, 0x27,
0x2b, 0x22, 0x42, 0x7b, 0x7b, 0x3b, 0xa3, 0xa3, 0xa3, 0x2d, 0x00, 0x66, 0x20, 0x10, 0x10, 0xcb,
0xb2, 0xb4, 0xaf, 0xa8, 0xd6, 0xa7, 0x6a, 0x7d, 0xcb, 0x0f, 0x60, 0xef, 0xde, 0xbd, 0x78, 0x9e,
0x87, 0xeb, 0xba, 0xd8, 0xb6, 0x5d, 0xb5, 0x1b, 0xa5, 0x14, 0x97, 0x2e, 0xfd, 0x4d, 0xd8, 0xd6,
0xd6, 0x46, 0xa5, 0x52, 0xe1, 0xe0, 0xc1, 0x83, 0x4c, 0x4d, 0x4d, 0xcd, 0x1f, 0x39, 0x72, 0x64,
0x9f, 0x02, 0x92, 0x63, 0x63, 0x63, 0x3f, 0x2a, 0xa5, 0xf6, 0xfb, 0x2f, 0xd5, 0xda, 0xbd, 0x3f,
0xf7, 0x3c, 0xaf, 0xee, 0xea, 0xc3, 0x3f, 0x0e, 0x6a, 0x8f, 0x86, 0x43, 0x87, 0x0e, 0xe9, 0xde,
0xde, 0x5e, 0x5a, 0x5a, 0x5a, 0x48, 0xa5, 0x52, 0x9c, 0x3a, 0x75, 0xea, 0xa2, 0x09, 0x78, 0x17,
0x2e, 0x5c, 0xf8, 0x38, 0x16, 0x8b, 0xf5, 0x2a, 0xa5, 0xa2, 0x7e, 0x83, 0x00, 0x0a, 0x10, 0x40,
0x89, 0x88, 0x29, 0x22, 0x06, 0x60, 0x88, 0x88, 0x21, 0x22, 0xda, 0x9f, 0x6f, 0xa4, 0x5f, 0x01,
0x9e, 0x52, 0xca, 0x03, 0xec, 0x1b, 0x37, 0x6e, 0xc4, 0x8e, 0x1f, 0x3f, 0xfe, 0xf9, 0xd8, 0xd8,
0x58, 0x3c, 0x1a, 0x8d, 0x12, 0x0c, 0x06, 0x5d, 0xb5, 0x11, 0x8d, 0x06, 0xc2, 0x1b, 0x08, 0x6e,
0xf5, 0x73, 0xb3, 0x11, 0x84, 0xb1, 0x01, 0x5d, 0x43, 0xc2, 0x46, 0x50, 0x02, 0xb8, 0xc0, 0x7a,
0x2a, 0x95, 0xf2, 0xb2, 0xd9, 0xec, 0x47, 0xf1, 0x78, 0x3c, 0xb9, 0xbc, 0xbc, 0xfc, 0xf5, 0x5f,
0x8c, 0x86, 0xc8, 0x61, 0x09, 0x89, 0x45, 0xfd, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE find_xpm[1] = {{ png, sizeof( png ), "find_xpm" }};

View File

@ -8,71 +8,60 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0xf4, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xe5, 0x96, 0x49, 0x73, 0x1a,
0x47, 0x14, 0x80, 0xfd, 0x0b, 0x72, 0xce, 0x39, 0x7f, 0x25, 0x55, 0x8e, 0xb3, 0x5c, 0x75, 0xf2,
0xc1, 0x07, 0xc5, 0x3e, 0x25, 0x95, 0x54, 0xb9, 0x52, 0x4e, 0xaa, 0x9c, 0xca, 0x62, 0x24, 0x79,
0x84, 0x85, 0x54, 0x89, 0xcb, 0x89, 0xb1, 0xd0, 0x62, 0x97, 0x6d, 0xb0, 0x85, 0x10, 0x52, 0x16,
0x89, 0xc8, 0x36, 0x60, 0x08, 0x42, 0x68, 0xc0, 0x8a, 0xc2, 0x3a, 0xe8, 0x89, 0xdd, 0x62, 0x31,
0x30, 0xec, 0xeb, 0xb4, 0x5f, 0xf7, 0x58, 0x94, 0x28, 0x22, 0x47, 0x4e, 0x52, 0x39, 0x24, 0x87,
0x8f, 0xee, 0x19, 0x86, 0xf7, 0xbd, 0xee, 0x7e, 0xdd, 0xc3, 0x09, 0x42, 0xc8, 0x89, 0x7f, 0x03,
0xf6, 0x71, 0x59, 0xa9, 0x18, 0xd6, 0xcc, 0x5c, 0xe7, 0x5f, 0xc6, 0xd5, 0x6b, 0xdf, 0x9a, 0x26,
0x27, 0xbf, 0x7c, 0xed, 0x6f, 0x89, 0xb8, 0xf1, 0xd1, 0x6f, 0xb0, 0x85, 0x97, 0xb1, 0xc5, 0xbb,
0x84, 0x31, 0x4e, 0x71, 0x9a, 0xe3, 0x46, 0x4f, 0x8e, 0x29, 0x15, 0x6f, 0x61, 0xcb, 0x18, 0x1b,
0x57, 0x9c, 0xa2, 0x60, 0xff, 0x6d, 0x6c, 0xdf, 0xa1, 0x5c, 0x56, 0x8e, 0xbc, 0x4b, 0xc1, 0xfe,
0x7b, 0x1c, 0x77, 0xe9, 0x8d, 0x57, 0x12, 0x95, 0x4a, 0xe2, 0x76, 0x20, 0xe8, 0x77, 0x07, 0x7b,
0x04, 0x64, 0x42, 0x01, 0xb7, 0x20, 0x84, 0xf8, 0x3e, 0xc2, 0x02, 0x1f, 0x46, 0xb0, 0xff, 0xdb,
0xb5, 0xef, 0xae, 0x9a, 0x5e, 0x49, 0xf4, 0x57, 0xd1, 0xcc, 0xdd, 0xb0, 0xfc, 0x0f, 0x45, 0xc5,
0x62, 0x11, 0xf2, 0xf9, 0x7c, 0x1f, 0x99, 0x4c, 0x66, 0xe0, 0x5e, 0x36, 0x9b, 0xed, 0xbb, 0xce,
0xe5, 0x72, 0xd0, 0xe9, 0x74, 0x8e, 0x2f, 0x72, 0x38, 0x1c, 0x10, 0x08, 0x04, 0x10, 0x3f, 0xf8,
0xfd, 0x3e, 0xf0, 0xf9, 0xbc, 0x60, 0xb5, 0x5a, 0x59, 0x4b, 0xaf, 0xfd, 0x7e, 0x3f, 0xfb, 0xce,
0x66, 0xb3, 0x41, 0x28, 0x14, 0x02, 0x41, 0x10, 0x20, 0x1c, 0x0e, 0xc3, 0xe6, 0xe6, 0x26, 0x88,
0xa2, 0x78, 0x7c, 0x11, 0xcf, 0xf3, 0x50, 0xad, 0x56, 0xa0, 0x52, 0x29, 0x61, 0xd5, 0x15, 0x71,
0x84, 0x79, 0x70, 0x3a, 0x9d, 0xac, 0x15, 0xc5, 0x22, 0x94, 0xcb, 0x25, 0x86, 0xdb, 0xcd, 0x43,
0xb3, 0xd9, 0x80, 0x56, 0xab, 0xc5, 0x46, 0x12, 0x0c, 0x06, 0xf1, 0x37, 0x95, 0xa3, 0x45, 0x8d,
0x46, 0x1d, 0x8c, 0xcb, 0x86, 0xff, 0xb0, 0x68, 0x7b, 0x7b, 0x1b, 0x83, 0xb8, 0x5f, 0xc0, 0x33,
0xf1, 0x23, 0xb3, 0x19, 0x9c, 0x2e, 0x37, 0x98, 0xd6, 0x1f, 0xc6, 0xce, 0x7f, 0x72, 0xbe, 0xfd,
0xf3, 0xea, 0x2f, 0x71, 0x8b, 0xc5, 0x02, 0x1e, 0x8f, 0x87, 0xf1, 0xe4, 0x89, 0x07, 0xec, 0x76,
0x3b, 0x14, 0x0a, 0x85, 0xe3, 0x88, 0x24, 0x90, 0x24, 0x09, 0xba, 0xdd, 0x2e, 0xcb, 0xb0, 0xd3,
0x69, 0x43, 0xbb, 0x2d, 0xf3, 0xab, 0xd3, 0x0d, 0x9e, 0x58, 0x07, 0xd6, 0xb7, 0xa2, 0xf1, 0x1d,
0xaf, 0x57, 0xb2, 0xd8, 0x6c, 0xdd, 0x3b, 0x5a, 0x6d, 0x46, 0x7e, 0x4e, 0x86, 0x16, 0xd0, 0x91,
0x23, 0xa2, 0x81, 0xeb, 0xf5, 0x1a, 0xe8, 0x17, 0xef, 0x43, 0x3c, 0x1e, 0xeb, 0x23, 0x9f, 0x7f,
0xd6, 0x0b, 0xe2, 0xd8, 0xe4, 0xc1, 0x97, 0x92, 0xc0, 0xcc, 0x47, 0xe3, 0x58, 0x69, 0x12, 0x26,
0x43, 0x22, 0xd1, 0x88, 0xa4, 0xd5, 0xdd, 0x29, 0xd1, 0x84, 0x68, 0x72, 0x54, 0x54, 0x2e, 0x97,
0x59, 0xb2, 0x03, 0x22, 0xfa, 0x40, 0xad, 0x56, 0x81, 0xbb, 0xda, 0xdb, 0x60, 0x7d, 0x6c, 0x66,
0x58, 0xac, 0x32, 0x21, 0x21, 0x88, 0xa3, 0x69, 0xb1, 0x35, 0xd8, 0x40, 0x91, 0x90, 0xee, 0x82,
0xd5, 0x0d, 0x71, 0x41, 0x08, 0x4b, 0x98, 0x39, 0xa9, 0x56, 0xab, 0x04, 0xcb, 0x99, 0x4c, 0xcf,
0xa8, 0x1b, 0xc5, 0x62, 0x21, 0x42, 0x45, 0xb4, 0xbc, 0x69, 0xcc, 0x01, 0x11, 0xcd, 0xb6, 0x52,
0x29, 0xc3, 0x92, 0x71, 0xb1, 0x17, 0xb4, 0xd5, 0x6a, 0x32, 0x9a, 0xcd, 0x26, 0x5b, 0x6c, 0x8a,
0x6b, 0x8b, 0x67, 0xb2, 0xa5, 0x95, 0x1f, 0x12, 0x78, 0x70, 0x4a, 0xb8, 0x41, 0x49, 0x3a, 0x9d,
0x26, 0xb8, 0x69, 0x49, 0xad, 0x56, 0x23, 0x37, 0x6f, 0xcd, 0xb7, 0xf5, 0xfa, 0x85, 0xa4, 0xbc,
0x69, 0xdb, 0x83, 0x22, 0x1a, 0x9c, 0x56, 0x90, 0x61, 0x49, 0xdf, 0x17, 0x98, 0xae, 0xdb, 0x61,
0xea, 0x75, 0x19, 0xaf, 0xef, 0xf7, 0xc4, 0xee, 0xee, 0xae, 0xb4, 0xbf, 0xbf, 0x4f, 0xe2, 0xf1,
0x38, 0x89, 0x46, 0xa3, 0x0c, 0x9c, 0x32, 0x62, 0xb1, 0x98, 0xbb, 0xcb, 0x2b, 0xc6, 0x1c, 0x8d,
0x39, 0x3d, 0xab, 0xee, 0x17, 0xd1, 0xcc, 0xf1, 0x55, 0x00, 0x0b, 0xfa, 0x7b, 0x90, 0x7a, 0x9a,
0x64, 0x24, 0x53, 0x89, 0x1e, 0x89, 0x64, 0x3f, 0x1b, 0x4e, 0x47, 0x72, 0x17, 0x76, 0xa5, 0x58,
0x2c, 0x46, 0x50, 0x48, 0xf0, 0x54, 0x20, 0x58, 0xd6, 0x04, 0x4f, 0x0b, 0x36, 0x42, 0xc0, 0xef,
0x34, 0x33, 0xd3, 0x15, 0xb5, 0xe6, 0x7b, 0x6b, 0x9f, 0x88, 0x66, 0x4f, 0xa7, 0x6e, 0xfd, 0x81,
0x09, 0xd6, 0x4c, 0x3f, 0x31, 0x56, 0xd7, 0x28, 0x3f, 0xfe, 0x21, 0xfa, 0xc5, 0x7b, 0x49, 0x00,
0x90, 0xf0, 0xc8, 0x61, 0xc1, 0xbd, 0x5e, 0x2f, 0x93, 0x45, 0x22, 0x11, 0x42, 0xe5, 0xa5, 0x52,
0x89, 0xad, 0xdb, 0x18, 0x37, 0x5a, 0x19, 0x1a, 0x1a, 0x7a, 0xbd, 0x27, 0x92, 0xa7, 0xa5, 0xc6,
0xa8, 0xd5, 0xaa, 0x6c, 0xa3, 0xca, 0x9b, 0xb5, 0xfc, 0x82, 0x52, 0x6f, 0x83, 0x52, 0x5c, 0x2e,
0x67, 0x0a, 0xf6, 0x80, 0x09, 0x70, 0xf1, 0x59, 0x41, 0xec, 0xed, 0xed, 0x91, 0x42, 0x21, 0x4f,
0x74, 0xba, 0xbb, 0x6d, 0xac, 0xde, 0xa6, 0x56, 0x7b, 0xbb, 0xf1, 0xb5, 0xe2, 0x2b, 0xf1, 0xec,
0xd9, 0xe1, 0x0b, 0x3d, 0x91, 0x3c, 0xf7, 0x87, 0x25, 0xb2, 0x40, 0x0e, 0x2c, 0xb2, 0x69, 0xa5,
0xa7, 0xc3, 0x01, 0x1b, 0x1b, 0x76, 0x26, 0xa2, 0xd3, 0x96, 0xcd, 0x65, 0xc9, 0x9a, 0x69, 0xb5,
0x4b, 0xd7, 0x2b, 0x9b, 0xcd, 0x90, 0xb9, 0xf9, 0xb9, 0x06, 0x8d, 0x43, 0xe3, 0x0d, 0xac, 0xd1,
0x51, 0x92, 0x03, 0x81, 0x28, 0x16, 0x18, 0x58, 0xbe, 0x0c, 0xbb, 0xfd, 0x71, 0x8a, 0x8e, 0x00,
0x0b, 0x41, 0x9a, 0x9b, 0x9f, 0x2d, 0x19, 0x8d, 0x86, 0x5c, 0x32, 0x99, 0x24, 0x3b, 0x3b, 0x3b,
0x24, 0x91, 0x48, 0x48, 0x58, 0x10, 0xe9, 0x3f, 0x15, 0xf5, 0x8f, 0xa4, 0x78, 0x48, 0x90, 0xc7,
0xa3, 0xe5, 0x19, 0xc3, 0x62, 0x7d, 0xf4, 0x54, 0x33, 0xab, 0x91, 0xee, 0x2f, 0xe8, 0xf2, 0xf2,
0x33, 0x45, 0x50, 0xab, 0xaf, 0xb7, 0x68, 0x99, 0xe3, 0xda, 0x91, 0x45, 0x83, 0xbe, 0x4d, 0x63,
0xf5, 0x89, 0xf0, 0xef, 0xd6, 0x9b, 0xaa, 0x49, 0xe5, 0x8d, 0x03, 0x26, 0xa6, 0xc6, 0xa7, 0x29,
0xd8, 0xd7, 0xc8, 0x70, 0x9a, 0x89, 0x29, 0x6e, 0x46, 0xa9, 0x92, 0xb9, 0x82, 0x5c, 0x1a, 0xf9,
0x42, 0x77, 0xf1, 0xf3, 0x0b, 0x0f, 0x54, 0x53, 0xdc, 0xac, 0x6a, 0x6a, 0x9c, 0xf1, 0xd9, 0xc5,
0x4f, 0x1f, 0xe2, 0xbb, 0xa8, 0x83, 0x2f, 0x4c, 0xb2, 0xb2, 0xb2, 0xdc, 0x9c, 0x50, 0x71, 0x37,
0xb9, 0x2b, 0x23, 0xef, 0xf7, 0x44, 0xff, 0x24, 0xe7, 0xce, 0x0d, 0x7f, 0xf0, 0xd1, 0xc7, 0x1f,
0x1a, 0xce, 0x9c, 0x39, 0x7d, 0xf2, 0xf0, 0xfd, 0xe7, 0x5a, 0xa9, 0xc0, 0xd6, 0x1c, 0xa6, 0x8b,
0xf0, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x03, 0x3b, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xcd, 0xd4, 0x5b, 0x4c, 0x52,
0x71, 0x1c, 0xc0, 0x71, 0x6c, 0x35, 0x05, 0x64, 0x1d, 0x94, 0xca, 0xbc, 0xf5, 0x98, 0xba, 0x55,
0x9a, 0x5b, 0xd7, 0x99, 0x96, 0x79, 0x23, 0x45, 0xcb, 0x2e, 0x02, 0x0a, 0xc4, 0x2d, 0xbb, 0xb8,
0xa9, 0xa4, 0x66, 0x81, 0x73, 0xe9, 0x5c, 0x92, 0x46, 0x28, 0x21, 0x72, 0x91, 0x99, 0xd0, 0x7a,
0xe8, 0xb1, 0xb2, 0x16, 0x68, 0x2f, 0x99, 0xeb, 0xa1, 0x1e, 0x5a, 0x6d, 0xd6, 0xba, 0x3c, 0xb4,
0x79, 0xab, 0x24, 0xd3, 0x52, 0x4e, 0xfa, 0xeb, 0x8f, 0x9b, 0x85, 0x3a, 0x38, 0x24, 0xb5, 0x75,
0xb6, 0xef, 0x79, 0x38, 0x3b, 0xff, 0xf3, 0xd9, 0x39, 0xff, 0xff, 0xf9, 0x93, 0x00, 0x80, 0xb4,
0x9c, 0x32, 0xb3, 0x32, 0x4e, 0xee, 0xda, 0xbd, 0x73, 0x9d, 0xaf, 0xf7, 0x93, 0x4a, 0x4a, 0x48,
0x81, 0x0a, 0x05, 0x75, 0x5a, 0xa1, 0x08, 0xc6, 0x89, 0xa3, 0x4e, 0xcf, 0x0f, 0x64, 0xe5, 0xe6,
0x8c, 0xf0, 0xf8, 0xbc, 0x91, 0xd4, 0xd4, 0x7d, 0xa9, 0x3e, 0x41, 0xb5, 0xb5, 0xa4, 0x20, 0xd7,
0x43, 0x7a, 0x5e, 0x4c, 0x76, 0x13, 0x25, 0x97, 0x53, 0x60, 0x7e, 0x20, 0x9b, 0x5d, 0x30, 0xa8,
0x37, 0x19, 0xa0, 0xba, 0xe6, 0xdc, 0x57, 0x84, 0x2a, 0xd1, 0xdb, 0x05, 0x10, 0x42, 0x72, 0x45,
0xb0, 0xf3, 0xe1, 0x2b, 0x30, 0x11, 0xe5, 0x0e, 0x71, 0xb8, 0xec, 0xc1, 0xba, 0x8e, 0x7a, 0x28,
0x37, 0xc8, 0x40, 0xdd, 0xae, 0xc6, 0x73, 0xf3, 0x58, 0x4f, 0x10, 0xc6, 0xf0, 0x0e, 0xc9, 0x83,
0x9d, 0x3d, 0x03, 0xd0, 0x40, 0x94, 0x3b, 0x54, 0x54, 0x54, 0x38, 0xa4, 0x30, 0xd7, 0x00, 0xa9,
0x71, 0x25, 0xec, 0x6f, 0x4d, 0x07, 0x8d, 0x59, 0x03, 0xdc, 0x42, 0xce, 0x70, 0xca, 0xde, 0xe4,
0x24, 0x2f, 0x10, 0x05, 0xe4, 0x72, 0xaa, 0x73, 0x51, 0xf8, 0xd2, 0x6b, 0xbf, 0x21, 0x3e, 0x9f,
0x37, 0x54, 0x6d, 0x3a, 0x3f, 0x07, 0xb9, 0x8a, 0x68, 0xda, 0x00, 0x4d, 0x1d, 0xcd, 0x20, 0xab,
0x92, 0x7d, 0x3d, 0x90, 0xcd, 0xac, 0x5b, 0xfc, 0x29, 0xe7, 0x4e, 0x2e, 0xcc, 0xbd, 0x6d, 0xdb,
0xa8, 0xeb, 0x68, 0x34, 0xb2, 0x63, 0xf1, 0x75, 0x57, 0xf3, 0x03, 0x05, 0xc7, 0xf9, 0xc3, 0x15,
0xc6, 0xca, 0x5f, 0x90, 0xab, 0x40, 0x25, 0x15, 0xca, 0xf5, 0x32, 0x50, 0xb6, 0x2a, 0x71, 0x16,
0x2b, 0xa7, 0x0f, 0x61, 0xf4, 0x05, 0xd0, 0xe2, 0x30, 0x74, 0x90, 0xc9, 0x64, 0x87, 0xb7, 0xc9,
0x15, 0x0a, 0x85, 0x23, 0xa5, 0xfa, 0xb2, 0x05, 0xd0, 0x7c, 0xa9, 0x2d, 0x69, 0xa0, 0x36, 0xaa,
0xa1, 0x80, 0x7d, 0x6c, 0x70, 0x4f, 0x72, 0xd2, 0x0e, 0xbf, 0x20, 0x91, 0x58, 0x34, 0x7a, 0x46,
0x5f, 0xf2, 0xeb, 0xe1, 0x01, 0x8d, 0xab, 0x80, 0xd9, 0x92, 0x0d, 0x1c, 0x6d, 0x21, 0x70, 0xb5,
0x45, 0x50, 0xa1, 0xab, 0x04, 0x9d, 0xb1, 0x1d, 0x4a, 0xcb, 0x4a, 0xc7, 0xd1, 0x3f, 0x77, 0x61,
0xd9, 0x90, 0x58, 0x22, 0xfe, 0x58, 0xdc, 0x7e, 0x72, 0x0e, 0xd9, 0xac, 0x4a, 0x80, 0x2a, 0xfd,
0x39, 0xc8, 0xd7, 0x1c, 0x01, 0x9d, 0x41, 0x37, 0x23, 0x3d, 0x21, 0x19, 0x43, 0x8d, 0x8a, 0xc5,
0xa2, 0x61, 0x81, 0x80, 0x3f, 0x98, 0x9e, 0x91, 0xf6, 0xe1, 0x8f, 0x20, 0xf4, 0xfe, 0x01, 0x18,
0x66, 0xc6, 0x5c, 0x49, 0xa5, 0xd2, 0xcf, 0xa2, 0x36, 0x31, 0xe4, 0x69, 0x0e, 0x41, 0x73, 0x5b,
0xf3, 0x8c, 0xaa, 0xed, 0xaa, 0x33, 0x59, 0xbd, 0x0f, 0x1a, 0x0d, 0x4a, 0xc8, 0x3f, 0x7c, 0xf8,
0x6d, 0x44, 0x84, 0x12, 0x5b, 0xb2, 0x18, 0x7c, 0x85, 0xa8, 0x6b, 0xcc, 0x61, 0xb4, 0xb5, 0x16,
0x58, 0x1d, 0x66, 0xc5, 0x85, 0xc2, 0xd3, 0xb3, 0x5a, 0x83, 0x16, 0xe4, 0xf5, 0xb5, 0x90, 0xb8,
0xfd, 0xcc, 0x6c, 0x5a, 0x06, 0x1b, 0x54, 0x46, 0x15, 0x6c, 0xba, 0x12, 0x0f, 0x97, 0x5a, 0x94,
0x10, 0x17, 0x7f, 0xf6, 0x93, 0x5f, 0x10, 0x23, 0xfa, 0xe6, 0xb8, 0xed, 0x25, 0x7e, 0x47, 0x2c,
0x91, 0xe0, 0xa5, 0xe5, 0xe5, 0x3f, 0x2e, 0xaa, 0x3a, 0x9f, 0xf7, 0x0e, 0xc0, 0xed, 0x96, 0x2e,
0x5b, 0xbf, 0xbc, 0xb6, 0x06, 0xe7, 0x5d, 0x13, 0x40, 0xb1, 0xf6, 0x14, 0x88, 0xa4, 0xa7, 0x67,
0xd0, 0xaa, 0x5b, 0x4f, 0x08, 0x45, 0x45, 0x47, 0x7d, 0xdf, 0x9a, 0x98, 0x30, 0xe5, 0xde, 0x96,
0xf8, 0xa4, 0x37, 0xa1, 0x51, 0x37, 0x1d, 0xf6, 0x97, 0x4e, 0x73, 0x76, 0x6e, 0xde, 0x78, 0xab,
0xc5, 0x76, 0xc7, 0x7d, 0xe7, 0xe0, 0x0a, 0xc4, 0x43, 0x6a, 0x03, 0x5a, 0x6d, 0x1a, 0x0e, 0x28,
0x35, 0x97, 0x01, 0x41, 0x47, 0x09, 0x21, 0x0a, 0x85, 0xe2, 0x48, 0x49, 0x49, 0x09, 0x72, 0x0f,
0x0b, 0x6b, 0x88, 0x0e, 0x89, 0xbc, 0x31, 0xe6, 0x69, 0xe7, 0xe8, 0xbc, 0xfb, 0x5c, 0x5b, 0xc0,
0x2d, 0x74, 0xc8, 0x2a, 0x2a, 0xa7, 0x59, 0x07, 0x79, 0x38, 0x82, 0x22, 0xfd, 0x98, 0x23, 0xeb,
0x2c, 0xb6, 0xde, 0x3a, 0xe1, 0x29, 0x7a, 0x78, 0xd7, 0x44, 0x68, 0xa4, 0xe9, 0x1b, 0x9a, 0xc7,
0xd7, 0xcb, 0x9e, 0x23, 0xb4, 0x61, 0xad, 0x70, 0x61, 0xbe, 0x44, 0x0b, 0xbf, 0xc1, 0x58, 0x36,
0xe4, 0x4f, 0xff, 0x3f, 0x64, 0x65, 0x30, 0x07, 0x50, 0x0e, 0xc2, 0x42, 0xb2, 0xde, 0xf9, 0x07,
0x85, 0x32, 0xc7, 0x6c, 0xdd, 0xef, 0xed, 0xf6, 0xbe, 0xcf, 0xf7, 0x3d, 0x65, 0xeb, 0x1d, 0x7a,
0x60, 0xa1, 0x67, 0x4e, 0x7a, 0x85, 0x62, 0x62, 0x37, 0xce, 0xc6, 0xc6, 0xc5, 0x4c, 0x79, 0xca,
0x12, 0x92, 0xf5, 0xc5, 0xfe, 0xe8, 0xe3, 0x75, 0xf4, 0xb3, 0x1a, 0x3d, 0x65, 0x7f, 0x36, 0x69,
0xb6, 0xd2, 0x33, 0x26, 0x3c, 0x42, 0xbe, 0x64, 0xa5, 0x67, 0x7e, 0xea, 0x36, 0xf4, 0xb7, 0xdf,
0xbb, 0xf5, 0xa2, 0xd5, 0x63, 0x5d, 0x4f, 0xb5, 0x16, 0xcc, 0x4f, 0x08, 0x7d, 0x92, 0xc7, 0xd6,
0x10, 0xe6, 0x5b, 0xc2, 0xe8, 0x99, 0x4f, 0xfd, 0x82, 0xfe, 0xca, 0xaa, 0xfb, 0x17, 0xfd, 0x04,
0x2c, 0x04, 0x83, 0xbc, 0x23, 0xc5, 0x78, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE hierarchy_cursor_xpm[1] = {{ png, sizeof( png ), "hierarchy_cursor_xpm" }};

View File

@ -8,53 +8,33 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x02, 0xd2, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xe5, 0x96, 0xdd, 0x72, 0xd2,
0x40, 0x14, 0x80, 0x3b, 0xe3, 0x8d, 0x4f, 0xe3, 0x43, 0x78, 0xa1, 0x3e, 0x86, 0x97, 0x3e, 0x80,
0x17, 0x5e, 0x32, 0x63, 0x91, 0xb6, 0xbc, 0x84, 0x57, 0xda, 0x06, 0x68, 0xbd, 0x72, 0x74, 0x1c,
0x9d, 0x29, 0x55, 0x28, 0x5a, 0xa0, 0x69, 0xa1, 0x26, 0x10, 0xda, 0xd2, 0x56, 0x7e, 0x16, 0x08,
0x6c, 0x48, 0x08, 0xff, 0xc7, 0x3d, 0x27, 0x24, 0x4a, 0xc1, 0xd6, 0x5a, 0xa7, 0x17, 0x9a, 0x99,
0x6f, 0x92, 0xdd, 0x3d, 0x7b, 0xbe, 0xdd, 0x65, 0xb3, 0x61, 0x01, 0x00, 0x16, 0x6e, 0x82, 0x85,
0x1b, 0x15, 0x49, 0x92, 0x74, 0x2b, 0xb0, 0xe2, 0x7f, 0x18, 0x58, 0x5e, 0x7c, 0xf4, 0x4b, 0x44,
0x3b, 0xc6, 0x5d, 0x4b, 0x14, 0x58, 0x09, 0xdc, 0x8b, 0x6e, 0x6d, 0x9a, 0xe5, 0x0b, 0xae, 0xf8,
0x76, 0xac, 0x13, 0x08, 0x3e, 0xbd, 0x7b, 0x5d, 0xd1, 0x83, 0x42, 0x41, 0x63, 0x70, 0xc1, 0x55,
0xab, 0xb1, 0x96, 0x14, 0x5e, 0xb5, 0x43, 0x91, 0x35, 0x13, 0x09, 0x47, 0x24, 0x87, 0x0d, 0xc9,
0x8c, 0x6c, 0x84, 0x5c, 0x2c, 0x64, 0x7d, 0x23, 0x6c, 0xad, 0xbf, 0x0a, 0xd3, 0xf3, 0xd2, 0xca,
0xb3, 0xc7, 0x57, 0x12, 0xfd, 0xc9, 0x35, 0x1e, 0x8f, 0x07, 0x81, 0xe0, 0xe2, 0xf3, 0xff, 0x50,
0x64, 0xdb, 0x36, 0x34, 0x9b, 0x4d, 0x68, 0xb5, 0x5a, 0x1e, 0xba, 0xae, 0x4f, 0x95, 0xe7, 0xd5,
0x61, 0xf9, 0x4a, 0xa2, 0x6c, 0x36, 0x0b, 0x99, 0x4c, 0x06, 0x72, 0x39, 0x15, 0x54, 0x55, 0x01,
0x45, 0xf9, 0x0a, 0xb1, 0x58, 0x8c, 0xea, 0x14, 0x45, 0x11, 0x75, 0x2a, 0xd5, 0xc5, 0xe3, 0x71,
0xd0, 0xb4, 0x3c, 0x88, 0x1c, 0x70, 0x78, 0x58, 0xa0, 0x98, 0x4b, 0x45, 0x46, 0xdb, 0xf0, 0x44,
0x9a, 0xa6, 0xe1, 0x6e, 0x03, 0xd3, 0x6c, 0x83, 0x61, 0x70, 0x31, 0x5a, 0x1d, 0x76, 0x77, 0xd3,
0xc0, 0x58, 0x15, 0x38, 0x6f, 0x41, 0x5b, 0xc4, 0xe2, 0x5d, 0x96, 0x65, 0xe8, 0xf5, 0xba, 0x30,
0x18, 0xf4, 0x61, 0x38, 0x1c, 0x8a, 0x98, 0xdd, 0xcb, 0x45, 0x91, 0xf5, 0xd0, 0x3f, 0x2c, 0x2a,
0x95, 0x4a, 0x90, 0x4a, 0xa5, 0x20, 0x9d, 0x4e, 0x7b, 0x6c, 0x46, 0xb7, 0xe0, 0xe3, 0x76, 0x12,
0x3e, 0x25, 0xd2, 0x0e, 0xdb, 0x29, 0x88, 0x46, 0xa3, 0xd4, 0x86, 0x02, 0x04, 0xcb, 0xbf, 0x21,
0x92, 0x30, 0x80, 0x18, 0x8d, 0x46, 0xe7, 0x18, 0x42, 0x4a, 0x3e, 0x00, 0xf9, 0xb8, 0x0b, 0xfb,
0x67, 0x63, 0x42, 0x2e, 0xf6, 0x21, 0x2d, 0x67, 0xa8, 0x7d, 0x3c, 0x1e, 0x51, 0x3f, 0x67, 0x46,
0xe3, 0xf9, 0x22, 0xad, 0x90, 0x67, 0x18, 0xbc, 0x2a, 0xbd, 0x80, 0xb0, 0x90, 0x89, 0xe3, 0xc5,
0x43, 0x9c, 0x83, 0x62, 0x59, 0x06, 0x44, 0x4a, 0xce, 0x42, 0xf6, 0xd4, 0x06, 0xa5, 0x3c, 0x22,
0x0e, 0xce, 0x7a, 0x42, 0xb4, 0x2f, 0x96, 0x6c, 0x40, 0xcb, 0x86, 0xe0, 0xec, 0x26, 0x03, 0x9b,
0x15, 0xe5, 0xb5, 0x1c, 0xc3, 0x20, 0x4c, 0xec, 0x24, 0xed, 0x43, 0xbf, 0xef, 0xd2, 0xf3, 0x48,
0xa6, 0xf7, 0x40, 0x56, 0x4f, 0x61, 0x3f, 0x5f, 0x21, 0xf6, 0xd4, 0x6f, 0x90, 0xf8, 0xfc, 0x85,
0x96, 0xb9, 0x5c, 0x46, 0xca, 0x90, 0x48, 0x24, 0x48, 0x2c, 0xf2, 0xcc, 0x8a, 0x72, 0x79, 0x95,
0x61, 0x72, 0x71, 0x60, 0x52, 0xc2, 0x5e, 0xaf, 0x47, 0x3f, 0x30, 0xd2, 0xed, 0x22, 0x36, 0xc1,
0x18, 0x83, 0x62, 0xf1, 0xd8, 0xe3, 0xe8, 0xe8, 0x88, 0x12, 0x9f, 0x9c, 0x14, 0x05, 0x27, 0x04,
0xbe, 0x57, 0x93, 0x81, 0xce, 0x11, 0xe5, 0x54, 0x86, 0x82, 0x50, 0x78, 0x6d, 0x92, 0xdc, 0x49,
0x6c, 0xdb, 0x9d, 0x29, 0x3a, 0x1d, 0xcb, 0x03, 0xcb, 0xb8, 0xf3, 0x70, 0xd7, 0xe1, 0x29, 0xe2,
0xf4, 0xe9, 0xd2, 0x06, 0x9a, 0x0c, 0x74, 0x56, 0xa4, 0xe6, 0x14, 0x86, 0x82, 0x37, 0x6f, 0x5f,
0x83, 0xf8, 0x1c, 0x38, 0x84, 0x5c, 0x5e, 0xce, 0xf0, 0xfe, 0xc3, 0x3b, 0xb0, 0x2c, 0xd3, 0xdb,
0xde, 0xae, 0x18, 0x41, 0xd1, 0x64, 0x15, 0x66, 0x45, 0x8a, 0xaa, 0x30, 0x77, 0x06, 0xee, 0x88,
0x31, 0x91, 0x65, 0xb5, 0xe9, 0x3d, 0x32, 0x4d, 0x83, 0x46, 0xff, 0x33, 0x58, 0x87, 0xef, 0x17,
0x2e, 0x5d, 0x32, 0x99, 0xf4, 0x88, 0xc7, 0x63, 0xae, 0x74, 0x9e, 0xe8, 0x2b, 0x73, 0x25, 0x8e,
0xc0, 0x24, 0x81, 0x93, 0x94, 0x53, 0x42, 0xc3, 0x68, 0x9d, 0x83, 0x53, 0x9b, 0x2b, 0xc5, 0x78,
0xec, 0xe7, 0xce, 0x4e, 0xdc, 0xe7, 0x88, 0x94, 0x03, 0xe6, 0xcc, 0x64, 0x5a, 0xe2, 0x0a, 0x38,
0x6f, 0x12, 0x78, 0x3a, 0x38, 0x38, 0xe5, 0x1f, 0xc2, 0x59, 0xd9, 0x8c, 0x68, 0x69, 0xc9, 0x7f,
0x7f, 0x67, 0x27, 0xd1, 0xd6, 0xf5, 0x06, 0x6f, 0xe8, 0x75, 0xde, 0x68, 0xd4, 0x88, 0x7a, 0x9d,
0xf1, 0x5a, 0xad, 0xca, 0x19, 0xab, 0xf0, 0x6a, 0x15, 0x29, 0xf3, 0x4a, 0xa5, 0xe4, 0x81, 0x65,
0x6c, 0xa3, 0x18, 0x81, 0x38, 0xae, 0x44, 0x1f, 0xec, 0x5b, 0xe7, 0x98, 0x4b, 0x1c, 0x55, 0xd6,
0x94, 0xc8, 0xe7, 0xf3, 0xdd, 0x16, 0xdf, 0xf6, 0x27, 0x81, 0x65, 0xbf, 0xef, 0x6f, 0x13, 0x0c,
0xfa, 0xef, 0xdc, 0xe8, 0xff, 0xba, 0xef, 0x49, 0x7f, 0xe3, 0x35, 0xe9, 0xea, 0x10, 0xae, 0x00,
0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x01, 0x90, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x63, 0xf8, 0xff, 0xff, 0x3f,
0x03, 0x3d, 0x30, 0x43, 0x6e, 0x2e, 0x03, 0x7b, 0x6d, 0x2d, 0xf7, 0xcf, 0xda, 0x5a, 0x9e, 0xdf,
0x84, 0x31, 0xf7, 0x4f, 0xb2, 0x2d, 0x6a, 0x68, 0x60, 0xe0, 0x00, 0x19, 0xb2, 0xef, 0xea, 0xd7,
0xed, 0x84, 0x70, 0x4d, 0x0d, 0xd7, 0x7f, 0x8a, 0x2c, 0xaa, 0xa9, 0xe5, 0xf9, 0x75, 0xe0, 0xd6,
0xff, 0xb9, 0x84, 0x30, 0xe5, 0x16, 0xd5, 0xf0, 0xfc, 0xda, 0x77, 0xf3, 0x7f, 0x1b, 0x21, 0x4c,
0x05, 0x8b, 0xb8, 0xfe, 0xd7, 0xd4, 0x70, 0xff, 0x42, 0xc3, 0xbf, 0x31, 0xc5, 0x28, 0xb0, 0x08,
0x44, 0x80, 0x2c, 0x43, 0xc6, 0xe6, 0xe6, 0xdc, 0xe2, 0xbc, 0xbc, 0x9c, 0x1f, 0xd0, 0xc5, 0x41,
0x98, 0x22, 0x8b, 0xd0, 0xb1, 0x00, 0x10, 0x70, 0x72, 0x72, 0x7e, 0xa0, 0x6a, 0xf2, 0x1e, 0xd9,
0x16, 0x01, 0x55, 0x33, 0x0a, 0x08, 0xcc, 0x17, 0x20, 0x06, 0x8b, 0x88, 0xcc, 0xe5, 0x25, 0xdb,
0x22, 0x6e, 0xd1, 0xf9, 0x12, 0xbc, 0x62, 0x4b, 0xfe, 0xf3, 0x4b, 0x2c, 0xfd, 0x4d, 0x00, 0xff,
0x11, 0x94, 0x5a, 0x7a, 0x8f, 0x22, 0x8b, 0x44, 0xe4, 0x56, 0x7c, 0xda, 0x7f, 0xf3, 0xff, 0x16,
0x7c, 0x78, 0xd6, 0xfa, 0xd7, 0x07, 0x44, 0xe4, 0x57, 0x3c, 0x24, 0xca, 0x22, 0x59, 0x39, 0xd9,
0xef, 0x46, 0xc6, 0x86, 0x3f, 0x90, 0xb1, 0x9e, 0xbe, 0xed, 0x5d, 0x61, 0xd9, 0x15, 0x1f, 0x08,
0x95, 0x20, 0xd3, 0xd7, 0xbc, 0x5a, 0x23, 0x2c, 0xb7, 0xfc, 0x01, 0x51, 0x16, 0x71, 0x71, 0x71,
0x7d, 0x70, 0x70, 0x70, 0xe0, 0x40, 0xc6, 0x82, 0x52, 0x1d, 0x72, 0x42, 0x32, 0xcb, 0xde, 0x13,
0x2a, 0x41, 0xfa, 0x97, 0xbf, 0x98, 0x29, 0x24, 0xbb, 0xfc, 0x3e, 0x85, 0x71, 0xb4, 0xf4, 0x9f,
0x80, 0xe4, 0xd2, 0x2f, 0x04, 0xf0, 0x57, 0x60, 0x3c, 0xdd, 0xa6, 0x20, 0xd5, 0x35, 0x30, 0x81,
0x2c, 0x23, 0x06, 0xf3, 0x4a, 0x2d, 0x13, 0x19, 0xcd, 0xb0, 0x58, 0xf1, 0x52, 0x11, 0xaf, 0x9b,
0x40, 0xfc, 0x81, 0x20, 0x16, 0xf2, 0xbc, 0x4f, 0x99, 0x45, 0xc2, 0x5e, 0xef, 0xf7, 0x6c, 0x7f,
0xb0, 0x77, 0xef, 0xb1, 0x77, 0x3b, 0x71, 0xe1, 0x3d, 0xfb, 0x5f, 0xec, 0x5e, 0x22, 0xe8, 0xf1,
0x15, 0xaf, 0x45, 0xea, 0x1a, 0x6a, 0xff, 0x34, 0xb5, 0x34, 0x7e, 0xe0, 0xc2, 0x8b, 0x85, 0x3d,
0x3e, 0xee, 0x3d, 0xfa, 0x66, 0x11, 0x30, 0x83, 0xce, 0xc1, 0x85, 0xf7, 0x9e, 0xff, 0x3a, 0x7f,
0xa9, 0xa0, 0xfb, 0x17, 0x9c, 0x16, 0x11, 0x83, 0x97, 0x0a, 0x7a, 0xbc, 0xdd, 0x3e, 0xfb, 0xc4,
0xcc, 0x1d, 0x6b, 0xae, 0x4e, 0xc6, 0x89, 0x17, 0x9f, 0x9b, 0xb6, 0x44, 0x80, 0x42, 0x8b, 0x80,
0x41, 0x72, 0x7c, 0xa9, 0x90, 0xd7, 0x3d, 0x82, 0x58, 0xd0, 0xe3, 0x1c, 0x45, 0x16, 0x51, 0x25,
0xd5, 0xd1, 0x02, 0x03, 0x00, 0x3c, 0x6b, 0xd6, 0x47, 0xca, 0x0b, 0x70, 0x93, 0x00, 0x00, 0x00,
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE hierarchy_nav_xpm[1] = {{ png, sizeof( png ), "hierarchy_nav_xpm" }};

View File

@ -8,63 +8,48 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0x76, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xb5, 0x95, 0x6b, 0x48, 0x93,
0x51, 0x18, 0xc7, 0x7d, 0x5f, 0xb7, 0x91, 0xd1, 0x45, 0x2a, 0x10, 0x6f, 0x20, 0x79, 0x61, 0x29,
0x4d, 0x34, 0xd9, 0x9a, 0xe2, 0x94, 0xa6, 0xe1, 0x9a, 0x39, 0xca, 0xb6, 0x79, 0xcb, 0x6b, 0xde,
0x95, 0x9c, 0x29, 0x5d, 0xb4, 0xa5, 0xa5, 0x25, 0x82, 0x73, 0xe5, 0x34, 0x41, 0x24, 0x3f, 0x94,
0xe4, 0x50, 0x30, 0xb0, 0x10, 0x32, 0x50, 0x08, 0x5b, 0x85, 0x20, 0x42, 0xe5, 0x07, 0x4d, 0x30,
0x45, 0x05, 0x49, 0x52, 0x41, 0x26, 0xe4, 0xd3, 0x39, 0x6f, 0xbe, 0x73, 0x9b, 0x6e, 0x6e, 0x99,
0x07, 0xfe, 0xb0, 0xfd, 0xce, 0xce, 0xf9, 0x71, 0x9e, 0x73, 0xce, 0x8e, 0x03, 0x00, 0x38, 0x18,
0x07, 0xb5, 0x63, 0x4c, 0x26, 0xf3, 0x2c, 0x1d, 0xf4, 0xfd, 0xd4, 0x26, 0x3f, 0x6c, 0xcc, 0x59,
0x2c, 0x16, 0x67, 0x93, 0xb3, 0x8c, 0x39, 0x4a, 0x88, 0xf9, 0x9c, 0xd4, 0xef, 0xcc, 0x41, 0x98,
0x27, 0xd9, 0xa8, 0x4b, 0x25, 0x80, 0x4e, 0xea, 0x69, 0x72, 0x0c, 0xf3, 0x33, 0x6e, 0x64, 0xf1,
0x1b, 0xd9, 0x16, 0xcf, 0x0b, 0x26, 0x27, 0x31, 0xc7, 0x93, 0xb7, 0x8b, 0xb7, 0x78, 0x19, 0x8f,
0x5c, 0x44, 0x72, 0x67, 0x9b, 0x44, 0x70, 0x0b, 0x7d, 0xdc, 0xcc, 0x0d, 0x2e, 0xf1, 0x89, 0x16,
0xcd, 0x15, 0x6f, 0xf1, 0x9a, 0x08, 0xe2, 0x0b, 0x2d, 0xc2, 0x02, 0x9a, 0xb7, 0xc4, 0x10, 0x73,
0x16, 0x45, 0xa8, 0x11, 0x28, 0x07, 0x70, 0xf8, 0x1e, 0x64, 0x93, 0x2e, 0xfb, 0x10, 0xd4, 0xe5,
0x5f, 0x84, 0xe6, 0x64, 0x36, 0x94, 0x72, 0x89, 0xcf, 0x98, 0x07, 0xb9, 0x92, 0xa5, 0x1f, 0x33,
0x18, 0x50, 0x9d, 0x11, 0x0d, 0xd5, 0x52, 0x0e, 0x3c, 0x88, 0x20, 0xbe, 0x62, 0xce, 0x60, 0x30,
0x04, 0x03, 0x89, 0x04, 0x54, 0x24, 0x84, 0x82, 0x32, 0x81, 0x07, 0x8f, 0xa3, 0x89, 0x79, 0xc4,
0x5d, 0xe8, 0xf9, 0x50, 0x48, 0x83, 0xc8, 0xcf, 0xcf, 0xef, 0x8e, 0x5c, 0x2e, 0x9f, 0xcd, 0xc9,
0xc9, 0x99, 0x8e, 0x0d, 0x0b, 0x58, 0xee, 0x48, 0x74, 0x83, 0xa1, 0x57, 0x2f, 0x40, 0x99, 0x22,
0x00, 0x45, 0xc4, 0x09, 0x3d, 0xe6, 0x12, 0x21, 0x7f, 0xa9, 0x4b, 0x7e, 0x04, 0x7a, 0x9f, 0x3d,
0x81, 0x9b, 0xa9, 0x22, 0xa8, 0x10, 0x3a, 0xaf, 0x63, 0x1e, 0x17, 0x17, 0x37, 0xaf, 0xbd, 0xc4,
0x00, 0xb5, 0xb2, 0x04, 0xea, 0xca, 0xaf, 0xc1, 0xfd, 0x73, 0x4e, 0xbf, 0xd3, 0xd2, 0xd2, 0x66,
0x70, 0x5f, 0x66, 0x66, 0xe6, 0x34, 0x9b, 0xcd, 0x6e, 0x35, 0x88, 0xfc, 0xfd, 0xfd, 0x1f, 0x4e,
0x4d, 0x4d, 0x01, 0x6e, 0xea, 0x7b, 0x0a, 0xd8, 0x40, 0x25, 0x18, 0x4e, 0x67, 0xc2, 0xcf, 0x12,
0x07, 0x50, 0x67, 0xf0, 0x28, 0xfe, 0xb2, 0xbd, 0x09, 0x70, 0xe9, 0x46, 0xb2, 0x98, 0x30, 0x5b,
0xe4, 0x00, 0xad, 0x69, 0x01, 0x14, 0xd7, 0xe9, 0x74, 0xd4, 0xde, 0x7c, 0xcb, 0x65, 0xc0, 0x44,
0x3e, 0x09, 0x1d, 0x89, 0xae, 0xb0, 0xb4, 0xb4, 0x44, 0xf5, 0xad, 0xad, 0xad, 0x01, 0x87, 0xc3,
0xe9, 0xb4, 0x28, 0x32, 0xde, 0x23, 0x73, 0x11, 0xcd, 0xcd, 0x45, 0x34, 0xb7, 0x59, 0xf4, 0xfe,
0x6d, 0x1f, 0xa8, 0xcb, 0x92, 0x0c, 0x79, 0x5a, 0x53, 0x46, 0xf1, 0xb1, 0x11, 0x1d, 0x34, 0x28,
0x12, 0x0d, 0xbc, 0xe1, 0x76, 0x2e, 0xc5, 0x67, 0x66, 0x66, 0xa0, 0xae, 0x58, 0x66, 0xe0, 0xb5,
0xd7, 0x53, 0x40, 0xaf, 0xd7, 0xef, 0x2c, 0xf2, 0xf5, 0xf5, 0x6d, 0x54, 0xa9, 0x54, 0xb0, 0xb2,
0xb2, 0x02, 0xd6, 0xda, 0xea, 0xea, 0x2a, 0x68, 0x34, 0x1a, 0xa8, 0xaa, 0xaa, 0xb2, 0x29, 0xb5,
0xb5, 0xb5, 0x10, 0x14, 0x14, 0xf4, 0xda, 0x64, 0x45, 0x3d, 0x3d, 0x3d, 0x80, 0x36, 0xd1, 0xaa,
0xa8, 0xaf, 0xaf, 0x0f, 0x04, 0x02, 0x01, 0x24, 0x27, 0x27, 0x43, 0x53, 0x93, 0x66, 0xd7, 0x48,
0xa5, 0x32, 0xe0, 0xf3, 0xf9, 0x53, 0xdb, 0x4a, 0x57, 0x5f, 0x5f, 0x0f, 0xe3, 0xe3, 0xe3, 0x16,
0x45, 0x5a, 0xad, 0x96, 0x12, 0x55, 0x56, 0xde, 0x85, 0xe5, 0xe5, 0xd5, 0x5d, 0xa3, 0x50, 0x28,
0x20, 0x34, 0x34, 0xf4, 0x87, 0x89, 0xa8, 0xbf, 0xbf, 0x1f, 0x92, 0x92, 0x92, 0xac, 0xae, 0x88,
0x16, 0x89, 0xc5, 0xb1, 0x80, 0x8e, 0xef, 0xae, 0x11, 0x89, 0x44, 0xa6, 0x22, 0x74, 0x8f, 0x1a,
0x94, 0x4a, 0x25, 0x2c, 0x2c, 0x2c, 0xd8, 0x24, 0x8a, 0x8f, 0x8f, 0xa7, 0x56, 0x65, 0x1e, 0x89,
0x44, 0x42, 0xf5, 0x1b, 0x67, 0xdb, 0x8a, 0xe8, 0x53, 0xb7, 0xb1, 0xb1, 0x41, 0x9d, 0x16, 0x3a,
0xeb, 0xeb, 0xeb, 0x06, 0xde, 0xd9, 0xd9, 0x69, 0xb5, 0x74, 0xb8, 0x54, 0x36, 0x8b, 0x9a, 0x1f,
0x55, 0x40, 0xab, 0xdc, 0xd3, 0x90, 0x22, 0x09, 0x97, 0xe2, 0x3d, 0xcf, 0xdb, 0x20, 0x3f, 0xc6,
0xff, 0xff, 0xad, 0xc8, 0xda, 0x85, 0x6d, 0x4f, 0x70, 0xdf, 0xdb, 0x1e, 0x99, 0x8b, 0x26, 0x0b,
0x59, 0x50, 0x77, 0x95, 0x07, 0xdd, 0xe9, 0x1e, 0x26, 0x22, 0xcd, 0x15, 0xf7, 0xbd, 0x9d, 0x3a,
0x6f, 0x6f, 0xef, 0x98, 0xc0, 0xc0, 0xc0, 0x77, 0xe8, 0x72, 0x0d, 0x70, 0x7d, 0x8e, 0x4f, 0xb7,
0xc8, 0x3c, 0x61, 0x71, 0x62, 0x14, 0x6a, 0xb2, 0x45, 0x90, 0xc7, 0x3d, 0xf8, 0x0b, 0xf3, 0x60,
0x3f, 0xd7, 0xf1, 0xf2, 0x0b, 0x3e, 0x76, 0xdf, 0x23, 0x24, 0x1a, 0xb1, 0xf8, 0x1e, 0xad, 0x94,
0xa2, 0xff, 0x32, 0x99, 0x07, 0x8c, 0xe6, 0x3a, 0x99, 0xbc, 0x47, 0x6d, 0xf2, 0xbf, 0x2b, 0x8a,
0x8a, 0x8a, 0xa2, 0xf6, 0xc3, 0x38, 0x62, 0xb1, 0x78, 0xdb, 0xfe, 0x6c, 0xa6, 0xd7, 0xee, 0x87,
0x8f, 0xde, 0xa3, 0x9d, 0x4a, 0x37, 0x3c, 0xfc, 0xc1, 0x3e, 0x11, 0xcf, 0xc3, 0x31, 0xa7, 0x28,
0x84, 0x18, 0xa2, 0x73, 0xfe, 0x24, 0xd1, 0x8d, 0x79, 0xa0, 0x8b, 0x63, 0xec, 0x65, 0x9e, 0xd7,
0x77, 0x3c, 0x38, 0x2b, 0x2b, 0x0b, 0xba, 0xba, 0xb4, 0x26, 0x51, 0xa9, 0x1a, 0xed, 0x13, 0x59,
0x4b, 0x78, 0x78, 0x78, 0x89, 0x85, 0xc9, 0xac, 0xe5, 0xdf, 0x45, 0xc6, 0xa5, 0x93, 0x4a, 0xa5,
0xfb, 0x27, 0x2a, 0x28, 0x28, 0x84, 0xc1, 0xc1, 0x21, 0x2a, 0xe8, 0x29, 0xdf, 0x17, 0x51, 0x18,
0x1a, 0xa8, 0xb7, 0xa7, 0x74, 0x68, 0x4c, 0xb9, 0xdd, 0x22, 0x1c, 0x74, 0xb4, 0x8f, 0x46, 0x46,
0x46, 0x7a, 0xd9, 0x12, 0xa1, 0x50, 0xe8, 0x42, 0x8f, 0xfb, 0x03, 0x44, 0x91, 0x62, 0xcf, 0xfa,
0x46, 0x0e, 0xe2, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x02, 0x83, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x56, 0xcf, 0x4f, 0x13,
0x41, 0x14, 0x6e, 0x14, 0x89, 0x47, 0xff, 0x02, 0x25, 0x88, 0xca, 0x5f, 0xd1, 0x34, 0xfd, 0x01,
0xdd, 0xdd, 0x5a, 0xba, 0xab, 0x4b, 0x90, 0xaa, 0x18, 0x0b, 0xdb, 0x1e, 0x4c, 0x7a, 0x70, 0x31,
0xfc, 0x17, 0x22, 0x89, 0x86, 0x34, 0x31, 0xe2, 0xc9, 0x44, 0xd2, 0x60, 0x82, 0x29, 0x01, 0x6f,
0x1e, 0x7b, 0xe5, 0x40, 0x6c, 0xe2, 0xc1, 0xf4, 0x50, 0x3d, 0xb0, 0x26, 0xb8, 0x29, 0x5d, 0x6d,
0xfb, 0xdc, 0x37, 0xee, 0x4c, 0x76, 0xbb, 0x3f, 0x58, 0x10, 0x98, 0xe4, 0x4b, 0xdf, 0xce, 0x37,
0xef, 0x7d, 0x7d, 0x6f, 0x67, 0xde, 0x6c, 0x04, 0x00, 0x22, 0xe7, 0x01, 0xc7, 0x83, 0x28, 0xa4,
0x1a, 0x3c, 0x37, 0xf9, 0x87, 0x62, 0x8a, 0x4f, 0x7d, 0xa3, 0x9c, 0x24, 0x24, 0x77, 0x33, 0xdc,
0xc4, 0x21, 0x05, 0xae, 0xa5, 0x1c, 0xae, 0xf3, 0xf3, 0xf3, 0x14, 0xc2, 0x45, 0xfa, 0xe2, 0x10,
0x18, 0xcf, 0x2e, 0x10, 0xa4, 0xd3, 0x69, 0xb0, 0x73, 0x9a, 0x3a, 0x0c, 0xfa, 0xe2, 0x25, 0x02,
0x3b, 0x87, 0x36, 0xf5, 0x19, 0xf4, 0xf3, 0x15, 0xfa, 0xb0, 0x30, 0x06, 0x8f, 0xee, 0xa6, 0xa1,
0xaa, 0xdc, 0x74, 0x09, 0x6d, 0x28, 0x37, 0x08, 0xb7, 0xa1, 0x8c, 0xb9, 0x84, 0x70, 0x7d, 0x5e,
0xe4, 0x60, 0x7d, 0xe1, 0x96, 0xbf, 0x90, 0x24, 0x49, 0xbb, 0x3c, 0xcf, 0x63, 0xda, 0x30, 0x77,
0x87, 0x83, 0xb7, 0xab, 0x2b, 0x20, 0x4f, 0x71, 0xc4, 0x81, 0xcc, 0x5b, 0xdc, 0xac, 0x19, 0xe8,
0xcd, 0xab, 0x65, 0xf2, 0x6b, 0xe7, 0xd0, 0xce, 0x4b, 0x1c, 0xbc, 0x7e, 0xf9, 0xdc, 0xc1, 0x65,
0xb3, 0xd9, 0x56, 0x2c, 0x16, 0xbb, 0xcc, 0x84, 0x32, 0x99, 0xcc, 0xa1, 0xa6, 0x69, 0x70, 0x5b,
0xe0, 0xa1, 0x56, 0x1c, 0x01, 0x65, 0x7a, 0x12, 0x3e, 0x16, 0xaf, 0x13, 0x07, 0xc3, 0x30, 0x08,
0x90, 0xdb, 0x54, 0x46, 0x2d, 0x6e, 0xd4, 0xc1, 0xa1, 0xfd, 0xa9, 0x74, 0x15, 0x9e, 0xcc, 0x4c,
0xc0, 0x76, 0xf1, 0x1a, 0xe3, 0x4c, 0xa1, 0x4e, 0x2e, 0x97, 0xbb, 0xe2, 0x10, 0xd2, 0x75, 0x9d,
0x04, 0xc3, 0x1a, 0xc3, 0x52, 0x84, 0xc0, 0x2a, 0x01, 0x19, 0x41, 0x1c, 0xb1, 0xad, 0x79, 0x3b,
0xe7, 0x2b, 0xf4, 0xf8, 0xc1, 0x3d, 0x33, 0x20, 0xc7, 0x70, 0x7f, 0x46, 0x66, 0xc1, 0x82, 0x38,
0xb4, 0xbd, 0x38, 0x2f, 0xa1, 0x4e, 0xbd, 0x5e, 0x87, 0x5e, 0xaf, 0xc7, 0xca, 0x81, 0xe8, 0x76,
0xbb, 0x2c, 0x58, 0x10, 0x87, 0xb6, 0x17, 0xe7, 0x12, 0x12, 0x04, 0xc1, 0x28, 0x14, 0x0a, 0x50,
0xa9, 0x54, 0xe0, 0x34, 0x87, 0x67, 0xe9, 0x9a, 0xcd, 0x26, 0x12, 0xd0, 0x6e, 0xb7, 0x43, 0x05,
0x29, 0x97, 0xcb, 0x90, 0x48, 0x24, 0x02, 0x11, 0x8d, 0x46, 0x11, 0x9f, 0x1d, 0x42, 0xd5, 0x6a,
0x15, 0x4a, 0xa5, 0x12, 0xf4, 0xfb, 0xfd, 0x23, 0x45, 0xb0, 0x3c, 0x18, 0x64, 0x7f, 0xff, 0x67,
0x20, 0xf6, 0xf6, 0xbe, 0x90, 0x75, 0xb8, 0xc5, 0xff, 0x1d, 0x46, 0x9e, 0xff, 0xad, 0xaa, 0x2a,
0x34, 0x1a, 0x8d, 0x50, 0xd9, 0x50, 0xa1, 0x64, 0x32, 0x19, 0x08, 0x9a, 0x15, 0x13, 0xa2, 0xbb,
0x2e, 0xec, 0xa0, 0x42, 0xad, 0xd6, 0x0f, 0x57, 0x16, 0xb6, 0x92, 0x31, 0xb8, 0x84, 0xe6, 0xe7,
0xf2, 0xe4, 0x0c, 0x50, 0x3c, 0x9c, 0x9d, 0x66, 0xc1, 0x91, 0xc3, 0xb3, 0x44, 0x81, 0x01, 0x30,
0xe8, 0x60, 0x16, 0x83, 0x22, 0x9e, 0x42, 0x47, 0x1d, 0x4a, 0xda, 0x34, 0xb5, 0xa7, 0xc3, 0xa1,
0xde, 0x11, 0xc2, 0x57, 0xe8, 0xbd, 0xd9, 0x14, 0x07, 0x9a, 0x23, 0x13, 0x5a, 0xb7, 0xb8, 0x77,
0xf3, 0xe3, 0x9e, 0xff, 0xdc, 0x0f, 0x4c, 0x48, 0x14, 0xc5, 0xaf, 0xe6, 0x59, 0xea, 0x62, 0xe3,
0xc4, 0x40, 0x6b, 0xab, 0x2f, 0x58, 0x73, 0xc4, 0x79, 0x04, 0xda, 0xac, 0xa9, 0xe6, 0x38, 0x12,
0xe0, 0xe0, 0x40, 0x67, 0xf0, 0x2b, 0x9b, 0x43, 0x48, 0x96, 0xe5, 0x8b, 0xf8, 0x80, 0x57, 0xc1,
0x96, 0xd9, 0x14, 0xed, 0xcd, 0x11, 0xe7, 0x11, 0x68, 0x6f, 0x5b, 0xdc, 0xa6, 0x32, 0x72, 0xb2,
0x8c, 0xec, 0x77, 0x8e, 0xc7, 0x3b, 0x62, 0x77, 0x0e, 0x9d, 0xff, 0xa5, 0x0e, 0xf9, 0xee, 0xba,
0x50, 0x42, 0x78, 0x05, 0xdb, 0x77, 0x5d, 0x96, 0x4f, 0x7d, 0xa7, 0x1c, 0xda, 0x76, 0xee, 0x44,
0xbb, 0xee, 0xb8, 0x40, 0x47, 0xbf, 0x8c, 0x28, 0x6a, 0xb5, 0xad, 0xd3, 0x13, 0xf2, 0xca, 0x88,
0x22, 0x1e, 0x8f, 0xff, 0xbf, 0x10, 0xc2, 0x0c, 0xb0, 0x63, 0xa2, 0x13, 0x02, 0x3b, 0xae, 0x8f,
0x93, 0x73, 0xfb, 0xae, 0x3b, 0x4b, 0xfc, 0x05, 0x25, 0x52, 0xe7, 0x63, 0x57, 0x67, 0xc5, 0x3f,
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE module_filtered_list_xpm[1] = {{ png, sizeof( png ), "module_filtered_list_xpm" }};

View File

@ -8,64 +8,46 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0x79, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xad, 0x95, 0x6f, 0x48, 0x13,
0x61, 0x1c, 0xc7, 0xbd, 0x6b, 0x1b, 0x15, 0xfd, 0xa3, 0x02, 0xb1, 0x14, 0x22, 0x53, 0xcc, 0x68,
0x62, 0xc5, 0xd6, 0x14, 0xe7, 0x9f, 0x59, 0xba, 0x5a, 0x0e, 0xad, 0x9c, 0xb3, 0xda, 0xa6, 0x95,
0x4b, 0x72, 0xb5, 0x99, 0x96, 0x65, 0x2d, 0x2b, 0xcd, 0x21, 0x68, 0x56, 0x56, 0x42, 0x58, 0xbd,
0x28, 0x29, 0x49, 0x28, 0xb0, 0x10, 0xaa, 0x17, 0x41, 0xc4, 0x2a, 0x84, 0x12, 0x2a, 0x5f, 0x54,
0x82, 0x19, 0x26, 0x44, 0x92, 0x0a, 0x32, 0x21, 0xbf, 0x3d, 0xcf, 0xe5, 0x4d, 0xb7, 0xda, 0x6e,
0x66, 0x0f, 0x7c, 0xe1, 0xee, 0x73, 0xf7, 0x3c, 0x1f, 0x9e, 0xdf, 0x73, 0xcf, 0x3d, 0x41, 0x00,
0x82, 0x26, 0x87, 0xb4, 0x85, 0x62, 0xb1, 0x78, 0x3d, 0x1f, 0x72, 0xbf, 0x72, 0x9c, 0xcf, 0x9d,
0xcc, 0x25, 0x12, 0x89, 0x74, 0x9c, 0x4b, 0x26, 0x73, 0x92, 0x75, 0xde, 0x63, 0x72, 0xef, 0x79,
0x83, 0xf8, 0x30, 0xf6, 0x9c, 0xd3, 0xc0, 0x80, 0x8f, 0x61, 0x35, 0xdb, 0x49, 0xf9, 0xda, 0x25,
0xac, 0xe5, 0x61, 0xf6, 0x04, 0xdf, 0xb7, 0x86, 0xfd, 0x48, 0x39, 0x1d, 0xbc, 0x69, 0xf3, 0x04,
0x2f, 0x91, 0xb3, 0xdf, 0x88, 0x7c, 0x41, 0x40, 0x22, 0x94, 0x91, 0xcb, 0xf1, 0x1c, 0x92, 0x31,
0x2f, 0x79, 0x51, 0x9f, 0x65, 0x82, 0x57, 0x26, 0x32, 0x6f, 0x79, 0x11, 0x15, 0xf0, 0xfc, 0x72,
0x3a, 0xd3, 0xe7, 0x53, 0x44, 0x1a, 0x43, 0x32, 0x93, 0x46, 0x11, 0xca, 0x5e, 0x74, 0xee, 0x9d,
0x03, 0x47, 0xe1, 0x16, 0x5c, 0xda, 0x11, 0x85, 0x62, 0x19, 0xf3, 0x8a, 0xf2, 0xd8, 0x10, 0xb6,
0xf8, 0x45, 0x9e, 0x08, 0xa7, 0xf2, 0x36, 0xe0, 0xd4, 0x76, 0x29, 0xce, 0x24, 0x32, 0xef, 0x28,
0x17, 0x89, 0x44, 0xca, 0xc7, 0x7a, 0x06, 0xe5, 0x39, 0x71, 0xb0, 0xe7, 0xc8, 0x71, 0x7e, 0x03,
0xf3, 0x95, 0xf0, 0x60, 0x7e, 0x3c, 0x12, 0xd6, 0x2d, 0x8a, 0x8c, 0x8c, 0x3c, 0xa6, 0xd3, 0xe9,
0xbe, 0x14, 0x14, 0x14, 0xf4, 0x68, 0xe2, 0x57, 0x0d, 0xde, 0xd0, 0x2f, 0xc1, 0xd3, 0xfb, 0xb7,
0x60, 0xdf, 0xa9, 0x84, 0x2d, 0x71, 0xb1, 0x8b, 0x72, 0xad, 0x4a, 0x31, 0x70, 0x47, 0x37, 0x0f,
0xf7, 0xae, 0x5f, 0xc0, 0x11, 0x83, 0x1a, 0xe5, 0xaa, 0x05, 0xa3, 0x94, 0x67, 0x64, 0x64, 0x7c,
0x6d, 0xc9, 0x14, 0xa1, 0xde, 0x6e, 0x85, 0xa3, 0x74, 0x0f, 0x4e, 0xa7, 0xcc, 0xfa, 0x69, 0x34,
0x1a, 0x7b, 0xe9, 0xb3, 0xfc, 0xfc, 0xfc, 0x9e, 0xa8, 0xa8, 0xa8, 0x46, 0xb7, 0x28, 0x3a, 0x3a,
0xfa, 0x6c, 0x77, 0x77, 0x37, 0x68, 0xab, 0x3f, 0x69, 0xc3, 0x18, 0x29, 0xc1, 0x73, 0x93, 0x18,
0xdf, 0xad, 0x41, 0xa8, 0xcf, 0x93, 0x73, 0xfc, 0x76, 0xd3, 0x45, 0xd0, 0xd2, 0x75, 0xec, 0x16,
0xe3, 0x4b, 0x51, 0x10, 0x1a, 0x8d, 0xab, 0x38, 0xee, 0x74, 0x3a, 0xb9, 0xb5, 0x79, 0x6f, 0x16,
0xe1, 0x43, 0x21, 0x8b, 0x1b, 0xfa, 0x10, 0x0c, 0x0c, 0x0c, 0x70, 0xcf, 0x46, 0x46, 0x46, 0x20,
0x95, 0x4a, 0x9b, 0x7d, 0x8a, 0x26, 0xaf, 0x91, 0xb7, 0x88, 0xe7, 0xde, 0x22, 0x9e, 0x07, 0x2c,
0x7a, 0xf6, 0xa8, 0x0d, 0xf5, 0x25, 0xb9, 0xee, 0x5c, 0xa9, 0x2c, 0xe1, 0x78, 0x67, 0x87, 0x13,
0xb5, 0x36, 0xbd, 0x9b, 0xd7, 0x1e, 0x35, 0x73, 0xbc, 0xb7, 0xb7, 0x17, 0x0e, 0x4b, 0xb6, 0x9b,
0x57, 0x1d, 0xdc, 0x09, 0x97, 0xcb, 0xf5, 0x77, 0x51, 0x44, 0x44, 0xc4, 0xb9, 0xba, 0xba, 0x3a,
0x0c, 0x0d, 0x0d, 0xc1, 0x5f, 0x1b, 0x1e, 0x1e, 0x46, 0x43, 0x43, 0x03, 0x2a, 0x2a, 0x2a, 0x02,
0x4a, 0x55, 0x55, 0x15, 0x62, 0x63, 0x63, 0x1f, 0x78, 0xcc, 0xa8, 0xb5, 0xb5, 0x15, 0x64, 0x11,
0xfd, 0x8a, 0xda, 0xda, 0xda, 0xa0, 0x54, 0x2a, 0xa1, 0xd5, 0x6a, 0x61, 0xb3, 0xd9, 0x04, 0xa3,
0xd1, 0x68, 0xa0, 0x50, 0x28, 0xba, 0xff, 0x28, 0x5d, 0x4d, 0x4d, 0x0d, 0xba, 0xba, 0xba, 0x7c,
0x8a, 0x5a, 0x5a, 0x5a, 0x38, 0xd1, 0xf1, 0xe3, 0x27, 0x30, 0x38, 0x38, 0x2c, 0x18, 0x2a, 0x8b,
0x8b, 0x8b, 0xfb, 0xec, 0x21, 0x6a, 0x6f, 0x6f, 0x47, 0x6e, 0x6e, 0xae, 0xdf, 0x19, 0xf1, 0xa2,
0x94, 0x94, 0x14, 0xa8, 0xd5, 0x6a, 0xc1, 0x24, 0x27, 0x27, 0x7b, 0x8a, 0xc8, 0x3e, 0xaa, 0xb5,
0xdb, 0xed, 0xe8, 0xef, 0xef, 0x0f, 0x48, 0x44, 0x07, 0x31, 0x99, 0x4c, 0x82, 0x49, 0x4b, 0x4b,
0xfb, 0x73, 0x46, 0xfc, 0x57, 0x37, 0x36, 0x36, 0xc6, 0x7d, 0x2d, 0x7c, 0x46, 0x47, 0x47, 0xdd,
0xbc, 0xb9, 0xb9, 0x79, 0xfa, 0xa5, 0xe3, 0x45, 0x97, 0xaa, 0xcb, 0xd1, 0xa8, 0x0b, 0x73, 0xa7,
0x48, 0x2b, 0xe3, 0x78, 0xeb, 0xcd, 0xab, 0x28, 0x4c, 0x8f, 0xfe, 0x7f, 0x33, 0xf2, 0xb7, 0x61,
0x9b, 0x72, 0x96, 0x4e, 0x6f, 0x8d, 0xbc, 0x45, 0x1f, 0xf7, 0x4b, 0xe0, 0xd8, 0x25, 0xc7, 0x5d,
0x53, 0xa8, 0x87, 0xa8, 0x61, 0xdb, 0xd2, 0xe9, 0x95, 0x2e, 0x3c, 0x3c, 0x3c, 0x3d, 0x26, 0x26,
0xe6, 0x09, 0xd9, 0x5c, 0x8f, 0x65, 0x2b, 0x16, 0xf5, 0x5c, 0xce, 0x0e, 0xc3, 0xb7, 0x0f, 0xaf,
0x51, 0xb9, 0x57, 0x8d, 0x7d, 0xb2, 0xd9, 0x3f, 0x28, 0x5f, 0x13, 0x19, 0xd2, 0x55, 0xba, 0x69,
0x05, 0x27, 0xca, 0xcc, 0xcc, 0xc4, 0xe1, 0xc3, 0x47, 0x04, 0x43, 0x7e, 0xb8, 0x54, 0xd4, 0xe1,
0xf3, 0x3c, 0x1a, 0x2a, 0x26, 0xff, 0xb2, 0xec, 0x50, 0xbc, 0x36, 0xcf, 0xf2, 0x38, 0x8f, 0xae,
0xea, 0x7e, 0xcf, 0x68, 0x8a, 0xb9, 0x37, 0xe5, 0x83, 0x8f, 0x5f, 0xa3, 0xb2, 0xb2, 0xa3, 0xe8,
0xeb, 0xeb, 0x17, 0x8c, 0xc5, 0x72, 0xc0, 0xb7, 0x48, 0x1e, 0x3a, 0xa3, 0xa0, 0x68, 0x1d, 0xf3,
0x94, 0xcf, 0xc6, 0xe5, 0xcc, 0x5d, 0xca, 0x63, 0x82, 0x67, 0x68, 0xb2, 0xe4, 0xcb, 0x3e, 0x51,
0x11, 0x39, 0xbb, 0x50, 0x5d, 0xed, 0x10, 0x4c, 0x56, 0xd6, 0x56, 0xdf, 0x22, 0x7f, 0x49, 0x48,
0x48, 0xb0, 0xfe, 0xb7, 0xd2, 0x05, 0x22, 0xb2, 0x5a, 0x6d, 0x78, 0xf3, 0xa6, 0x53, 0x30, 0x66,
0xb3, 0x79, 0x7a, 0x22, 0x83, 0xc1, 0x88, 0x6b, 0xd7, 0xae, 0x0b, 0x46, 0xaf, 0xd7, 0xff, 0xb3,
0x28, 0x9e, 0x74, 0x74, 0x4d, 0xa5, 0x74, 0xa4, 0x4f, 0xe9, 0x94, 0x45, 0x34, 0xa9, 0xa9, 0xa9,
0xf3, 0x93, 0x92, 0x92, 0x96, 0x05, 0x12, 0x95, 0x4a, 0x15, 0xcc, 0xf7, 0xfb, 0x05, 0x1b, 0x4e,
0x78, 0xb6, 0xc1, 0xf0, 0x8c, 0xae, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82,
0xce, 0x00, 0x00, 0x02, 0x63, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x56, 0xcf, 0x6b, 0x13,
0x41, 0x14, 0x0e, 0x5a, 0x8b, 0x47, 0xff, 0x02, 0x2d, 0xb5, 0x6a, 0xff, 0x8a, 0x10, 0x48, 0xd2,
0x66, 0x67, 0x63, 0x9a, 0x5d, 0xdd, 0x52, 0x1b, 0xb5, 0x62, 0xda, 0x4d, 0x0e, 0x42, 0x0e, 0x6e,
0xc5, 0xff, 0xa2, 0x5a, 0x50, 0x4a, 0x40, 0xd4, 0x53, 0xc1, 0x12, 0x2a, 0x54, 0x94, 0xd6, 0x9b,
0xc7, 0x5c, 0x7b, 0x0b, 0x78, 0x90, 0x1c, 0xa2, 0x87, 0xae, 0x50, 0x97, 0x34, 0xab, 0x49, 0x9e,
0xfb, 0xc6, 0x9d, 0x71, 0xb6, 0xd9, 0x6c, 0x97, 0xed, 0x8f, 0x81, 0x8f, 0x7d, 0x3b, 0xdf, 0xbc,
0xf7, 0xf1, 0xe6, 0xc7, 0x9b, 0x89, 0x01, 0x40, 0xec, 0x2c, 0xe0, 0xf9, 0x51, 0xe4, 0x74, 0x83,
0x48, 0xd3, 0x7f, 0x18, 0x66, 0x48, 0xfa, 0x1b, 0xe3, 0x54, 0x39, 0xb5, 0x9b, 0x95, 0xa6, 0x0e,
0x18, 0x70, 0x2c, 0xe3, 0x70, 0xdc, 0x30, 0x3f, 0x5f, 0x21, 0x1c, 0x64, 0x2d, 0x8f, 0x80, 0xfd,
0xe4, 0x1c, 0x45, 0x26, 0x93, 0x01, 0x91, 0x33, 0x8d, 0x51, 0xb0, 0x96, 0x2f, 0x50, 0x88, 0x1c,
0xda, 0xcc, 0xe7, 0xb0, 0xdf, 0x50, 0xa1, 0xf7, 0x4b, 0x13, 0xf0, 0xe0, 0x76, 0x06, 0x6a, 0xfa,
0xf5, 0x01, 0xa1, 0x4d, 0xfd, 0x1a, 0xe5, 0x36, 0xf5, 0x89, 0x01, 0x21, 0x1c, 0x5f, 0x50, 0x24,
0xd8, 0x58, 0xba, 0x31, 0x5c, 0x48, 0x55, 0xd5, 0x5d, 0x42, 0x08, 0xa6, 0x0d, 0x0b, 0xb7, 0x24,
0x78, 0xbb, 0xb6, 0x0a, 0xda, 0x8c, 0x44, 0x1d, 0x68, 0xbf, 0xcb, 0xcd, 0x3b, 0x81, 0x5e, 0xbf,
0x7c, 0x46, 0xbf, 0x22, 0x87, 0x76, 0x41, 0x95, 0xe0, 0xd5, 0x8b, 0x15, 0x0f, 0x97, 0xcb, 0xe5,
0x5a, 0x89, 0x44, 0xe2, 0x22, 0x17, 0xca, 0x66, 0xb3, 0x07, 0xa6, 0x69, 0xc2, 0x4d, 0x99, 0xc0,
0xc7, 0xd2, 0x18, 0xe8, 0xb3, 0xd3, 0xf0, 0xa1, 0x74, 0x95, 0x3a, 0xd8, 0xb6, 0x4d, 0x81, 0xdc,
0x96, 0x3e, 0xee, 0x72, 0xe3, 0x1e, 0x0e, 0xed, 0xcf, 0xe5, 0xcb, 0xf0, 0x68, 0x6e, 0x0a, 0xb6,
0x4b, 0x57, 0x38, 0xe7, 0x08, 0x75, 0xf2, 0xf9, 0xfc, 0x25, 0x8f, 0x90, 0x65, 0x59, 0x34, 0x18,
0xce, 0x31, 0x3c, 0x8d, 0x51, 0xb8, 0x53, 0x40, 0x5b, 0x10, 0x47, 0x6d, 0xb7, 0x5f, 0xe4, 0x86,
0x0a, 0x3d, 0xbc, 0x77, 0xc7, 0x09, 0x28, 0x71, 0xdc, 0x9d, 0xd3, 0x78, 0xb0, 0x20, 0x0e, 0x6d,
0x3f, 0xce, 0x4f, 0xa8, 0x53, 0xaf, 0xd7, 0xa1, 0xd7, 0xeb, 0xf1, 0xe9, 0x40, 0x74, 0xbb, 0x5d,
0x1e, 0x2c, 0x88, 0x43, 0xdb, 0x8f, 0x1b, 0x10, 0x92, 0x65, 0xd9, 0x2e, 0x16, 0x8b, 0x50, 0xad,
0x56, 0xe1, 0x24, 0x9b, 0xef, 0xd4, 0x35, 0x9b, 0x4d, 0x24, 0xa0, 0xdd, 0x6e, 0x87, 0x0a, 0x52,
0xa9, 0x54, 0x20, 0x99, 0x4c, 0x06, 0x22, 0x1e, 0x8f, 0x23, 0xbe, 0x78, 0x84, 0x6a, 0xb5, 0x1a,
0x94, 0xcb, 0x65, 0xe8, 0xf7, 0xfb, 0x47, 0x8a, 0xe0, 0xf4, 0x60, 0x90, 0xbd, 0xbd, 0x9f, 0xb0,
0xbf, 0x6f, 0x05, 0x02, 0xc7, 0xe1, 0x16, 0xff, 0x77, 0x18, 0x09, 0xf9, 0x6d, 0x18, 0x06, 0x34,
0x1a, 0x8d, 0x50, 0xd9, 0x30, 0xa1, 0xb0, 0xe0, 0x42, 0x6c, 0xd7, 0x85, 0x6d, 0x91, 0x33, 0x62,
0x42, 0x8b, 0x0b, 0x05, 0x7a, 0x06, 0x18, 0xee, 0xcf, 0xcf, 0xf2, 0xe0, 0xc8, 0xe1, 0x59, 0x62,
0x38, 0x56, 0x46, 0x47, 0x1d, 0x4a, 0x56, 0x34, 0xcd, 0xc7, 0xa3, 0x34, 0x40, 0xab, 0xf5, 0x83,
0x66, 0x15, 0x04, 0xdc, 0x14, 0xbe, 0x42, 0xef, 0x9c, 0xa2, 0x78, 0xa8, 0x38, 0x72, 0xa1, 0x0d,
0x97, 0x5b, 0x5f, 0x9c, 0x8c, 0x96, 0x91, 0xa2, 0x28, 0x5f, 0x9d, 0xb3, 0xd4, 0xc5, 0xc2, 0x89,
0x81, 0xde, 0xac, 0x3d, 0xe7, 0xc5, 0x11, 0xfb, 0x11, 0x68, 0xf3, 0xa2, 0x9a, 0x97, 0x42, 0xaf,
0x51, 0x2a, 0x95, 0xfa, 0x2f, 0xa4, 0x69, 0xda, 0x79, 0xfc, 0xc1, 0xab, 0xe0, 0x93, 0x53, 0x14,
0xc5, 0xe2, 0x88, 0xfd, 0x08, 0xb4, 0xb7, 0x5d, 0x6e, 0x4b, 0x1f, 0x8b, 0x96, 0x91, 0x78, 0xe7,
0xf8, 0xac, 0x11, 0xbf, 0x73, 0x58, 0xff, 0x2f, 0x63, 0x24, 0xda, 0xae, 0x13, 0xaf, 0x64, 0x71,
0xd7, 0xe5, 0x48, 0xfa, 0x3b, 0xe3, 0xd0, 0x16, 0xb9, 0x63, 0x65, 0x14, 0x16, 0xe8, 0x18, 0x69,
0x8d, 0xa2, 0x0a, 0x9d, 0x7a, 0x46, 0x08, 0x27, 0xc0, 0x8e, 0x83, 0x4e, 0x08, 0xec, 0x0c, 0x3c,
0x4e, 0xce, 0xec, 0x5d, 0x77, 0x9a, 0xf8, 0x0b, 0xc3, 0x10, 0x07, 0xc8, 0xe2, 0xa0, 0x96, 0x6a,
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE module_full_list_xpm[1] = {{ png, sizeof( png ), "module_full_list_xpm" }};

View File

@ -0,0 +1,66 @@
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0x16, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xcd, 0x56, 0x5d, 0x4b, 0x14,
0x51, 0x18, 0x96, 0x32, 0xe9, 0xb2, 0x5f, 0x50, 0x62, 0xf6, 0xf1, 0x2b, 0x54, 0x34, 0x75, 0x67,
0x76, 0xdb, 0xaf, 0x5a, 0x35, 0xad, 0x8c, 0xd4, 0xdd, 0x0d, 0x02, 0x2f, 0x5a, 0xa3, 0x0b, 0x45,
0x4a, 0xa4, 0x14, 0xa4, 0x12, 0x14, 0x5d, 0x90, 0xca, 0x0b, 0xbf, 0x37, 0x37, 0x15, 0x4b, 0x13,
0x91, 0x85, 0x04, 0x35, 0x08, 0xdc, 0x2b, 0x57, 0x04, 0xcd, 0x8b, 0x14, 0x74, 0x21, 0x5a, 0x56,
0xb7, 0x76, 0x7d, 0x9b, 0xf7, 0x6d, 0xe6, 0x30, 0xe3, 0xcc, 0x8e, 0x7b, 0x51, 0xd2, 0xc0, 0xc3,
0x3e, 0x73, 0x9e, 0x73, 0x9e, 0x67, 0xf6, 0xcc, 0x39, 0xef, 0x99, 0x34, 0x00, 0x48, 0x3b, 0x0e,
0x28, 0x6e, 0x6c, 0xc6, 0xc2, 0x10, 0xcf, 0x15, 0xff, 0x92, 0x60, 0xe1, 0x0b, 0x37, 0x24, 0xcd,
0x6e, 0xbc, 0x12, 0x34, 0x71, 0x45, 0x7b, 0x12, 0xb0, 0xaf, 0xa4, 0x61, 0xbf, 0x64, 0xe3, 0x34,
0x83, 0xb0, 0x53, 0xa4, 0x2e, 0x1d, 0x62, 0x0f, 0x4f, 0x10, 0x0c, 0x06, 0x03, 0xc8, 0xb5, 0xb0,
0x27, 0x03, 0x22, 0x75, 0xa7, 0x08, 0x72, 0x0d, 0xb9, 0x34, 0xe6, 0xf0, 0xb8, 0xa4, 0x41, 0xfe,
0x9a, 0x6c, 0xb8, 0x73, 0xdd, 0x00, 0x3e, 0xe7, 0x45, 0x55, 0xd0, 0xa8, 0xf3, 0x02, 0x69, 0xa3,
0xce, 0x6c, 0x55, 0x10, 0xf6, 0xaf, 0xb0, 0x71, 0x30, 0x5c, 0x73, 0x29, 0x79, 0x90, 0xdd, 0x6e,
0x0f, 0xf2, 0x3c, 0x8f, 0x7f, 0x1b, 0x2a, 0xaf, 0x71, 0xf0, 0xa6, 0xab, 0x1d, 0x1c, 0x16, 0x8e,
0x06, 0x50, 0xbb, 0xa8, 0x95, 0x0b, 0x46, 0xaf, 0x3a, 0x5f, 0xd0, 0xaf, 0x5c, 0x43, 0x5e, 0x61,
0xe7, 0xa0, 0xa7, 0xe3, 0xb9, 0x42, 0x33, 0x9b, 0xcd, 0xdf, 0xf2, 0xf2, 0xf2, 0x4e, 0xb3, 0x20,
0x93, 0xc9, 0xb4, 0x17, 0x0e, 0x87, 0xe1, 0xaa, 0x91, 0x87, 0x49, 0x57, 0x26, 0x38, 0x4b, 0x8a,
0x61, 0xc2, 0x75, 0x9e, 0x06, 0xc4, 0x62, 0x31, 0x02, 0x6a, 0xe3, 0xce, 0x2c, 0x51, 0xcb, 0x52,
0x68, 0xc8, 0x3f, 0xba, 0xcf, 0xc2, 0xfd, 0xb2, 0x22, 0x98, 0x72, 0x9d, 0x63, 0x9a, 0x10, 0xb4,
0x6f, 0xb5, 0x5a, 0xcf, 0x28, 0x82, 0x22, 0x91, 0x08, 0x99, 0xe1, 0x1c, 0xc3, 0xa3, 0x34, 0x82,
0x38, 0x05, 0x74, 0xe9, 0x69, 0xc4, 0xc5, 0x76, 0xb9, 0x96, 0x34, 0xe8, 0xee, 0xad, 0x1b, 0x82,
0x21, 0xc7, 0x70, 0xb3, 0xcc, 0xc1, 0xcc, 0xf4, 0x34, 0xe4, 0x5a, 0x9a, 0x56, 0xd0, 0xfe, 0xe2,
0xe2, 0x22, 0x24, 0x12, 0x09, 0x36, 0x1d, 0x88, 0x78, 0x3c, 0xce, 0xcc, 0xf4, 0x34, 0xe4, 0x5a,
0x9a, 0x2a, 0xc8, 0x68, 0x34, 0xc6, 0xaa, 0xaa, 0xaa, 0xc0, 0xeb, 0xf5, 0xc2, 0xdf, 0xbc, 0x34,
0xa7, 0x6e, 0x73, 0x73, 0x13, 0x05, 0x88, 0x46, 0xa3, 0x29, 0x99, 0xd4, 0xd6, 0xd6, 0x42, 0x41,
0x41, 0x81, 0x2e, 0x72, 0x72, 0x72, 0x10, 0x01, 0x45, 0x90, 0xcf, 0xe7, 0x03, 0xb7, 0xdb, 0x0d,
0x07, 0x07, 0x07, 0x47, 0x86, 0xe0, 0xf4, 0x88, 0x26, 0x0c, 0x6f, 0x07, 0x07, 0x61, 0x21, 0x10,
0x20, 0xde, 0xdf, 0xdb, 0x0b, 0xcb, 0x4b, 0x4b, 0x4c, 0xc3, 0x25, 0xfe, 0x67, 0x33, 0xf2, 0xfc,
0x4f, 0x8f, 0xc7, 0x03, 0xa1, 0x50, 0x28, 0xa5, 0x7f, 0xa3, 0x15, 0xf4, 0x75, 0x75, 0x15, 0xfa,
0x84, 0x00, 0xe4, 0x2b, 0xcb, 0xcb, 0xe0, 0x1f, 0x1a, 0x52, 0x07, 0x49, 0xab, 0x2e, 0xd5, 0x4b,
0x0a, 0x12, 0xc6, 0xc1, 0xe3, 0x86, 0x06, 0x78, 0xda, 0xd4, 0x04, 0xc2, 0x9c, 0x83, 0x6f, 0x60,
0x00, 0x9e, 0x34, 0x36, 0x42, 0x42, 0xf0, 0x7a, 0x37, 0x32, 0x42, 0x5a, 0x7e, 0x7e, 0xbe, 0x3a,
0xa8, 0xba, 0xb2, 0x82, 0xf6, 0x80, 0x84, 0xdb, 0xe5, 0x25, 0xcc, 0x1c, 0x35, 0xdc, 0x4b, 0x12,
0x30, 0xe8, 0x9e, 0xcb, 0x45, 0x01, 0x7a, 0xe0, 0x04, 0x1f, 0x55, 0xd0, 0x51, 0x9b, 0x52, 0x2a,
0x9a, 0xe1, 0x07, 0x19, 0x14, 0x84, 0x4f, 0x6b, 0xb5, 0x58, 0x60, 0xd2, 0xef, 0x87, 0x8d, 0x95,
0x15, 0xe2, 0xc3, 0x7d, 0x7d, 0xb0, 0xb5, 0xbe, 0x4e, 0x1c, 0x91, 0x9b, 0x9b, 0xab, 0x1d, 0x34,
0x24, 0x14, 0xc5, 0x43, 0xc5, 0x91, 0x05, 0x0d, 0x8b, 0x5a, 0x7f, 0xf5, 0x65, 0x0a, 0xe2, 0x38,
0x0e, 0x6b, 0x1a, 0xac, 0x06, 0x83, 0xf0, 0x61, 0x6c, 0x8c, 0xf8, 0x97, 0x85, 0x05, 0x08, 0xcc,
0xcc, 0x10, 0xc7, 0x07, 0x51, 0xbc, 0x23, 0x9b, 0xcd, 0xb6, 0x26, 0xec, 0xa5, 0x38, 0x16, 0x4e,
0x34, 0x7a, 0xdd, 0xf5, 0x92, 0x15, 0x47, 0x6c, 0x47, 0x20, 0x67, 0x45, 0xd5, 0xca, 0x91, 0x41,
0x64, 0x67, 0x47, 0x77, 0xda, 0x1a, 0xeb, 0xeb, 0x95, 0x41, 0x0e, 0x87, 0xe3, 0x24, 0xde, 0xe0,
0x51, 0xf0, 0x5e, 0x28, 0x8a, 0xf2, 0xe2, 0x88, 0xed, 0x08, 0xe4, 0x53, 0xa2, 0x36, 0xee, 0xcc,
0x24, 0x83, 0x67, 0xcd, 0xcd, 0x34, 0x55, 0x68, 0xea, 0xed, 0xe8, 0xa0, 0x55, 0x87, 0xbc, 0xa7,
0xbb, 0x1b, 0xda, 0x5a, 0x5a, 0xa0, 0xac, 0xb4, 0x54, 0x19, 0x24, 0x3f, 0x73, 0x34, 0xde, 0x11,
0x3b, 0x73, 0xa4, 0xf6, 0x1f, 0x9e, 0x74, 0xb6, 0x74, 0x3b, 0xdb, 0xdb, 0xe1, 0xfb, 0xf6, 0x36,
0xbd, 0x8b, 0xb6, 0xd6, 0x56, 0x88, 0xee, 0xee, 0xa2, 0xb1, 0x62, 0xe9, 0xab, 0x82, 0xf0, 0x08,
0x96, 0xaf, 0x3a, 0x33, 0x5f, 0xb8, 0x25, 0x69, 0xc8, 0xe5, 0x9a, 0x64, 0xf2, 0x69, 0x76, 0x16,
0xe6, 0xe7, 0xe6, 0x88, 0x4f, 0x4d, 0x4c, 0xc0, 0xe7, 0xf9, 0x79, 0xd5, 0x1e, 0x53, 0x05, 0xa5,
0x0a, 0x1c, 0x78, 0xd8, 0x4c, 0x0f, 0xff, 0x7f, 0x10, 0x42, 0x30, 0x98, 0x16, 0xb0, 0x9f, 0x02,
0xa6, 0x55, 0x1f, 0x27, 0xc7, 0xf6, 0x5d, 0xf7, 0x2f, 0xf1, 0x1b, 0x0c, 0xfc, 0xf5, 0xb8, 0xe2,
0x7e, 0x3a, 0xcb, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE module_pin_filtered_list_xpm[1] = {{ png, sizeof( png ), "module_pin_filtered_list_xpm" }};
//EOF

View File

@ -1,85 +0,0 @@
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x04, 0x3f, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xc5, 0x95, 0x7f, 0x4c, 0xd4,
0x65, 0x1c, 0xc7, 0x3f, 0x77, 0x07, 0x3a, 0xe1, 0x80, 0x15, 0x79, 0x8c, 0x1f, 0x92, 0xb4, 0x8b,
0x38, 0xfe, 0x68, 0x12, 0x13, 0x36, 0x06, 0x39, 0x72, 0xc6, 0x8d, 0xb9, 0x60, 0x21, 0x5e, 0x5c,
0x67, 0x3f, 0x2e, 0xd4, 0x3c, 0xd1, 0x89, 0xa5, 0xc5, 0x70, 0x34, 0xf7, 0xa5, 0x1a, 0xae, 0x3f,
0xfc, 0xa3, 0xe0, 0x82, 0x22, 0x83, 0xca, 0x35, 0xc6, 0x89, 0xfc, 0x90, 0xe1, 0x89, 0x28, 0x70,
0x08, 0x73, 0xca, 0x28, 0xd7, 0xc2, 0x18, 0x64, 0x63, 0x4e, 0xe6, 0x8f, 0x03, 0x21, 0xb9, 0x10,
0x7c, 0xf7, 0x3c, 0xcf, 0xf5, 0xc5, 0x80, 0x43, 0x7e, 0xd8, 0xd6, 0x1f, 0xaf, 0xdd, 0x3d, 0x3f,
0xbe, 0x9f, 0xd7, 0xf3, 0x7c, 0x3e, 0x9f, 0xef, 0xbe, 0x04, 0x80, 0x1e, 0x87, 0x13, 0x27, 0xa8,
0x88, 0x91, 0xbd, 0xd0, 0xbe, 0x99, 0x03, 0xa2, 0x67, 0x19, 0xe9, 0x8b, 0x25, 0x3e, 0x9e, 0x76,
0xd8, 0x6c, 0x34, 0x51, 0x5d, 0x4d, 0x37, 0x98, 0x6c, 0xd5, 0xa2, 0x45, 0x3e, 0x3e, 0x3e, 0x7d,
0xe1, 0xe1, 0xe1, 0x7f, 0xea, 0x74, 0xba, 0x11, 0x99, 0xb0, 0xb0, 0xb0, 0x7b, 0x69, 0x69, 0x69,
0x53, 0x15, 0x15, 0x15, 0x93, 0x56, 0xab, 0x75, 0x52, 0xa3, 0xd1, 0x4c, 0x45, 0x45, 0x45, 0x89,
0x35, 0x49, 0xf2, 0x9b, 0xe8, 0xea, 0x22, 0x9c, 0x3b, 0x47, 0x60, 0xa2, 0xbc, 0x45, 0x8b, 0x7c,
0x7d, 0x7d, 0x07, 0x8b, 0x8b, 0x8b, 0xd1, 0xd9, 0xd9, 0x39, 0x4d, 0x49, 0x49, 0x09, 0x02, 0x02,
0x02, 0x50, 0x50, 0x50, 0x80, 0x94, 0x94, 0x14, 0xc4, 0xc4, 0xc4, 0x88, 0xf9, 0xd6, 0xd6, 0x32,
0xd4, 0xd5, 0x11, 0xae, 0x5f, 0x27, 0x0c, 0x0c, 0x08, 0xd1, 0x30, 0xe3, 0xc9, 0x65, 0x8b, 0x38,
0xf9, 0xf9, 0xf9, 0x88, 0x8c, 0x8c, 0x84, 0x5e, 0xaf, 0x87, 0xcd, 0x56, 0x8e, 0xb6, 0xb6, 0x72,
0xd4, 0xd7, 0x47, 0xa3, 0xa7, 0x87, 0x30, 0x3a, 0x4a, 0x70, 0x3a, 0x89, 0xcd, 0x09, 0x59, 0x19,
0x43, 0xcb, 0xf0, 0x9e, 0x23, 0x4a, 0x0a, 0x57, 0x75, 0x1d, 0x4e, 0x52, 0xfc, 0xce, 0xd9, 0x17,
0xa7, 0x9c, 0x94, 0xf4, 0x81, 0x28, 0x7a, 0x25, 0x18, 0x3b, 0x13, 0x35, 0x38, 0x7e, 0xfc, 0x3b,
0xd8, 0xed, 0xdb, 0x70, 0xea, 0xd4, 0x7a, 0x76, 0xfa, 0x35, 0xec, 0xd7, 0x1b, 0xcd, 0xcd, 0x04,
0x87, 0x83, 0x70, 0xe9, 0x12, 0xe1, 0xe6, 0x4d, 0xc2, 0xd4, 0x14, 0x61, 0x62, 0x82, 0x30, 0x38,
0x48, 0xec, 0x50, 0xee, 0x34, 0x36, 0x36, 0xd2, 0x64, 0x4d, 0x0d, 0x0d, 0x30, 0xe1, 0x19, 0x46,
0x29, 0xc3, 0x44, 0xbb, 0x62, 0x15, 0x9d, 0xf8, 0x90, 0x3d, 0x6c, 0xf6, 0x85, 0xb4, 0xdb, 0x80,
0xa3, 0x06, 0x2d, 0xf8, 0xb8, 0xc5, 0xe4, 0x8d, 0xca, 0xca, 0x4a, 0xb4, 0xb7, 0xff, 0x88, 0xda,
0xda, 0x60, 0x34, 0x35, 0xb9, 0x83, 0xf1, 0xe0, 0x63, 0x63, 0x04, 0x97, 0x8b, 0x70, 0xff, 0xfe,
0xc3, 0x43, 0x73, 0xd9, 0xf8, 0x38, 0xe1, 0xee, 0x5d, 0xf7, 0x9e, 0xfe, 0x7e, 0x12, 0xa9, 0x65,
0x92, 0x6e, 0x46, 0xe8, 0xb4, 0xe8, 0x98, 0x41, 0x83, 0x5f, 0xbb, 0xce, 0x42, 0x32, 0x25, 0xcc,
0x10, 0xf1, 0xd4, 0x75, 0x74, 0x34, 0xb0, 0x54, 0x45, 0xa2, 0xa1, 0x81, 0x70, 0xed, 0x1a, 0xe1,
0xce, 0x1d, 0xf7, 0x4d, 0x66, 0x97, 0x82, 0xcb, 0x6e, 0xdf, 0x26, 0xf4, 0xf6, 0x12, 0x4e, 0x9e,
0x14, 0x92, 0x06, 0x86, 0x5a, 0xa4, 0xce, 0xbc, 0x4e, 0x71, 0xd1, 0x99, 0x4b, 0x18, 0xda, 0x4b,
0x28, 0xc9, 0x58, 0x8d, 0x9e, 0x6c, 0x15, 0xf8, 0xb8, 0xce, 0xf0, 0x50, 0xc4, 0xb9, 0x70, 0xe1,
0x2c, 0x4b, 0x5d, 0xbc, 0x38, 0x65, 0x5f, 0x1f, 0x61, 0x78, 0x78, 0xa6, 0xe4, 0xc1, 0x03, 0xc2,
0xad, 0x5b, 0x24, 0xea, 0xc6, 0xd2, 0xc6, 0x25, 0xc5, 0x0c, 0xd5, 0x74, 0x8d, 0xd6, 0x85, 0xa8,
0x8c, 0xf1, 0xa1, 0xca, 0x3c, 0x4e, 0x44, 0xe0, 0xca, 0x91, 0x5d, 0xa6, 0x74, 0x48, 0x07, 0x2d,
0x28, 0xfc, 0x20, 0x07, 0x2d, 0x2d, 0x2d, 0xb3, 0x1a, 0xa3, 0x9d, 0xdd, 0x4c, 0x2b, 0xea, 0xc3,
0x53, 0xc4, 0x63, 0xf0, 0xf4, 0xc9, 0xb7, 0xe3, 0xb7, 0xb1, 0xdb, 0xdd, 0x92, 0x65, 0x75, 0xdd,
0xbf, 0xa9, 0xad, 0x7d, 0x0a, 0x57, 0xaf, 0x12, 0x46, 0x46, 0xdc, 0xb7, 0xe2, 0xf5, 0xe0, 0x37,
0xe1, 0xdd, 0xc7, 0x53, 0xca, 0x1b, 0x85, 0x89, 0x3e, 0x9f, 0x23, 0x4a, 0x5e, 0xab, 0xfc, 0xc1,
0xf2, 0x82, 0xe2, 0x0c, 0x27, 0x43, 0xe7, 0xe5, 0x3a, 0xb0, 0x39, 0x0a, 0x92, 0x31, 0x0e, 0xfb,
0xd2, 0x62, 0x58, 0x0a, 0x6a, 0x66, 0x48, 0x3a, 0x3a, 0xea, 0x79, 0x10, 0xf1, 0xee, 0x0c, 0x0d,
0x11, 0xae, 0x5c, 0x21, 0xd1, 0x24, 0xad, 0xad, 0xee, 0x77, 0x89, 0x4b, 0x79, 0xea, 0xd8, 0x9e,
0xd6, 0x39, 0x22, 0xb9, 0x19, 0xfe, 0xc8, 0x51, 0x09, 0x41, 0xc3, 0xdb, 0x41, 0x73, 0x9a, 0x41,
0xe6, 0xfc, 0xf9, 0xcf, 0x58, 0xea, 0x08, 0x97, 0x2f, 0x93, 0x68, 0x8c, 0xda, 0x6a, 0x56, 0xf4,
0xa3, 0x3e, 0xf8, 0xfe, 0x2b, 0xb5, 0x38, 0x00, 0x6f, 0x6d, 0x9e, 0x56, 0xf6, 0xdf, 0x39, 0xaf,
0xc8, 0x9a, 0x19, 0x02, 0x67, 0xff, 0x4f, 0x38, 0xf2, 0x4e, 0xf2, 0xbc, 0x22, 0xbb, 0x3d, 0x5b,
0x04, 0xb4, 0xd9, 0xd4, 0x68, 0xfc, 0x44, 0x89, 0xbf, 0x0e, 0x11, 0x8e, 0x6c, 0xdf, 0x24, 0x9e,
0xfb, 0xc6, 0xf2, 0x04, 0x1c, 0xc7, 0x84, 0x44, 0x66, 0x8d, 0x47, 0xd1, 0xe0, 0x1e, 0x25, 0xa4,
0xd7, 0x62, 0xd1, 0x64, 0x5e, 0x3d, 0xaf, 0xe8, 0xf4, 0xe9, 0x4c, 0xf6, 0xc2, 0xbe, 0xc7, 0xe6,
0xbf, 0x16, 0xeb, 0x7c, 0x5f, 0xa3, 0x39, 0x08, 0x85, 0x59, 0xb1, 0xb8, 0xb1, 0x47, 0x21, 0xc6,
0x87, 0x33, 0x15, 0x3d, 0x4c, 0x52, 0xc3, 0x48, 0x9d, 0x21, 0x7a, 0x31, 0x5c, 0x69, 0x35, 0xe8,
0x14, 0x75, 0x9c, 0x97, 0x22, 0xbc, 0xc6, 0x2d, 0xa9, 0xcf, 0x23, 0x2f, 0x2b, 0x09, 0x7b, 0x5f,
0x4d, 0x60, 0x69, 0xaa, 0xf7, 0xd8, 0x10, 0x7c, 0x9e, 0xaf, 0xf3, 0x7d, 0x3b, 0x5e, 0x8e, 0xc6,
0xc6, 0x67, 0xbc, 0x46, 0xe5, 0x18, 0xc9, 0x11, 0xca, 0x2f, 0xfe, 0xf9, 0x7c, 0xa8, 0x1e, 0xab,
0xeb, 0x66, 0x53, 0x54, 0x54, 0x04, 0x3f, 0x3f, 0xbf, 0x5f, 0x16, 0xfc, 0x1e, 0xad, 0x0f, 0x56,
0xe6, 0x25, 0x84, 0x29, 0x4b, 0x39, 0x3a, 0x8d, 0xf7, 0xd8, 0x1b, 0x9b, 0x13, 0xb1, 0xff, 0xad,
0x74, 0xe4, 0x32, 0xec, 0x76, 0xbb, 0xc7, 0xe0, 0x7c, 0x9e, 0xaf, 0xf3, 0x7d, 0x59, 0x29, 0xf1,
0x88, 0x0e, 0x5a, 0xe1, 0x94, 0x63, 0xc4, 0x85, 0x28, 0x0f, 0x7a, 0x14, 0xc9, 0x35, 0xba, 0xf7,
0x3e, 0xa1, 0x74, 0x6b, 0x30, 0x7e, 0xb3, 0xac, 0x98, 0xb7, 0x46, 0x32, 0x7c, 0x5e, 0xae, 0x51,
0x2f, 0xdb, 0x5f, 0xc6, 0x9e, 0x73, 0x1d, 0x20, 0x31, 0xce, 0x8d, 0x53, 0x38, 0x1e, 0x29, 0x2a,
0x37, 0x04, 0xa1, 0xbf, 0xbb, 0x0d, 0x85, 0xdb, 0x12, 0x97, 0x24, 0x2a, 0x7c, 0x73, 0x83, 0x78,
0xee, 0xdb, 0xad, 0x81, 0x8b, 0x13, 0x5d, 0xcc, 0x5e, 0x85, 0x42, 0xcb, 0x16, 0x7c, 0xf9, 0xba,
0x76, 0x49, 0x22, 0xab, 0xe9, 0x39, 0x7c, 0xbc, 0x7b, 0x0b, 0xba, 0xb7, 0xaf, 0x7c, 0xb4, 0x68,
0xc3, 0xd3, 0xaa, 0xe6, 0xbc, 0x04, 0xc5, 0xcf, 0x9c, 0x9d, 0xb1, 0xaa, 0x89, 0x82, 0xd4, 0x50,
0x7c, 0x9a, 0xa1, 0x45, 0xce, 0xc6, 0xb5, 0xa8, 0xaa, 0xaa, 0xf2, 0x28, 0xe2, 0xf3, 0x7c, 0x9d,
0xef, 0x3b, 0xa4, 0x0f, 0xc6, 0xbb, 0xb1, 0x2a, 0x97, 0x1c, 0x63, 0x53, 0x84, 0xaa, 0x69, 0xd9,
0x5f, 0xd8, 0xff, 0xa4, 0xeb, 0xfe, 0x37, 0x91, 0xd9, 0x6c, 0x86, 0x24, 0x49, 0x8b, 0xc6, 0x68,
0x34, 0x2e, 0x5d, 0xa4, 0x56, 0xab, 0x3f, 0xf2, 0xf7, 0xf7, 0x77, 0x2c, 0x15, 0x76, 0xc0, 0xfd,
0x0b, 0x89, 0xfe, 0x06, 0x96, 0xd4, 0xa6, 0x96, 0xc0, 0xb7, 0x34, 0x80, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE new_module_xpm[1] = {{ png, sizeof( png ), "new_module_xpm" }};
//EOF

View File

@ -8,72 +8,72 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x03, 0xfb, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x96, 0x6d, 0x48, 0x5b,
0x57, 0x18, 0xc7, 0x83, 0x74, 0x5b, 0x8b, 0x65, 0x2b, 0xa3, 0x94, 0x31, 0xb6, 0x7d, 0x98, 0x1f,
0xca, 0x86, 0x1f, 0xd4, 0x41, 0xb5, 0xbe, 0xe5, 0xa5, 0xa2, 0xb0, 0x11, 0xcd, 0x5c, 0x92, 0x76,
0x53, 0x87, 0x0c, 0xec, 0x07, 0xd9, 0xc4, 0x8f, 0x96, 0xc1, 0x10, 0xa6, 0xa2, 0x1f, 0x74, 0xab,
0x30, 0x47, 0x11, 0xa6, 0xa5, 0x49, 0x37, 0x35, 0xeb, 0x8c, 0xb6, 0xdd, 0x84, 0xb5, 0x79, 0x29,
0x8a, 0xd1, 0xf8, 0x52, 0x2b, 0xb3, 0xe2, 0x2a, 0x0b, 0xc9, 0x5c, 0xde, 0x6e, 0xee, 0xcd, 0x7b,
0xd2, 0xc4, 0xfc, 0x77, 0xee, 0xad, 0x89, 0x66, 0xde, 0xb9, 0xb4, 0xc8, 0x02, 0x3f, 0x02, 0x27,
0xb9, 0xff, 0xdf, 0x7d, 0xce, 0x3d, 0xe7, 0x39, 0x57, 0xc0, 0xf8, 0x3c, 0x13, 0x6e, 0x86, 0xba,
0x9d, 0xc4, 0xe3, 0xf5, 0x8c, 0x85, 0x83, 0xcc, 0xe5, 0xed, 0x88, 0xf7, 0x12, 0xe1, 0x34, 0x00,
0xc1, 0x61, 0x20, 0xb0, 0xb8, 0x5c, 0xc1, 0x8b, 0x13, 0x2b, 0x48, 0xf2, 0xd9, 0xad, 0x07, 0x68,
0xbf, 0xbb, 0x86, 0xef, 0xcc, 0x8f, 0xa2, 0x81, 0x00, 0xed, 0x25, 0xb2, 0xd2, 0x43, 0x11, 0x2d,
0x5b, 0xed, 0xf4, 0xa9, 0x5e, 0x03, 0xf8, 0x50, 0x8c, 0x2e, 0xc2, 0xe7, 0xa3, 0x60, 0x30, 0xde,
0x89, 0xfc, 0xfc, 0xcb, 0xcd, 0xf0, 0x5e, 0x0c, 0x06, 0x43, 0x4c, 0x6f, 0xd0, 0xdb, 0xf4, 0x7a,
0xfd, 0xa5, 0x99, 0x99, 0x99, 0x63, 0x19, 0x8b, 0x6c, 0x6e, 0x77, 0x94, 0xdc, 0x3d, 0xa2, 0x21,
0x26, 0xe6, 0xa4, 0xa9, 0xe0, 0x27, 0xe3, 0xf7, 0x39, 0xd9, 0xe0, 0xdc, 0xef, 0x08, 0xf8, 0xbd,
0x44, 0xe8, 0x4b, 0x63, 0x72, 0x72, 0x12, 0x0e, 0x87, 0x03, 0x26, 0x93, 0x69, 0x9b, 0xc8, 0x68,
0x22, 0x96, 0x64, 0x24, 0x72, 0xd0, 0x94, 0x9f, 0x88, 0xde, 0x26, 0xbc, 0x48, 0xa8, 0x08, 0x06,
0x3c, 0x38, 0xfd, 0xcd, 0x34, 0xea, 0x7e, 0x5c, 0x02, 0xe5, 0xa5, 0x11, 0x08, 0x04, 0xd2, 0x50,
0xab, 0x55, 0x48, 0x24, 0x12, 0xf0, 0xfb, 0xfd, 0x58, 0x5c, 0x5c, 0x04, 0x91, 0x85, 0x75, 0x3a,
0x9d, 0x28, 0x53, 0xd1, 0x5b, 0xec, 0x60, 0x45, 0xc5, 0x3b, 0x2f, 0x59, 0x6c, 0x96, 0xc4, 0xc7,
0x3f, 0x2d, 0xa3, 0x4a, 0x35, 0x0f, 0x9a, 0x47, 0x74, 0xe5, 0xca, 0xb7, 0xa0, 0x69, 0x1a, 0x0c,
0xc3, 0xc0, 0x66, 0xb3, 0xc1, 0x68, 0x34, 0x62, 0x6a, 0x6a, 0xea, 0x2f, 0x91, 0x48, 0x74, 0x22,
0x63, 0x91, 0x48, 0x52, 0x6e, 0x77, 0x53, 0x76, 0xbc, 0xab, 0x36, 0xa3, 0xe1, 0xc6, 0x32, 0x3c,
0x3c, 0xa2, 0x89, 0x09, 0x2d, 0xae, 0x5d, 0xbb, 0x8a, 0xeb, 0xd7, 0x55, 0xd0, 0x68, 0xc6, 0xa0,
0xd5, 0x8e, 0x93, 0xb1, 0x71, 0x88, 0xc4, 0xe5, 0x2e, 0x81, 0x40, 0x90, 0x75, 0x90, 0x28, 0x10,
0x0c, 0xd0, 0x3f, 0x50, 0x8c, 0xe7, 0xc6, 0xfa, 0xc6, 0x43, 0xcc, 0x3c, 0xb2, 0xe1, 0xd5, 0xaf,
0x8c, 0xf8, 0x52, 0xf7, 0x10, 0xc1, 0x80, 0x77, 0x9f, 0x88, 0x8f, 0x9b, 0xb7, 0xb4, 0x10, 0x4b,
0x84, 0x11, 0x52, 0xd5, 0xd1, 0x7f, 0x15, 0xb5, 0xdc, 0x7e, 0x80, 0xcf, 0x7f, 0xfd, 0x0d, 0x9f,
0x92, 0xe5, 0x2d, 0xfd, 0xde, 0x8c, 0x37, 0x2e, 0xdf, 0xc3, 0x9b, 0xfd, 0xf7, 0x40, 0x16, 0x06,
0x42, 0x41, 0xff, 0xe1, 0x89, 0xf6, 0xf2, 0xda, 0xd7, 0x46, 0x08, 0x87, 0x4d, 0x30, 0xfd, 0xb1,
0x05, 0x9f, 0x9f, 0xc9, 0x48, 0x92, 0xb1, 0x68, 0xc5, 0x66, 0x0f, 0x93, 0x2e, 0x11, 0x22, 0xd3,
0x17, 0x89, 0x06, 0x69, 0xf2, 0xa0, 0x5d, 0x64, 0xca, 0x7c, 0x19, 0x4b, 0x32, 0x16, 0xd9, 0x29,
0x57, 0x54, 0xaf, 0xbb, 0x13, 0xd1, 0x6a, 0xb5, 0xb1, 0x91, 0x91, 0x11, 0x5c, 0xf8, 0x48, 0x89,
0xf3, 0x1f, 0x2a, 0x52, 0x28, 0x59, 0x2e, 0x24, 0x91, 0xa7, 0x50, 0x24, 0x39, 0x2f, 0xe7, 0x7e,
0x53, 0xab, 0xd5, 0x18, 0x1d, 0x1d, 0x8d, 0x11, 0x42, 0x1a, 0x8d, 0xe6, 0x8b, 0x7d, 0xa2, 0x2d,
0x97, 0x13, 0x0c, 0xed, 0x41, 0x38, 0x1c, 0x46, 0x28, 0x14, 0x42, 0xad, 0xa2, 0x16, 0xad, 0xad,
0xad, 0x68, 0x69, 0x69, 0x41, 0x73, 0x73, 0x33, 0x9a, 0x9a, 0x9a, 0xd0, 0xd8, 0xd8, 0x88, 0x86,
0x86, 0x06, 0xd4, 0xd7, 0xd7, 0xf3, 0x52, 0xab, 0xf8, 0x00, 0x6e, 0xb7, 0x9b, 0xdb, 0xd0, 0x4e,
0xa7, 0x13, 0x2a, 0x95, 0xea, 0x31, 0xd9, 0x5b, 0x47, 0xfe, 0x21, 0x72, 0x60, 0x3b, 0x1e, 0x4b,
0x4d, 0xc3, 0x7b, 0xd5, 0x52, 0xb4, 0xb5, 0xb5, 0x71, 0xe1, 0x75, 0x75, 0x75, 0x50, 0x2a, 0x95,
0x90, 0xc9, 0x64, 0xa8, 0xae, 0xae, 0xe6, 0x45, 0x2a, 0x95, 0x72, 0xd7, 0xd8, 0xed, 0x76, 0x50,
0x14, 0xc5, 0x31, 0x3c, 0x3c, 0x1c, 0x1f, 0x1a, 0x1a, 0x3a, 0x9a, 0x26, 0xfa, 0x93, 0x88, 0xa2,
0x91, 0x30, 0xb6, 0xb6, 0xb6, 0x38, 0xce, 0x55, 0x55, 0x42, 0x2e, 0x97, 0x83, 0xcc, 0xf7, 0x3e,
0x84, 0x42, 0x21, 0x2f, 0x15, 0x55, 0x55, 0xb0, 0x58, 0x2c, 0xa9, 0x8c, 0xc1, 0xc1, 0x41, 0x7e,
0x91, 0xdf, 0xe7, 0xc5, 0xe6, 0xe6, 0x26, 0x47, 0xa9, 0x58, 0x8c, 0x82, 0x82, 0x02, 0xe4, 0xe7,
0xe7, 0x67, 0x44, 0x5e, 0x5e, 0x1e, 0xca, 0xc4, 0x12, 0xac, 0xaf, 0xaf, 0xa7, 0x32, 0x06, 0x06,
0x06, 0x76, 0x45, 0x6c, 0x23, 0x4d, 0xe2, 0x72, 0x3a, 0xb0, 0xb6, 0xb6, 0xc6, 0x51, 0x50, 0x78,
0x16, 0x45, 0x65, 0xc2, 0x3d, 0x94, 0xef, 0x52, 0x5a, 0x8e, 0x42, 0x1e, 0xf2, 0xce, 0x14, 0xe2,
0xfe, 0xca, 0x4a, 0x2a, 0xa3, 0xbf, 0xbf, 0x7f, 0x57, 0x94, 0x5c, 0x15, 0x7d, 0x7d, 0x7d, 0xd8,
0xd8, 0xd8, 0xc0, 0xd2, 0xd2, 0x12, 0xc7, 0xf4, 0xf4, 0xf4, 0x33, 0xc1, 0x5e, 0x7b, 0xd5, 0xda,
0xce, 0x7d, 0xf7, 0xf6, 0xf6, 0xc6, 0xdb, 0xdb, 0xdb, 0xd3, 0x45, 0x3d, 0x3d, 0x3d, 0x5c, 0x17,
0x5e, 0x58, 0x58, 0x80, 0xd9, 0x6c, 0xc6, 0xfc, 0xfc, 0x3c, 0xe6, 0xe6, 0xe6, 0x30, 0x3b, 0x3b,
0xfb, 0xcc, 0x74, 0x77, 0x77, 0xef, 0x17, 0x75, 0x75, 0x75, 0x79, 0x3a, 0x3b, 0x3b, 0x13, 0x3c,
0x20, 0x49, 0x47, 0x47, 0xc7, 0x41, 0x24, 0x78, 0xf0, 0x12, 0xd1, 0x91, 0x94, 0x88, 0x7c, 0x9e,
0xcb, 0xc9, 0xc9, 0x79, 0x5d, 0x24, 0x16, 0x46, 0x6a, 0x6a, 0x6a, 0x20, 0x7b, 0x5f, 0x86, 0xd5,
0xd5, 0x55, 0x54, 0x56, 0x56, 0x3e, 0x15, 0xec, 0x74, 0xc9, 0x15, 0x72, 0xb2, 0x0d, 0x6a, 0xd8,
0x2e, 0x1e, 0xcf, 0xcd, 0xcd, 0xcd, 0x21, 0xd9, 0xcf, 0xef, 0x15, 0x65, 0x11, 0x5e, 0x2e, 0x2a,
0x3e, 0xa3, 0x2a, 0x2d, 0x2b, 0x8e, 0x96, 0x95, 0x97, 0xc4, 0xac, 0x56, 0x2b, 0xf7, 0xcc, 0x9e,
0x06, 0xf6, 0x5c, 0x92, 0x48, 0x44, 0x51, 0x92, 0xf1, 0xf8, 0x6c, 0x71, 0xe1, 0x18, 0x9b, 0x99,
0x3c, 0x32, 0xd2, 0xfb, 0x11, 0xa9, 0x2c, 0x3b, 0x3b, 0xfb, 0x95, 0x92, 0x92, 0x22, 0x1d, 0xa9,
0x2e, 0x2e, 0x96, 0x88, 0xb6, 0x25, 0xe7, 0x9e, 0x40, 0x7a, 0x58, 0xe2, 0x00, 0xd8, 0x1e, 0xc7,
0x56, 0x81, 0x92, 0xd2, 0xe2, 0x65, 0x36, 0x83, 0xcd, 0x4a, 0xcb, 0x3e, 0xf0, 0x9c, 0x7f, 0x52,
0xe9, 0x0b, 0x84, 0xe3, 0x84, 0x13, 0x84, 0x93, 0x84, 0x53, 0x3b, 0x9c, 0xdc, 0x19, 0x3b, 0xbe,
0xf3, 0x9f, 0xac, 0x03, 0xb3, 0x0e, 0xeb, 0xbd, 0xed, 0x3f, 0xdf, 0x82, 0xfe, 0x2f, 0xd1, 0xdf,
0x06, 0x37, 0x5b, 0xcb, 0x9e, 0x48, 0x90, 0x48, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x04, 0x05, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x96, 0x6b, 0x48, 0x5b,
0x67, 0x18, 0xc7, 0x83, 0x74, 0x5b, 0x87, 0xfd, 0x50, 0x46, 0x19, 0x85, 0x51, 0x18, 0xb8, 0x6f,
0x73, 0x43, 0x65, 0xab, 0xd6, 0x5b, 0x2e, 0x1d, 0xb1, 0xb0, 0x19, 0x53, 0x4d, 0x74, 0x45, 0xed,
0x1c, 0xad, 0x1f, 0x74, 0xc3, 0xf9, 0x65, 0xc3, 0x96, 0xb1, 0x39, 0x50, 0x91, 0x82, 0xfd, 0x20,
0xcc, 0xd1, 0x39, 0x50, 0xd7, 0x18, 0x46, 0x6a, 0x47, 0xad, 0x15, 0x97, 0x16, 0x96, 0x18, 0x50,
0xd4, 0x78, 0x49, 0x9d, 0xd4, 0x89, 0xe0, 0x16, 0xcd, 0xa2, 0xb9, 0x9f, 0x5c, 0x4f, 0x62, 0x2e,
0xff, 0xbd, 0xe7, 0x68, 0xa2, 0xd6, 0x33, 0x9b, 0x96, 0xb0, 0xc0, 0x8f, 0xc0, 0x9b, 0x9c, 0xff,
0x8f, 0xe7, 0xe1, 0x7d, 0x9f, 0xf7, 0xf0, 0xa2, 0x41, 0x77, 0xe7, 0x53, 0x7c, 0x4b, 0x68, 0x20,
0x54, 0x10, 0xde, 0x00, 0xc0, 0x4b, 0x05, 0x3c, 0xb3, 0xd9, 0x18, 0xea, 0xfe, 0x59, 0x89, 0x38,
0x3f, 0xa9, 0xee, 0x46, 0x46, 0x7f, 0xd7, 0xf8, 0x17, 0xfe, 0x78, 0xec, 0xa1, 0xbd, 0x8e, 0x00,
0x91, 0x49, 0x52, 0x22, 0xd2, 0x1b, 0xe6, 0xdd, 0xa7, 0xf9, 0x17, 0xc1, 0x85, 0xbc, 0xf9, 0x6b,
0xf8, 0x28, 0x2b, 0x34, 0xda, 0x47, 0xc1, 0xb1, 0xdf, 0x1e, 0xd0, 0xfb, 0x19, 0x1f, 0x1f, 0x0f,
0x6b, 0xc7, 0xb5, 0x26, 0xad, 0x56, 0x7b, 0x6d, 0x72, 0x72, 0xf2, 0xd5, 0xa4, 0x45, 0x77, 0xc7,
0xd4, 0xa1, 0x09, 0xfd, 0x8c, 0xe7, 0xa1, 0x4e, 0xe7, 0x55, 0x8d, 0x8e, 0x85, 0xdf, 0x91, 0x7e,
0xc2, 0xca, 0x7e, 0x55, 0x3f, 0x44, 0xc0, 0x47, 0xc1, 0xe3, 0xf1, 0x1c, 0x60, 0x64, 0x64, 0x04,
0x16, 0x8b, 0x05, 0xd3, 0xd3, 0xd3, 0x51, 0x22, 0x73, 0x11, 0xb1, 0x28, 0x29, 0x91, 0xcd, 0xfa,
0x8f, 0x3f, 0x16, 0x74, 0xdf, 0x20, 0xad, 0xb2, 0x11, 0x62, 0x01, 0x8f, 0x1d, 0x6f, 0x5d, 0xb8,
0x84, 0x9a, 0xaf, 0xbe, 0x03, 0xe5, 0xb4, 0xc0, 0xe7, 0xf3, 0x1d, 0x60, 0x70, 0x50, 0x81, 0x58,
0x2c, 0x06, 0xaf, 0xd7, 0x8b, 0xf9, 0xf9, 0x79, 0x10, 0x19, 0xad, 0xd1, 0x68, 0x04, 0x49, 0x89,
0xa2, 0x41, 0xaa, 0x8f, 0x48, 0x10, 0xa7, 0xb1, 0xf5, 0x06, 0xf8, 0x97, 0x3f, 0x87, 0x97, 0xb2,
0x1d, 0x12, 0xdd, 0xba, 0xf5, 0x03, 0x5c, 0x2e, 0x17, 0x28, 0x8a, 0x82, 0xc9, 0x64, 0x82, 0x4e,
0xa7, 0x83, 0x5a, 0xad, 0xde, 0x14, 0x08, 0x04, 0x27, 0x9f, 0x2d, 0xa2, 0xdd, 0x3f, 0xc6, 0x25,
0x11, 0x9a, 0xc2, 0xb5, 0x9b, 0xdf, 0xa3, 0xa8, 0xf6, 0x33, 0x4e, 0xd1, 0xfd, 0xfb, 0xc3, 0xb8,
0x7d, 0x7b, 0x00, 0x4a, 0xa5, 0x02, 0x43, 0x43, 0x77, 0x30, 0x3c, 0x7c, 0x8f, 0xac, 0xdd, 0x83,
0x40, 0x58, 0x6c, 0xe3, 0xf1, 0x78, 0x69, 0x47, 0xb7, 0x8e, 0xa6, 0x4a, 0xa2, 0x41, 0xcf, 0x62,
0xc8, 0xe7, 0x40, 0xc8, 0xe7, 0x42, 0x41, 0x75, 0x03, 0x3e, 0xbd, 0xde, 0x06, 0x97, 0xe3, 0x70,
0xeb, 0xb8, 0x78, 0x30, 0x3a, 0x0c, 0xa1, 0x88, 0x1f, 0x24, 0x55, 0x1d, 0xff, 0x4f, 0xd1, 0xd6,
0xe6, 0x7a, 0x28, 0xe8, 0x73, 0xd2, 0xa4, 0x92, 0xa8, 0xcd, 0xb2, 0x8e, 0xeb, 0xa4, 0x1a, 0x66,
0xbd, 0x7b, 0x40, 0x09, 0x9f, 0xc7, 0x99, 0x3a, 0x51, 0x76, 0xc5, 0x15, 0xbc, 0x27, 0xbf, 0x8a,
0x37, 0xc5, 0x55, 0x89, 0xed, 0x9d, 0x23, 0xbb, 0x02, 0xbf, 0xdb, 0x8e, 0x80, 0xdf, 0x9b, 0x3a,
0xd1, 0xdb, 0x92, 0xcb, 0x78, 0x57, 0x5a, 0x87, 0xf7, 0x2b, 0xeb, 0xf1, 0x51, 0xc3, 0x97, 0xf8,
0xa2, 0xfd, 0x26, 0xac, 0x16, 0x13, 0xa9, 0xc6, 0x95, 0x94, 0x24, 0x69, 0xd1, 0xa6, 0x79, 0x3d,
0xb2, 0xed, 0x77, 0x92, 0x0a, 0x6c, 0xb0, 0x6c, 0xae, 0xc3, 0x30, 0x3f, 0x8d, 0xae, 0xae, 0x4e,
0x54, 0x5d, 0x92, 0xb3, 0x54, 0x32, 0x7c, 0x1c, 0x47, 0x96, 0x40, 0x1e, 0xa7, 0x4a, 0xc6, 0xfe,
0x36, 0x38, 0x38, 0x08, 0x95, 0x4a, 0x15, 0x26, 0x04, 0x86, 0x86, 0x86, 0xbe, 0x39, 0x24, 0x62,
0xc2, 0x29, 0x97, 0x13, 0x34, 0x4d, 0x23, 0x10, 0x08, 0xa0, 0x5c, 0x5e, 0x8e, 0xe6, 0xe6, 0x66,
0x34, 0x35, 0x35, 0xa1, 0xb1, 0xb1, 0x11, 0xf5, 0xf5, 0xf5, 0xa8, 0xab, 0xab, 0x43, 0x6d, 0x6d,
0x2d, 0x6a, 0x6a, 0x6a, 0x38, 0x29, 0x97, 0x57, 0xc0, 0x6e, 0xb7, 0xb3, 0x07, 0xda, 0x6a, 0xb5,
0x42, 0xa1, 0x50, 0x6c, 0x93, 0xb3, 0x75, 0xec, 0xe9, 0xcd, 0x80, 0x68, 0x24, 0x9c, 0x68, 0xc3,
0x87, 0x92, 0x52, 0xb4, 0xb4, 0xb4, 0xb0, 0xe1, 0xd5, 0xd5, 0xd5, 0xa8, 0xac, 0xac, 0x84, 0x54,
0x2a, 0x85, 0x44, 0x22, 0xe1, 0xa4, 0xb4, 0xb4, 0x94, 0x7d, 0x66, 0x6b, 0x6b, 0x0b, 0x0e, 0x87,
0x83, 0xa5, 0xbf, 0xbf, 0x3f, 0xd2, 0xd7, 0xd7, 0x77, 0xfc, 0x90, 0x28, 0x14, 0xa4, 0x61, 0x36,
0x9b, 0x59, 0xce, 0x97, 0x88, 0x21, 0x93, 0xc9, 0x40, 0xfa, 0x7d, 0x08, 0x3e, 0x9f, 0xcf, 0xc9,
0x07, 0x25, 0x25, 0x30, 0x1a, 0x8d, 0x89, 0x8c, 0xde, 0xde, 0x5e, 0x0e, 0x91, 0x79, 0x1d, 0x5e,
0x8f, 0x1b, 0x6b, 0x6b, 0x6b, 0x2c, 0x85, 0x42, 0x21, 0x72, 0x72, 0x72, 0x90, 0x9d, 0x9d, 0x9d,
0x14, 0x59, 0x59, 0x59, 0x28, 0x12, 0x8a, 0xb0, 0xb2, 0xb2, 0x92, 0xc8, 0xe8, 0xe9, 0xe9, 0xe1,
0x12, 0x19, 0xc9, 0xa1, 0xb5, 0x60, 0x79, 0x79, 0x99, 0x25, 0x27, 0xf7, 0x1c, 0xf2, 0x8a, 0xf8,
0xfb, 0x28, 0xde, 0xa3, 0xb0, 0x18, 0xb9, 0x1c, 0x64, 0x9d, 0xcd, 0xc5, 0xe3, 0xc5, 0xc5, 0x44,
0x46, 0x77, 0x77, 0xf7, 0x9e, 0xc8, 0xef, 0xb1, 0x87, 0x9e, 0xfc, 0xf9, 0xc4, 0x1d, 0x22, 0x3b,
0xce, 0xf8, 0xf7, 0x5f, 0x58, 0x58, 0x58, 0x60, 0x99, 0x98, 0x98, 0x78, 0x21, 0x98, 0x67, 0x07,
0x36, 0x5a, 0xd9, 0xef, 0xae, 0xae, 0xae, 0x48, 0x6b, 0x6b, 0xeb, 0x8e, 0x88, 0xcc, 0xb5, 0x0b,
0x0c, 0xaa, 0x5f, 0x94, 0x30, 0x18, 0x0c, 0x98, 0x9b, 0x9b, 0xc3, 0xec, 0xec, 0x2c, 0xf4, 0x7a,
0x3d, 0x66, 0x66, 0x66, 0x30, 0x35, 0x35, 0xf5, 0xc2, 0x74, 0x76, 0x76, 0xee, 0x89, 0xe2, 0xfb,
0xbc, 0xa3, 0xa3, 0xc3, 0xd9, 0xde, 0xde, 0x1e, 0xe3, 0x00, 0x71, 0xda, 0xda, 0xda, 0x8e, 0x22,
0xc6, 0x81, 0x9b, 0x88, 0x8e, 0x25, 0x44, 0xe4, 0xf3, 0x52, 0x46, 0x46, 0xc6, 0x19, 0x81, 0x90,
0x1f, 0x2c, 0x2b, 0x2b, 0x83, 0xf4, 0xa2, 0x14, 0x4b, 0x4b, 0x4b, 0x10, 0x8b, 0xc5, 0xcf, 0x05,
0xd3, 0x2e, 0x99, 0x5c, 0x46, 0x8e, 0x41, 0x19, 0x33, 0xc5, 0x23, 0x99, 0x99, 0x99, 0x19, 0x24,
0xfb, 0xe5, 0xfd, 0xa2, 0x34, 0xc2, 0x6b, 0x79, 0xf9, 0x67, 0x15, 0x85, 0x45, 0xf9, 0xa1, 0xa2,
0xe2, 0x82, 0xf0, 0xc6, 0xc6, 0x06, 0x56, 0x57, 0x57, 0x9f, 0x0b, 0xe6, 0x5e, 0x12, 0x89, 0x04,
0x21, 0x92, 0xb1, 0x7d, 0x2e, 0x3f, 0xf7, 0x0e, 0x93, 0x19, 0xbf, 0x32, 0x0e, 0xce, 0x23, 0x52,
0x59, 0x7a, 0x7a, 0xfa, 0xe9, 0x82, 0x82, 0x3c, 0x0d, 0xa9, 0x2e, 0x22, 0x14, 0x09, 0xa2, 0xa2,
0xf3, 0x3b, 0x90, 0x19, 0x16, 0x3b, 0x02, 0x66, 0xc6, 0x31, 0x55, 0xa0, 0xa0, 0x30, 0xdf, 0xc0,
0x64, 0x30, 0x59, 0x07, 0xb2, 0x8f, 0xbc, 0xe7, 0x77, 0x2a, 0x7d, 0x85, 0x70, 0x82, 0x70, 0x92,
0x70, 0x8a, 0xf0, 0xfa, 0x2e, 0xa7, 0x76, 0xd7, 0x4e, 0xec, 0xfe, 0x27, 0xed, 0xc8, 0xac, 0x54,
0xbd, 0xb7, 0x3d, 0xf3, 0x2d, 0xe8, 0xff, 0x12, 0xfd, 0x0b, 0x30, 0xe4, 0x44, 0x25, 0xea, 0x06,
0x0c, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE plot_xpm[1] = {{ png, sizeof( png ), "plot_xpm" }};

View File

@ -8,102 +8,99 @@
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
0xce, 0x00, 0x00, 0x05, 0xf1, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0x9d, 0x96, 0x0b, 0x50, 0x53,
0x47, 0x14, 0x86, 0xb7, 0x0d, 0x06, 0x45, 0x2d, 0x2d, 0xb5, 0x2a, 0x25, 0xe2, 0x03, 0xb1, 0x38,
0x02, 0x09, 0xa2, 0x96, 0x8a, 0xa0, 0x9d, 0x8a, 0x22, 0x3a, 0x8a, 0xb5, 0x8a, 0x4a, 0xa8, 0x5a,
0xed, 0x4c, 0xd5, 0xa1, 0xea, 0x08, 0x64, 0x1c, 0x64, 0x44, 0x85, 0xe9, 0x54, 0x11, 0x14, 0x54,
0x1e, 0x3e, 0xa6, 0xc2, 0x40, 0x44, 0x01, 0x45, 0x90, 0x87, 0x80, 0x21, 0x08, 0x44, 0xde, 0x20,
0x02, 0x06, 0x42, 0x0b, 0x08, 0x21, 0x40, 0x82, 0x20, 0xbe, 0x50, 0xe0, 0xef, 0xde, 0x54, 0xac,
0x25, 0x11, 0xb1, 0x3b, 0xf3, 0xcd, 0xdc, 0xbd, 0x7b, 0xee, 0xfd, 0xf7, 0x9c, 0xdd, 0x3d, 0x67,
0x09, 0x00, 0x32, 0x52, 0x4a, 0x4a, 0x4a, 0xf4, 0x32, 0x32, 0x32, 0x3c, 0x93, 0x92, 0x92, 0x84,
0xf1, 0xf1, 0xf1, 0x77, 0xc3, 0xc2, 0xc2, 0x4a, 0xc2, 0xc3, 0xc3, 0x45, 0x01, 0x01, 0x01, 0xcb,
0xdf, 0xf7, 0xed, 0x88, 0x04, 0x2a, 0x2b, 0x2b, 0x8d, 0x8a, 0x8a, 0x8a, 0x2e, 0x95, 0x97, 0x97,
0x37, 0x96, 0x96, 0x96, 0x22, 0x2f, 0x2f, 0x17, 0x42, 0xa1, 0x10, 0x21, 0x21, 0x21, 0x38, 0x7a,
0xf4, 0x28, 0x83, 0x92, 0xf6, 0xd7, 0xff, 0x6f, 0x21, 0xa6, 0xc9, 0x64, 0xb2, 0x23, 0x4d, 0x4d,
0x4d, 0x0a, 0x95, 0x4a, 0x85, 0x8e, 0x8e, 0x0e, 0xd0, 0x3e, 0x24, 0x12, 0x09, 0xa8, 0x57, 0x08,
0x0e, 0x0e, 0x86, 0xbf, 0xbf, 0x3f, 0x04, 0x02, 0x01, 0x12, 0x13, 0x13, 0x4b, 0x19, 0xfb, 0x0f,
0x16, 0x2a, 0x2e, 0x2e, 0x9e, 0xd4, 0xd8, 0xd8, 0x98, 0xa5, 0x52, 0x29, 0x5f, 0xd1, 0x86, 0x17,
0x2f, 0x5e, 0x40, 0xa9, 0x54, 0x42, 0x2a, 0x95, 0x22, 0x3f, 0x3f, 0x1f, 0xc9, 0xc9, 0xc9, 0xa0,
0x61, 0x83, 0x9f, 0x9f, 0x1f, 0xbc, 0xbd, 0xbd, 0x51, 0x58, 0x58, 0xf8, 0x8a, 0x0a, 0x73, 0x3f,
0x48, 0x48, 0x2c, 0x16, 0x7f, 0x2a, 0x97, 0xb7, 0xdc, 0x63, 0xbc, 0x18, 0x14, 0xe9, 0xee, 0xee,
0x46, 0x73, 0x73, 0x33, 0xaa, 0xaa, 0xaa, 0x68, 0xe8, 0xf2, 0x18, 0x0f, 0x70, 0xf1, 0xe2, 0x45,
0x1c, 0x3e, 0x7c, 0x18, 0xb1, 0xb1, 0xb1, 0xa0, 0x93, 0x42, 0x45, 0x45, 0xc5, 0x35, 0xea, 0xd4,
0x47, 0x23, 0x12, 0x4a, 0x4d, 0x4d, 0xd5, 0x95, 0xd6, 0x4a, 0x8b, 0x6b, 0x6a, 0x6a, 0xd4, 0xa1,
0xea, 0xec, 0xec, 0x04, 0x23, 0xd8, 0xd2, 0xd2, 0x82, 0xba, 0xba, 0x3a, 0x94, 0x95, 0x95, 0x41,
0x24, 0x12, 0x81, 0x6e, 0x06, 0x5c, 0xb8, 0x70, 0x01, 0xa1, 0xa1, 0xa1, 0x60, 0x6c, 0xe5, 0x72,
0x39, 0x68, 0x88, 0x07, 0x62, 0x62, 0x62, 0x96, 0x8e, 0x48, 0x88, 0x2e, 0xf6, 0x89, 0xa4, 0x84,
0x78, 0x88, 0xe8, 0x4f, 0xb2, 0x03, 0x03, 0x91, 0xe2, 0xe5, 0x85, 0xf8, 0x5d, 0xbb, 0x90, 0xe8,
0xe3, 0x83, 0x9b, 0x41, 0x41, 0x48, 0x8d, 0x8c, 0x44, 0x7a, 0x7a, 0xba, 0xda, 0x8b, 0xa8, 0xa8,
0x28, 0xd4, 0xd7, 0xd7, 0x43, 0xa1, 0x50, 0xa0, 0xbd, 0xbd, 0x1d, 0xad, 0x8d, 0x05, 0xa8, 0x2f,
0x89, 0xb8, 0x47, 0xbd, 0x62, 0x0d, 0x2b, 0xc4, 0xb8, 0x9d, 0x2e, 0xf0, 0x6a, 0x8b, 0xd7, 0xd3,
0x43, 0x14, 0x1d, 0x0a, 0xa5, 0x1c, 0xa7, 0xf8, 0x52, 0x3c, 0x28, 0x3b, 0x29, 0x6e, 0x94, 0x2d,
0xe3, 0xc7, 0x23, 0xc8, 0xd5, 0x15, 0x0d, 0x0d, 0x0d, 0x6f, 0xbc, 0x66, 0xd6, 0xef, 0xb1, 0xec,
0x2c, 0xda, 0x44, 0xb6, 0x74, 0x22, 0x29, 0xfc, 0xf7, 0x09, 0xe9, 0x44, 0x72, 0x38, 0xaf, 0x52,
0xe9, 0xeb, 0x04, 0x4a, 0xa4, 0x36, 0xb1, 0x51, 0xa3, 0x70, 0xd2, 0xd9, 0x19, 0xed, 0xad, 0xad,
0x78, 0xf2, 0xe4, 0x09, 0x7a, 0x7a, 0x7a, 0xd0, 0xd5, 0xd5, 0x85, 0xc7, 0xca, 0x1a, 0xf4, 0x75,
0x8a, 0xd1, 0x53, 0xe6, 0x8a, 0x07, 0x39, 0x7e, 0xad, 0x16, 0x16, 0x16, 0x63, 0x87, 0x13, 0x22,
0xa1, 0x93, 0x27, 0xab, 0x85, 0x86, 0x8a, 0x9d, 0xa4, 0x5e, 0x84, 0x7f, 0xbf, 0x16, 0xf5, 0x5e,
0xbb, 0x50, 0x73, 0xe9, 0x9c, 0x7a, 0x83, 0xf4, 0xf7, 0xf7, 0xe3, 0xf9, 0xf3, 0xe7, 0xe8, 0x51,
0xc9, 0xd0, 0xdf, 0x25, 0x01, 0xfa, 0x1e, 0xa3, 0xb5, 0x20, 0x08, 0xcd, 0x9e, 0x9b, 0x90, 0xe5,
0xb3, 0x3f, 0x8b, 0x99, 0xf8, 0x3b, 0xd7, 0xe8, 0xb4, 0xa5, 0x65, 0x6a, 0x86, 0xbe, 0x3e, 0x6e,
0xe8, 0xea, 0x22, 0x82, 0xcb, 0x45, 0xfc, 0xf6, 0xed, 0x10, 0x47, 0x44, 0xa0, 0x3c, 0x47, 0x8c,
0x26, 0xaf, 0x9d, 0x78, 0xb4, 0xc1, 0x01, 0x5d, 0xfc, 0x55, 0x90, 0x45, 0x9e, 0xc7, 0xcb, 0x97,
0x2f, 0xf1, 0x5c, 0x55, 0x84, 0x67, 0xb2, 0x63, 0xe8, 0x53, 0x65, 0xa2, 0xbd, 0xe6, 0x0e, 0x5a,
0xf6, 0x6d, 0x55, 0xdb, 0x3c, 0x72, 0x5b, 0x85, 0xf4, 0x2d, 0xeb, 0x4e, 0x0d, 0x8a, 0x69, 0x08,
0xed, 0x21, 0xc4, 0x25, 0x67, 0xd6, 0x2c, 0xa4, 0x1d, 0x3f, 0xae, 0x9e, 0x75, 0x6f, 0x6f, 0x2f,
0x5a, 0xeb, 0x6a, 0xd1, 0xb4, 0xf7, 0x67, 0x28, 0x9d, 0x97, 0xbc, 0x41, 0xb5, 0x7e, 0x19, 0xaa,
0x8e, 0xf1, 0x71, 0xef, 0xaa, 0x35, 0xba, 0x2b, 0x76, 0xa3, 0x25, 0xff, 0x04, 0x1e, 0xee, 0xde,
0xfc, 0x1f, 0x1b, 0xa5, 0xcb, 0x72, 0x88, 0x36, 0x3b, 0x07, 0x30, 0x62, 0x1a, 0x42, 0x8e, 0x84,
0xcc, 0xbf, 0x36, 0x7d, 0xfa, 0x23, 0x9a, 0x76, 0x9e, 0x31, 0xf1, 0x67, 0x28, 0xf0, 0xde, 0x0f,
0x85, 0x93, 0x2d, 0xda, 0x86, 0xd0, 0xbe, 0x66, 0x09, 0x24, 0x9e, 0x36, 0x78, 0x10, 0xe7, 0x84,
0x86, 0x1d, 0xce, 0x1a, 0xe3, 0x0c, 0x0d, 0xab, 0x97, 0xf4, 0x6e, 0xe7, 0xce, 0x59, 0xa6, 0x21,
0x64, 0x4f, 0x88, 0x55, 0xac, 0x89, 0x49, 0x73, 0x66, 0x66, 0xe6, 0x45, 0x7a, 0x2e, 0xf0, 0xf4,
0xe9, 0x53, 0x48, 0xee, 0xdc, 0x81, 0x78, 0x93, 0x33, 0x5a, 0x96, 0x2e, 0x80, 0x7c, 0x08, 0xad,
0x8e, 0xb6, 0x68, 0xa4, 0xa1, 0x92, 0x6b, 0x19, 0x93, 0x39, 0xcc, 0x43, 0x20, 0xdf, 0xa9, 0x9e,
0x7a, 0x34, 0x59, 0x43, 0xe8, 0x1b, 0x42, 0x2c, 0x12, 0xe6, 0xcc, 0x91, 0xbb, 0xbb, 0xbb, 0x1b,
0xd3, 0x24, 0xda, 0xc9, 0x6c, 0x5f, 0x66, 0x2d, 0x8a, 0x0a, 0x0a, 0x20, 0xda, 0xe8, 0x8c, 0x87,
0xf6, 0x73, 0xd1, 0x3c, 0x02, 0xea, 0x96, 0x58, 0x23, 0x7a, 0x9f, 0x2d, 0xf2, 0x63, 0xec, 0x07,
0x4e, 0x9f, 0x3e, 0x6d, 0xa7, 0x21, 0x34, 0x97, 0x90, 0xd9, 0x09, 0x5c, 0x6e, 0x1b, 0xb3, 0x03,
0x69, 0x9a, 0xf9, 0xbd, 0xb6, 0xb6, 0x56, 0x1d, 0xbe, 0x41, 0xb1, 0x5b, 0x1b, 0xd6, 0xa0, 0xc1,
0xc6, 0x02, 0x8d, 0xc3, 0x50, 0x6d, 0xcb, 0xc5, 0x15, 0x9f, 0x8d, 0x90, 0x8a, 0xdc, 0xf1, 0x57,
0xda, 0x42, 0xc4, 0x0a, 0xff, 0x88, 0xd3, 0x10, 0x32, 0x27, 0xc4, 0x24, 0x8e, 0xcb, 0x55, 0x31,
0xcf, 0x0e, 0x0e, 0x0e, 0xfa, 0x34, 0x53, 0x3f, 0xa4, 0x4d, 0x2d, 0xc4, 0xe4, 0xbd, 0x92, 0xe2,
0x62, 0xdc, 0x5e, 0xbb, 0x12, 0x7f, 0xce, 0x35, 0xd3, 0x4a, 0xad, 0xf5, 0x6c, 0x08, 0x0f, 0x38,
0x41, 0x96, 0x77, 0x18, 0xed, 0xe5, 0x3e, 0xb8, 0x2f, 0x3a, 0x08, 0x9a, 0x96, 0x72, 0xb5, 0x09,
0x4d, 0xb9, 0x6c, 0x6e, 0xfe, 0x68, 0xb0, 0x4f, 0xeb, 0xcc, 0x7e, 0x1a, 0x42, 0x75, 0x06, 0x18,
0x18, 0x18, 0x40, 0xd3, 0x5d, 0x09, 0xa4, 0x4b, 0x17, 0x41, 0x66, 0x6e, 0xa2, 0x1d, 0x4b, 0x53,
0x14, 0xef, 0x76, 0x44, 0x63, 0xbe, 0x07, 0xe4, 0x25, 0xbe, 0xc8, 0x48, 0x4f, 0xc2, 0xd9, 0xb3,
0x67, 0xcf, 0x68, 0x08, 0x4d, 0x22, 0x64, 0x62, 0xf4, 0xcc, 0x99, 0x5d, 0x6f, 0x1d, 0x62, 0x36,
0xad, 0xaa, 0x55, 0x4c, 0xd6, 0xae, 0x4e, 0x4b, 0x45, 0xf5, 0x62, 0x1b, 0x48, 0x4d, 0x8d, 0x87,
0xc7, 0x6c, 0x3a, 0x0a, 0x77, 0x2c, 0x87, 0x38, 0x2b, 0x09, 0x71, 0x71, 0x71, 0xdd, 0xae, 0xae,
0xae, 0x26, 0xda, 0x8a, 0xdd, 0xb8, 0x30, 0x23, 0x23, 0xc5, 0xdb, 0xef, 0x68, 0x25, 0x75, 0x4b,
0x0e, 0x09, 0xc6, 0xbd, 0xf9, 0x3c, 0x54, 0x4f, 0x35, 0x1c, 0x19, 0x33, 0x38, 0xb8, 0xcd, 0xdf,
0xd8, 0xef, 0x7d, 0xe0, 0xc0, 0xaf, 0xe4, 0x5d, 0x15, 0x71, 0x35, 0x9b, 0x6d, 0xf9, 0x96, 0xf0,
0xc7, 0x61, 0x3c, 0xcb, 0x4d, 0x65, 0xe6, 0x66, 0xfd, 0x95, 0x86, 0x13, 0x30, 0x94, 0x5c, 0x13,
0x0e, 0x12, 0x16, 0x4e, 0x40, 0x85, 0x96, 0xb1, 0xfb, 0x9c, 0x49, 0x10, 0x7d, 0x6d, 0x2d, 0x5e,
0x60, 0x60, 0xf0, 0xc9, 0x7b, 0xef, 0x0b, 0xb4, 0x7d, 0x72, 0x62, 0xe2, 0x84, 0xcb, 0x65, 0x9f,
0xeb, 0xa3, 0x62, 0x08, 0x39, 0xd3, 0x38, 0x88, 0x0e, 0x08, 0x40, 0x6e, 0xf4, 0x52, 0x08, 0x17,
0x4f, 0x81, 0x36, 0x9b, 0x4c, 0x03, 0xfd, 0x8e, 0x35, 0x86, 0x5f, 0xfc, 0x7b, 0x60, 0xbf, 0x1d,
0x3d, 0x7a, 0x9a, 0x8f, 0xa9, 0xa9, 0x57, 0xb8, 0x83, 0xc3, 0xa9, 0x2b, 0x6e, 0x6e, 0xb1, 0x69,
0x02, 0xc1, 0xcd, 0xeb, 0x7b, 0xf6, 0x44, 0x9d, 0x59, 0xb9, 0xf2, 0x37, 0x3b, 0x0e, 0x67, 0xbd,
0xef, 0x18, 0x76, 0x42, 0xf1, 0x78, 0x3d, 0x94, 0xbe, 0x26, 0xcb, 0x70, 0x12, 0xce, 0xf9, 0xfb,
0x81, 0x5e, 0x5a, 0x50, 0x59, 0x26, 0xa6, 0x6b, 0x71, 0x15, 0x61, 0x76, 0x8b, 0xfa, 0xde, 0xb6,
0x49, 0x1d, 0x37, 0xa6, 0x6d, 0x1e, 0x8b, 0xc5, 0x67, 0x96, 0x83, 0xfc, 0x42, 0x88, 0x6d, 0x20,
0x21, 0x29, 0xb9, 0xeb, 0xd6, 0x3d, 0x96, 0xd1, 0xb2, 0x5c, 0x7f, 0xe4, 0x08, 0x64, 0xbe, 0xbe,
0xa8, 0xa3, 0x85, 0xae, 0xee, 0xe0, 0x41, 0x48, 0x3d, 0x3c, 0x70, 0x8b, 0xc7, 0xeb, 0xf1, 0x24,
0x44, 0x22, 0xd0, 0x1b, 0x93, 0x77, 0x57, 0x97, 0x8d, 0x9b, 0x06, 0x9f, 0xc1, 0x6f, 0xef, 0x5e,
0xd0, 0x6a, 0x8c, 0xec, 0xec, 0x6c, 0xe6, 0xa2, 0xa2, 0x38, 0x7f, 0x3e, 0x22, 0x9a, 0x96, 0x06,
0x97, 0xa3, 0x3a, 0x3a, 0x37, 0x0a, 0xa8, 0x4d, 0x92, 0x2e, 0x5b, 0x61, 0xc5, 0x22, 0x2e, 0x8c,
0x88, 0x3a, 0x32, 0x41, 0x84, 0x24, 0xa7, 0xd3, 0xa5, 0x1a, 0x24, 0xc7, 0xd8, 0x18, 0x77, 0x6d,
0x6c, 0x50, 0x68, 0x6f, 0x0f, 0x89, 0xb5, 0x35, 0xb2, 0x8d, 0x8c, 0x90, 0xf6, 0x4f, 0xa9, 0x90,
0xd9, 0x11, 0x72, 0xe8, 0x47, 0x16, 0x2b, 0xed, 0x3b, 0x33, 0xb3, 0x14, 0x3e, 0x9f, 0x1f, 0xbd,
0x6d, 0xfb, 0xb6, 0x08, 0x1e, 0x8f, 0xe7, 0xc1, 0x66, 0xb3, 0x99, 0x1f, 0x3a, 0xbd, 0x66, 0xeb,
0x4f, 0x84, 0xa4, 0x4d, 0x25, 0x44, 0x40, 0x9f, 0xad, 0x28, 0x5f, 0x52, 0xc6, 0x92, 0x43, 0x84,
0x4c, 0xf3, 0x27, 0xc4, 0xf3, 0xa4, 0x8e, 0x8e, 0x30, 0x72, 0xe6, 0xcc, 0x72, 0xa1, 0x9d, 0x5d,
0xe5, 0xe5, 0x15, 0x2b, 0xee, 0x47, 0x39, 0x3a, 0x16, 0x06, 0x59, 0x59, 0x5d, 0xf7, 0x34, 0x34,
0x0c, 0xfc, 0x81, 0xc5, 0xda, 0x31, 0x9a, 0x90, 0xaf, 0xe8, 0x07, 0xa6, 0x14, 0x5b, 0xca, 0x3c,
0x0a, 0x3d, 0x72, 0xc4, 0x82, 0x62, 0xf9, 0x1a, 0xa6, 0xcf, 0xd8, 0xcc, 0xa0, 0xf0, 0x28, 0x1c,
0xb5, 0xc0, 0xeb, 0xb2, 0xfe, 0x37, 0xab, 0x8b, 0x74, 0x3b, 0xdf, 0xc1, 0x6d, 0xc4, 0x00, 0x00,
0xce, 0x00, 0x00, 0x05, 0xc1, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xe5, 0x56, 0x7d, 0x34, 0x94,
0x59, 0x18, 0xbf, 0x49, 0x28, 0x1f, 0x51, 0xf2, 0x11, 0xa2, 0x95, 0x28, 0x99, 0xa4, 0x4f, 0x59,
0xa2, 0x28, 0xa7, 0x56, 0x6d, 0x5a, 0xac, 0xe4, 0x23, 0xec, 0x66, 0x4b, 0x6d, 0x8e, 0xce, 0x96,
0xd0, 0xce, 0xda, 0xea, 0xd8, 0x33, 0xd5, 0x98, 0x36, 0xd4, 0xe2, 0x11, 0x19, 0xb1, 0xf6, 0x58,
0x73, 0xb6, 0x91, 0x88, 0x5a, 0xad, 0x65, 0x7d, 0x34, 0x31, 0x31, 0x32, 0xc3, 0x8c, 0x6f, 0x4d,
0x44, 0xa2, 0x39, 0x76, 0x47, 0x77, 0xef, 0x3b, 0x67, 0x6b, 0xb5, 0x2b, 0xf5, 0xc7, 0x9e, 0xdd,
0x3f, 0xf6, 0x9e, 0xf3, 0x3b, 0xf7, 0xbd, 0xef, 0x79, 0xef, 0xf3, 0xfb, 0x3d, 0x1f, 0xf7, 0xb9,
0x2f, 0xc2, 0x18, 0xa3, 0x7f, 0x03, 0xe8, 0xff, 0x4d, 0xd4, 0xc6, 0xe1, 0xe8, 0xdf, 0xca, 0x4c,
0xdf, 0x9e, 0x92, 0x92, 0xb2, 0x84, 0xac, 0x95, 0xff, 0x51, 0x22, 0xa9, 0x54, 0xaa, 0x51, 0x57,
0x57, 0xb7, 0xa7, 0xb6, 0xb6, 0xf6, 0x74, 0x57, 0x22, 0xa3, 0x7e, 0x24, 0xee, 0x88, 0xfc, 0xc1,
0xe9, 0x18, 0x01, 0xe7, 0xeb, 0x84, 0x94, 0xd4, 0xd4, 0xd4, 0x45, 0xaf, 0xdb, 0xd7, 0x1f, 0x1e,
0x38, 0x4d, 0xfa, 0xc9, 0x1e, 0x8f, 0x87, 0x1f, 0xf9, 0xa6, 0xf4, 0x06, 0x7b, 0x7b, 0x4e, 0x45,
0x32, 0xad, 0xad, 0xad, 0xcd, 0xab, 0xbd, 0xbd, 0x3d, 0x41, 0x2a, 0xed, 0x83, 0xde, 0x1f, 0x4b,
0xb8, 0xcf, 0xe2, 0x22, 0x9f, 0x13, 0xe0, 0xd1, 0xcf, 0x0f, 0xe3, 0xa7, 0x31, 0x07, 0x71, 0xe7,
0xc9, 0xe3, 0x75, 0x7d, 0x47, 0xfc, 0xd5, 0x5f, 0x11, 0xb6, 0xcf, 0x6f, 0x7a, 0x5f, 0xe8, 0x87,
0x7e, 0x3d, 0x41, 0x5e, 0x8d, 0xdd, 0xfe, 0x3b, 0x71, 0xa7, 0xef, 0xf6, 0x9e, 0x0e, 0xef, 0x6d,
0xfb, 0x27, 0x25, 0xa9, 0xaa, 0xaa, 0xd2, 0xea, 0xe9, 0xe9, 0x39, 0x36, 0x3c, 0x32, 0x9c, 0x36,
0x3e, 0x3e, 0x0e, 0x43, 0x43, 0x43, 0x20, 0xe6, 0xd7, 0x67, 0x89, 0x2f, 0x25, 0xd4, 0x0c, 0x44,
0x1f, 0x1a, 0x19, 0x8c, 0xfc, 0x18, 0x3f, 0x3e, 0x1c, 0x82, 0x89, 0x6a, 0xfc, 0x70, 0xbf, 0xbf,
0xe8, 0x61, 0xa8, 0x2f, 0x8d, 0xda, 0xd7, 0x13, 0xb0, 0x6b, 0x55, 0x97, 0xdf, 0xfb, 0x2d, 0x1d,
0x3e, 0x1e, 0xb8, 0xfd, 0x83, 0xad, 0x58, 0xbc, 0x73, 0x4b, 0x66, 0x9b, 0xc7, 0x26, 0x9d, 0x49,
0x43, 0x27, 0x14, 0x0a, 0x55, 0xbb, 0xbb, 0xbb, 0xe9, 0xfd, 0xfd, 0xfd, 0x20, 0x93, 0xc9, 0x60,
0x78, 0x78, 0x18, 0x7a, 0x7b, 0x7b, 0x41, 0x20, 0x10, 0x40, 0x79, 0x79, 0x39, 0xe4, 0xe5, 0x64,
0x5f, 0x2e, 0x39, 0x71, 0xec, 0x76, 0x67, 0x98, 0xff, 0x28, 0x51, 0x8d, 0xbb, 0xfd, 0x3d, 0x29,
0xd5, 0x32, 0xa2, 0xfa, 0x94, 0xc4, 0xd3, 0xfd, 0x59, 0xdb, 0x0e, 0x37, 0xdc, 0xba, 0x6d, 0x63,
0xbf, 0xd0, 0x7d, 0x83, 0xc7, 0x94, 0x39, 0xe2, 0xf3, 0xf9, 0x91, 0xd5, 0xd5, 0xd5, 0x20, 0x6e,
0x6d, 0x05, 0x61, 0x4d, 0x0d, 0x88, 0x9b, 0x9b, 0xa1, 0xa5, 0xa5, 0x05, 0x6a, 0xc8, 0x73, 0x49,
0x49, 0x09, 0xb0, 0xd9, 0x6c, 0xc8, 0xcd, 0xcd, 0x05, 0xd1, 0xdd, 0xda, 0xac, 0xce, 0xe8, 0x48,
0x11, 0x51, 0x8d, 0xdb, 0x3c, 0x5c, 0xb1, 0x68, 0xab, 0x33, 0x16, 0x6e, 0x76, 0xc4, 0x0f, 0x36,
0xad, 0x7f, 0x22, 0xd8, 0xb0, 0xd6, 0x6e, 0xca, 0x62, 0x48, 0x4f, 0x4f, 0x37, 0xe3, 0xfa, 0x78,
0xa5, 0xb2, 0xb5, 0xb5, 0x21, 0x49, 0x49, 0x09, 0xe2, 0x11, 0x82, 0x68, 0x32, 0x47, 0xcd, 0x9d,
0x0b, 0x31, 0x4b, 0x97, 0xc2, 0x17, 0x2e, 0x2e, 0x90, 0xcb, 0x62, 0x41, 0x47, 0x47, 0x07, 0x50,
0x1e, 0x3f, 0x6a, 0x97, 0x64, 0xb6, 0xfa, 0xba, 0xf5, 0x37, 0xbb, 0xd8, 0xe3, 0x26, 0xa7, 0x35,
0xb8, 0x71, 0xbd, 0xdd, 0xf3, 0xfb, 0xeb, 0x96, 0xef, 0x7c, 0x63, 0xd5, 0x9d, 0xd9, 0xb7, 0xcf,
0xb3, 0x90, 0x18, 0xff, 0x81, 0x80, 0x4d, 0x90, 0x44, 0xa0, 0x20, 0x23, 0x88, 0x98, 0x35, 0x0b,
0x2e, 0x05, 0x06, 0xc2, 0xd0, 0xe0, 0x20, 0x8c, 0x8c, 0x8c, 0x28, 0xe6, 0xd6, 0x10, 0xef, 0xf6,
0xfb, 0xf6, 0x2b, 0x30, 0x7f, 0x35, 0x0d, 0xd7, 0xdb, 0x59, 0x63, 0x1e, 0xcd, 0x0a, 0xdf, 0xb5,
0x5e, 0x74, 0xef, 0x27, 0x4b, 0x4b, 0xcd, 0x29, 0x89, 0x82, 0x82, 0x82, 0x0c, 0xd8, 0xc4, 0xe0,
0x4b, 0x32, 0x4d, 0x4d, 0xc8, 0x70, 0x75, 0x85, 0x42, 0x06, 0x03, 0x24, 0x62, 0x31, 0x8c, 0x8d,
0x8d, 0x01, 0xf9, 0x0e, 0xe4, 0x72, 0x39, 0x88, 0xa3, 0x0f, 0xde, 0xbd, 0x67, 0xbb, 0x04, 0xf3,
0x6c, 0x16, 0xe3, 0xba, 0x25, 0xe6, 0xb8, 0x7e, 0x97, 0x7d, 0x7d, 0xd5, 0x62, 0xb3, 0xe7, 0x15,
0x8b, 0x4c, 0xf1, 0x1d, 0xf3, 0x05, 0x45, 0xb7, 0x9c, 0x91, 0xf2, 0x94, 0x39, 0xfa, 0xce, 0xc9,
0x89, 0x95, 0x63, 0x64, 0x04, 0x85, 0x74, 0x3a, 0xb4, 0x90, 0xfc, 0x0c, 0x12, 0xe5, 0x14, 0x01,
0x55, 0x7d, 0x14, 0x09, 0x26, 0xb3, 0x88, 0x75, 0xa0, 0xb8, 0xd6, 0xea, 0x1d, 0xfc, 0x8b, 0xe5,
0x42, 0x5c, 0x69, 0x61, 0x86, 0x1b, 0x83, 0xb6, 0x0b, 0x86, 0xaa, 0x3d, 0xe1, 0x96, 0x87, 0xeb,
0x85, 0x52, 0xd3, 0xf9, 0xb8, 0xd8, 0xc4, 0x10, 0x5f, 0x37, 0xd6, 0x3f, 0x34, 0x25, 0x51, 0x96,
0xad, 0xed, 0x81, 0xfc, 0x88, 0x08, 0x16, 0x15, 0x1e, 0x85, 0xe1, 0x09, 0x18, 0x1f, 0xe1, 0xc3,
0xe3, 0xb2, 0x0d, 0x19, 0x55, 0xcb, 0x4d, 0x9e, 0x12, 0xd5, 0xf8, 0xf6, 0x42, 0x63, 0x5c, 0x4e,
0x5b, 0x3c, 0x2a, 0x93, 0xdc, 0xbc, 0x32, 0xd6, 0x7a, 0x12, 0xda, 0xcb, 0x83, 0x93, 0x39, 0x26,
0x86, 0x31, 0x1c, 0x7d, 0x5d, 0xfc, 0xbd, 0xde, 0xdc, 0x81, 0x6f, 0xb5, 0xb4, 0xe6, 0xbc, 0x96,
0x88, 0x4d, 0xa3, 0x85, 0x9c, 0x73, 0x77, 0x0f, 0x14, 0x93, 0x50, 0xbd, 0xf4, 0x82, 0x22, 0x91,
0x49, 0x60, 0xbc, 0xc6, 0x06, 0xf8, 0x7e, 0x46, 0xbc, 0x17, 0xaa, 0x8b, 0x8c, 0x0d, 0xb0, 0x88,
0x19, 0x7a, 0x73, 0x7c, 0xa0, 0x04, 0xc6, 0xba, 0xae, 0xc0, 0x40, 0xe5, 0x7b, 0x50, 0xce, 0xbd,
0x10, 0x74, 0x75, 0xce, 0xec, 0x9f, 0xb3, 0xb5, 0xb5, 0x70, 0x96, 0xb6, 0x06, 0xeb, 0xb5, 0x44,
0xd9, 0xeb, 0xd6, 0x85, 0x46, 0x21, 0x64, 0x4f, 0x0e, 0x6d, 0x2c, 0x55, 0x59, 0x13, 0x3d, 0x1a,
0xbc, 0xe6, 0x97, 0x77, 0x7d, 0x81, 0xbe, 0xfc, 0x9a, 0xe1, 0x3c, 0xcc, 0x31, 0xd0, 0xc5, 0x85,
0x36, 0x86, 0x8f, 0x46, 0x1a, 0x8f, 0x82, 0xac, 0xe3, 0x32, 0xc8, 0xba, 0xd8, 0x30, 0xc0, 0x3b,
0x04, 0x4d, 0xdc, 0xad, 0xa9, 0xc9, 0xcb, 0x96, 0xbd, 0x9b, 0xa6, 0x3e, 0xf3, 0xd7, 0x94, 0x99,
0x6a, 0xbf, 0x25, 0xa9, 0xaa, 0x5a, 0x4e, 0x4a, 0x74, 0xd5, 0xc1, 0x21, 0x84, 0x54, 0xd9, 0xfa,
0x8c, 0x8c, 0x0c, 0x5a, 0x53, 0x53, 0x53, 0xda, 0xc4, 0x10, 0x3e, 0xe1, 0xdf, 0xc9, 0x29, 0x5a,
0xa6, 0x37, 0x90, 0xa7, 0xab, 0x83, 0x73, 0xe7, 0xcc, 0xc6, 0x25, 0xc1, 0xba, 0xa5, 0xd2, 0x8a,
0x1d, 0x30, 0xd4, 0x78, 0x02, 0x86, 0x85, 0x17, 0x60, 0x80, 0x4f, 0x07, 0x41, 0xf1, 0x5e, 0x48,
0x4e, 0x4e, 0xde, 0x92, 0xa8, 0xa2, 0x7c, 0xf2, 0xbc, 0xf2, 0x74, 0xcc, 0x54, 0x52, 0xca, 0x9c,
0xdc, 0xa3, 0xd5, 0xab, 0xf7, 0xc6, 0x22, 0xe4, 0x80, 0x10, 0x9a, 0x56, 0x56, 0x56, 0x16, 0x21,
0x91, 0x48, 0x5e, 0x09, 0xe1, 0xb3, 0x86, 0x2f, 0x33, 0xb9, 0x6b, 0x74, 0xda, 0x73, 0x16, 0x68,
0x3c, 0x11, 0xe7, 0x4d, 0x4f, 0xe7, 0xe5, 0x58, 0x41, 0x5f, 0xe5, 0x6e, 0xe8, 0xbf, 0x17, 0x03,
0x7d, 0x3c, 0x3a, 0xdc, 0x2e, 0xce, 0x01, 0x16, 0x8b, 0xe5, 0x42, 0x47, 0x48, 0xed, 0x0c, 0x42,
0xdd, 0x04, 0xb2, 0xaf, 0x10, 0xd2, 0xfc, 0x1b, 0xd1, 0x65, 0x6b, 0xeb, 0x00, 0x42, 0xe4, 0x48,
0x3d, 0x33, 0x99, 0x4c, 0x33, 0x12, 0xc2, 0x6f, 0x48, 0x07, 0xff, 0x33, 0x57, 0xf2, 0x51, 0x90,
0xd7, 0x39, 0xa7, 0x8b, 0x58, 0xfa, 0xf9, 0x5d, 0x05, 0xea, 0x50, 0x75, 0x49, 0x0d, 0x5a, 0xb9,
0xab, 0x40, 0x52, 0x1e, 0x00, 0x0d, 0x95, 0x8a, 0xae, 0xc1, 0xb0, 0xb6, 0xb6, 0x56, 0x51, 0x9c,
0x4b, 0x84, 0xfc, 0x18, 0x08, 0x6d, 0x9c, 0xd4, 0xa3, 0x33, 0xc6, 0xc6, 0x9e, 0x47, 0x10, 0x5a,
0xfb, 0x62, 0x9d, 0x9f, 0x9f, 0x1f, 0xc6, 0xe3, 0xf1, 0x14, 0x8d, 0xf5, 0x85, 0x67, 0x72, 0x69,
0x3e, 0x8c, 0xde, 0xb1, 0x80, 0x5e, 0xee, 0x3c, 0x68, 0xce, 0x9e, 0x01, 0x65, 0x69, 0xcb, 0x41,
0x50, 0x93, 0x07, 0x37, 0x6e, 0xdc, 0x48, 0x8c, 0x8d, 0x8d, 0xb5, 0x79, 0xab, 0xfb, 0x88, 0x0c,
0xa5, 0x89, 0x6b, 0x3a, 0x9d, 0xae, 0x5b, 0x50, 0x50, 0x90, 0x4c, 0x91, 0x0d, 0xfe, 0xd1, 0x15,
0x28, 0x8c, 0xf2, 0x3c, 0xa1, 0xaf, 0xc8, 0x04, 0x84, 0x65, 0xc1, 0xc0, 0x6f, 0xa8, 0x01, 0x12,
0xe6, 0xf3, 0x0c, 0x06, 0x63, 0xed, 0x5b, 0x5d, 0x7c, 0x64, 0xa8, 0xaa, 0x23, 0x64, 0xb0, 0x6b,
0xfe, 0xfc, 0x15, 0x9b, 0x4d, 0x4d, 0x17, 0x92, 0xb5, 0xe2, 0x74, 0x27, 0x25, 0x25, 0x05, 0x12,
0xcf, 0x14, 0x8d, 0x95, 0x2a, 0x7b, 0x0a, 0x12, 0x41, 0x21, 0x08, 0x79, 0x19, 0x8a, 0x77, 0x1c,
0x0e, 0x27, 0x2a, 0x2c, 0x2c, 0xcc, 0x68, 0xca, 0x1b, 0x96, 0x4a, 0xfa, 0x51, 0x84, 0x76, 0x70,
0xfd, 0xfc, 0x8e, 0x35, 0x30, 0x18, 0x67, 0x45, 0x4c, 0xe6, 0x45, 0x71, 0x42, 0x02, 0x08, 0xcf,
0x9e, 0x4d, 0xad, 0x3d, 0x7e, 0x3c, 0x29, 0xc5, 0xc8, 0x28, 0xf2, 0x53, 0x35, 0x35, 0xa7, 0xf8,
0xf8, 0xf8, 0x53, 0x54, 0xe7, 0x2e, 0x2d, 0x2d, 0x85, 0x8a, 0x8a, 0x0a, 0xca, 0x83, 0xd4, 0xbc,
0xbc, 0xbc, 0xa8, 0xb8, 0xb8, 0x38, 0x87, 0x95, 0x2b, 0x57, 0xce, 0x78, 0xe3, 0x55, 0x4e, 0xe5,
0xe3, 0x1a, 0x42, 0x69, 0xc5, 0xa4, 0xb7, 0x95, 0x90, 0x3e, 0x57, 0x69, 0x67, 0x07, 0x35, 0x6e,
0x6e, 0x50, 0xed, 0xe8, 0x08, 0x65, 0x26, 0x26, 0x69, 0x80, 0x50, 0xc2, 0x41, 0x84, 0x02, 0x54,
0x54, 0x54, 0xac, 0xbc, 0xc9, 0x08, 0x0f, 0x0f, 0x0f, 0xf1, 0xd9, 0xed, 0xe3, 0x65, 0x6c, 0x6c,
0xec, 0x4c, 0x44, 0xda, 0x12, 0xd0, 0x08, 0x96, 0x12, 0x98, 0x13, 0x18, 0x12, 0x68, 0xfc, 0x35,
0xfc, 0x2f, 0x43, 0x17, 0x43, 0x3e, 0x3a, 0x87, 0x90, 0xfb, 0x45, 0x1d, 0x9d, 0x3d, 0x89, 0xe6,
0xe6, 0x01, 0x4c, 0x0b, 0x0b, 0xdf, 0xcf, 0xf4, 0xf4, 0xdc, 0x3c, 0x88, 0xf1, 0x3f, 0x36, 0x92,
0x88, 0x92, 0x12, 0x45, 0x48, 0x6b, 0x02, 0xa8, 0xf7, 0xb3, 0x08, 0xd4, 0x08, 0x54, 0x26, 0x33,
0xfe, 0x9f, 0xfc, 0x6e, 0xfd, 0x0e, 0xb8, 0x1e, 0xa6, 0xd9, 0xe8, 0x0c, 0xc7, 0x31, 0x00, 0x00,
0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};

View File

@ -0,0 +1,182 @@
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x30, 0x08, 0x06, 0x00, 0x00, 0x00, 0x57, 0x02, 0xf9,
0x87, 0x00, 0x00, 0x0a, 0x49, 0x49, 0x44, 0x41, 0x54, 0x68, 0xde, 0xcd, 0x99, 0x6b, 0x6c, 0x5c,
0xd7, 0x71, 0xc7, 0x7f, 0x73, 0xce, 0xdd, 0x37, 0xb9, 0x5c, 0x3e, 0x77, 0xf9, 0x12, 0xc5, 0x37,
0x25, 0x59, 0x6f, 0x09, 0x8e, 0x2c, 0x47, 0x7e, 0x54, 0x81, 0x12, 0xd8, 0x28, 0x9a, 0xc6, 0x75,
0x53, 0x5b, 0xa6, 0x65, 0x17, 0x4e, 0xd0, 0x02, 0x71, 0x9b, 0x14, 0x4d, 0xdc, 0x06, 0x89, 0x2b,
0xb4, 0xa9, 0x9b, 0xc4, 0x4e, 0xbf, 0x05, 0xfd, 0xd4, 0x00, 0x01, 0x5a, 0x04, 0x41, 0x82, 0x02,
0x05, 0x02, 0xc4, 0x40, 0x12, 0xa4, 0x45, 0xed, 0xd6, 0x6d, 0x25, 0x59, 0xac, 0x1d, 0xdb, 0x91,
0x1f, 0x91, 0x2a, 0x99, 0x94, 0x28, 0x8a, 0xe4, 0x52, 0x14, 0xc9, 0xbd, 0xf7, 0x9e, 0xe9, 0x87,
0xbb, 0xe4, 0xee, 0x4a, 0xa4, 0xd2, 0xb4, 0x94, 0xcc, 0x0b, 0x0c, 0xf6, 0xde, 0xdd, 0x73, 0xf7,
0xce, 0x7f, 0xe6, 0x3f, 0x33, 0x67, 0xe6, 0x8a, 0xaa, 0x72, 0x4b, 0x0e, 0x11, 0x39, 0xf1, 0x28,
0x77, 0xd8, 0x18, 0xff, 0xbd, 0xeb, 0x5b, 0x3a, 0xc3, 0x2d, 0x3a, 0xe4, 0x56, 0x00, 0x78, 0xf5,
0xa8, 0x3c, 0x2e, 0x96, 0x6f, 0x00, 0x19, 0xe7, 0xf0, 0xc4, 0xf0, 0x52, 0x7c, 0x81, 0x07, 0xb6,
0x7e, 0x57, 0xaf, 0x6e, 0x78, 0x00, 0xa7, 0x8e, 0xca, 0xc7, 0x8c, 0x35, 0xff, 0xb0, 0xf9, 0xc0,
0xfd, 0x89, 0xf4, 0xa6, 0x9d, 0x84, 0x73, 0x17, 0x19, 0x3f, 0xf9, 0xcf, 0x4b, 0xc5, 0x89, 0x73,
0xa7, 0x76, 0xf6, 0x71, 0x90, 0x67, 0xd5, 0xad, 0xe7, 0xf3, 0xcc, 0x7a, 0xfe, 0xd9, 0xdb, 0x4f,
0x4b, 0x42, 0x0c, 0xdf, 0xde, 0xb4, 0xef, 0x60, 0x22, 0xdd, 0xbb, 0x1f, 0x77, 0xf5, 0x22, 0x36,
0x9b, 0xa7, 0xeb, 0xc8, 0xef, 0x26, 0xac, 0xe7, 0xed, 0x3c, 0x79, 0x86, 0x47, 0xd6, 0xdb, 0x03,
0xeb, 0x0a, 0x60, 0x6e, 0x86, 0x4f, 0xa7, 0x1a, 0x9a, 0xd3, 0xf5, 0x3b, 0x1e, 0x40, 0x17, 0x67,
0x10, 0x40, 0x8b, 0xe3, 0x48, 0xba, 0x95, 0xae, 0x7b, 0x3e, 0x91, 0x32, 0x86, 0xaf, 0xfd, 0xf4,
0x3e, 0xf1, 0x36, 0x24, 0x80, 0x13, 0x9f, 0x96, 0xb4, 0xc0, 0xf1, 0xf6, 0xbd, 0xf7, 0xa4, 0x55,
0x1d, 0x04, 0x8b, 0x60, 0x3c, 0xb0, 0x31, 0xdc, 0xa5, 0xd7, 0xa9, 0xdf, 0xfe, 0x20, 0x89, 0xfa,
0xfa, 0x5c, 0xb6, 0x9b, 0x27, 0x37, 0x24, 0x00, 0x33, 0xcf, 0xd3, 0xe9, 0xa6, 0xb6, 0x44, 0x7a,
0xe8, 0x10, 0x3a, 0x37, 0x0e, 0x36, 0x16, 0x89, 0xf1, 0xa0, 0x34, 0x8f, 0x2e, 0x4e, 0xd3, 0x75,
0xe8, 0xb7, 0x53, 0x06, 0xfe, 0xf2, 0xed, 0xa7, 0x25, 0xb1, 0xa1, 0x00, 0xbc, 0x72, 0x54, 0xb2,
0x22, 0x7c, 0xb1, 0x7d, 0xdf, 0xfd, 0x29, 0x42, 0x1f, 0xd4, 0x81, 0x29, 0x2b, 0x6f, 0x3c, 0xb0,
0x1e, 0xee, 0xf2, 0x5b, 0xa4, 0x47, 0xee, 0x27, 0xd3, 0xd8, 0x92, 0x9e, 0x9f, 0xe1, 0xf7, 0x37,
0x14, 0x80, 0x38, 0xfc, 0x51, 0x5d, 0x5b, 0xbb, 0x4d, 0xf5, 0xdf, 0x8d, 0xab, 0xb6, 0xbe, 0x8d,
0x81, 0xb1, 0x20, 0x16, 0x4a, 0x0b, 0xe8, 0xd5, 0x8b, 0x74, 0xdc, 0xf3, 0xc9, 0x94, 0xc2, 0x9f,
0x8d, 0x8d, 0x4a, 0x66, 0x43, 0x00, 0xf8, 0xd9, 0xc3, 0xd2, 0x84, 0xf0, 0xc7, 0x85, 0xfd, 0x1f,
0x49, 0x11, 0x2e, 0x82, 0x3a, 0xc4, 0x78, 0x88, 0xf1, 0x22, 0xc5, 0xc5, 0x82, 0x08, 0x88, 0xe0,
0x2e, 0xbf, 0x45, 0x72, 0xe0, 0x20, 0x99, 0xd6, 0x8e, 0xb8, 0xc2, 0x67, 0x37, 0x04, 0x80, 0x52,
0x82, 0x67, 0x1a, 0xda, 0xbb, 0x24, 0xb9, 0xf9, 0x4e, 0xdc, 0xec, 0xf9, 0xe5, 0xf2, 0x02, 0x62,
0xae, 0xaf, 0xcc, 0xe0, 0x2f, 0xe0, 0x66, 0xce, 0xd1, 0x79, 0xef, 0xef, 0x24, 0x15, 0xfe, 0xe4,
0xd5, 0x27, 0x24, 0xf7, 0x81, 0x02, 0x18, 0x1b, 0x95, 0x36, 0x84, 0xa7, 0xf3, 0xfb, 0x8f, 0x24,
0xb5, 0x34, 0x07, 0x61, 0x09, 0xd4, 0xa1, 0x2e, 0x40, 0x43, 0x1f, 0xf1, 0x62, 0x51, 0x3c, 0xa8,
0xae, 0x88, 0x4e, 0xbe, 0x49, 0xa2, 0x7b, 0x17, 0xd9, 0xf6, 0xcd, 0x56, 0x02, 0x9e, 0xf9, 0x40,
0x01, 0x84, 0xca, 0x97, 0x72, 0x5d, 0x3d, 0x1a, 0xef, 0xdc, 0x81, 0x5e, 0xf9, 0x45, 0xa4, 0xac,
0x0b, 0xc1, 0x05, 0x80, 0xc3, 0x1b, 0x3a, 0x84, 0x69, 0xea, 0x2c, 0x83, 0x70, 0x80, 0xa2, 0xfe,
0x02, 0x6e, 0xea, 0x1d, 0xda, 0x0f, 0x3d, 0x9c, 0x50, 0xe1, 0x0f, 0xc7, 0x46, 0xa5, 0xed, 0x03,
0x01, 0x70, 0xfa, 0x71, 0xe9, 0x14, 0xf8, 0x54, 0x7e, 0xcf, 0x91, 0x24, 0x0b, 0x57, 0x20, 0x5c,
0x8a, 0x14, 0x77, 0x01, 0x38, 0x1f, 0xdb, 0xdc, 0x03, 0xf1, 0x24, 0xb6, 0x63, 0x2b, 0xa0, 0x65,
0x60, 0x21, 0xa0, 0xb8, 0xc9, 0x37, 0x88, 0x15, 0x86, 0x69, 0xec, 0x19, 0xc6, 0xc1, 0x97, 0x3f,
0x18, 0x0f, 0x28, 0xc7, 0x1b, 0x37, 0xf5, 0xa9, 0x57, 0x18, 0x46, 0xaf, 0xbc, 0x1b, 0x29, 0x1e,
0x06, 0x10, 0xfa, 0x80, 0x62, 0x0a, 0x43, 0x11, 0x6d, 0xe2, 0x69, 0x4c, 0x73, 0x0f, 0x68, 0x88,
0x2e, 0x7b, 0x28, 0x58, 0xc2, 0x5d, 0x7a, 0x93, 0xb6, 0x03, 0x1f, 0x4f, 0xa0, 0x3c, 0x35, 0x76,
0x54, 0xba, 0x6e, 0x2b, 0x80, 0xb1, 0x51, 0xe9, 0x55, 0x18, 0x6d, 0xdb, 0x7b, 0x38, 0x41, 0xf1,
0x7d, 0x34, 0x2c, 0xa1, 0xd5, 0xd6, 0x6f, 0x1b, 0x00, 0xaf, 0x52, 0xab, 0x6c, 0xe7, 0x1d, 0x28,
0x44, 0xbf, 0x6b, 0x18, 0xc5, 0xc9, 0xe5, 0x37, 0x89, 0x35, 0x76, 0xd1, 0x34, 0xb0, 0x4d, 0x9c,
0xe1, 0xcf, 0x6f, 0x2b, 0x00, 0x07, 0x7f, 0xd1, 0xdc, 0x33, 0xa0, 0x5e, 0x73, 0x2f, 0x6e, 0xfa,
0xdd, 0x15, 0xea, 0xa8, 0xf3, 0xc1, 0x58, 0x4c, 0x61, 0x78, 0x85, 0xf3, 0xa8, 0x42, 0x2c, 0x89,
0x97, 0x1f, 0x8c, 0x94, 0x5f, 0x8e, 0x91, 0xa0, 0x84, 0xbb, 0xf8, 0x1a, 0x6d, 0xfb, 0x1f, 0x8c,
0x01, 0x8f, 0x9e, 0x38, 0x26, 0xfd, 0xb7, 0x05, 0xc0, 0xd8, 0x63, 0x32, 0x0c, 0xfc, 0x56, 0xeb,
0xee, 0xc3, 0x71, 0x9d, 0x39, 0x1b, 0x51, 0x66, 0xc5, 0xfa, 0x01, 0xa6, 0x7d, 0x18, 0xac, 0x17,
0xc1, 0x74, 0x6e, 0x25, 0x80, 0x4d, 0xe7, 0x36, 0x04, 0x53, 0x5e, 0x17, 0x46, 0x94, 0x9a, 0xfa,
0x39, 0xb6, 0xae, 0x89, 0xd6, 0xa1, 0x1d, 0x12, 0x73, 0x3c, 0x77, 0x5b, 0x00, 0x38, 0x78, 0xae,
0xa5, 0x77, 0x08, 0x9b, 0xcd, 0xa3, 0xd3, 0xef, 0x55, 0x71, 0x3f, 0x40, 0xac, 0x87, 0x2d, 0x0c,
0x55, 0x02, 0x56, 0xcb, 0x94, 0x21, 0x04, 0x2f, 0x86, 0xe9, 0xd8, 0x52, 0xf1, 0x40, 0x39, 0xd5,
0xea, 0xc4, 0x18, 0x2d, 0x7b, 0x8e, 0x78, 0x0e, 0x7e, 0xe3, 0xf4, 0x31, 0xd9, 0x76, 0x4b, 0x01,
0x9c, 0x38, 0x2a, 0xdb, 0xc5, 0xc8, 0x03, 0x2d, 0xbb, 0xee, 0x8b, 0xe9, 0x95, 0x77, 0xae, 0xb3,
0xbe, 0x8f, 0xe9, 0xdc, 0x56, 0x2e, 0x60, 0xcb, 0x5c, 0x0f, 0x6b, 0x2c, 0x6e, 0x3b, 0xb7, 0x82,
0xb5, 0x91, 0xf5, 0xcb, 0x40, 0xdc, 0xd4, 0xdb, 0x98, 0x78, 0x92, 0xfc, 0xc8, 0x6e, 0x23, 0xca,
0xd7, 0x7f, 0x55, 0x00, 0xbf, 0xd2, 0xde, 0xdc, 0x33, 0x7c, 0xad, 0xa5, 0x7f, 0xc8, 0x9a, 0x54,
0x0e, 0x37, 0xf9, 0x3a, 0x88, 0x41, 0xc4, 0x80, 0x38, 0x48, 0x66, 0xb1, 0x85, 0x41, 0xd0, 0x80,
0xa9, 0xe9, 0x05, 0xbe, 0xfc, 0x37, 0x3f, 0x46, 0x55, 0x51, 0x94, 0x5f, 0x3f, 0x34, 0xc2, 0xc7,
0xee, 0x1a, 0x04, 0x63, 0x30, 0xdd, 0xdb, 0x09, 0xcf, 0xbc, 0x54, 0xe5, 0xa5, 0x10, 0x37, 0x7e,
0x9a, 0xc6, 0x1d, 0xf7, 0xda, 0x4b, 0x3f, 0x3f, 0xfd, 0x6b, 0xa7, 0x46, 0x65, 0xdf, 0xee, 0x6f,
0xeb, 0x7f, 0xae, 0xbb, 0x07, 0x4e, 0x8d, 0xca, 0x3e, 0x15, 0x73, 0x7f, 0xcb, 0x1d, 0x87, 0xac,
0x5e, 0x7e, 0x23, 0xb2, 0x7e, 0xe8, 0x47, 0x55, 0xd7, 0x05, 0xd8, 0xee, 0xed, 0x51, 0xc0, 0xba,
0x90, 0x86, 0x8c, 0xc7, 0xfb, 0x93, 0x33, 0x91, 0x5c, 0x9a, 0xc1, 0x33, 0xac, 0xd0, 0xc9, 0xeb,
0xd8, 0x82, 0x78, 0x89, 0x2a, 0xcf, 0x85, 0xe8, 0xf4, 0x7b, 0x18, 0x81, 0xc2, 0x96, 0xdd, 0x9e,
0x08, 0x2f, 0xdc, 0x12, 0x0a, 0x59, 0x78, 0x3e, 0x3f, 0x38, 0x6c, 0x25, 0x96, 0x44, 0xa7, 0xcf,
0x55, 0x14, 0x08, 0x7d, 0x24, 0x9e, 0xc6, 0xe6, 0xfb, 0xca, 0xb4, 0x09, 0xf0, 0x8c, 0x92, 0x4d,
0xc7, 0x08, 0x82, 0x80, 0x30, 0x0c, 0x69, 0xac, 0x8f, 0x55, 0x62, 0x02, 0xb0, 0x3d, 0xbb, 0x2a,
0x29, 0xb5, 0xfc, 0x1f, 0x6e, 0xfc, 0x55, 0x72, 0x23, 0x07, 0x8c, 0x18, 0x73, 0xe7, 0xc9, 0xc7,
0xe4, 0xc3, 0xeb, 0x0a, 0xe0, 0xc4, 0xe3, 0x72, 0x37, 0xd6, 0x7c, 0xa8, 0x69, 0xe4, 0x80, 0x75,
0x97, 0x5e, 0xaf, 0xc9, 0x3a, 0xb8, 0x00, 0x6f, 0xf3, 0xae, 0x72, 0xb6, 0x09, 0x56, 0x82, 0xb4,
0x29, 0x1b, 0x27, 0x08, 0x02, 0x7c, 0xdf, 0xa7, 0xa9, 0x3e, 0x56, 0xb3, 0xde, 0x16, 0x06, 0x91,
0x44, 0x7a, 0x25, 0x86, 0xd4, 0x85, 0xe8, 0xcc, 0x59, 0x24, 0x5c, 0xa4, 0x7d, 0xeb, 0xee, 0x98,
0x35, 0xfc, 0xf5, 0xba, 0x02, 0xf0, 0x94, 0x17, 0xda, 0xfa, 0xb7, 0xc4, 0xc4, 0x80, 0xce, 0x9e,
0x5f, 0xb1, 0x1a, 0x2e, 0x40, 0x52, 0x59, 0x4c, 0x4b, 0x4f, 0x4d, 0x76, 0x41, 0x03, 0x5a, 0xb3,
0x09, 0x7c, 0xdf, 0x8f, 0x00, 0xd4, 0xc5, 0x2a, 0xe0, 0x34, 0xda, 0x27, 0xd9, 0xde, 0xbd, 0x11,
0x7d, 0xaa, 0xa8, 0xe4, 0xc6, 0x4f, 0xd2, 0xd0, 0xbf, 0xc7, 0x18, 0x1b, 0xdb, 0x76, 0x72, 0x54,
0x8e, 0xac, 0x0b, 0x80, 0x53, 0x8f, 0xcb, 0x61, 0x63, 0xed, 0x8e, 0xdc, 0xf0, 0x5e, 0xe3, 0x26,
0x5e, 0x2b, 0x5b, 0x2c, 0x12, 0x42, 0x1f, 0xaf, 0x77, 0x0f, 0xaa, 0x0e, 0xd5, 0x5a, 0xaf, 0xb4,
0x36, 0x24, 0x09, 0x82, 0x00, 0x23, 0x4a, 0x43, 0xda, 0xae, 0xd0, 0x6b, 0xd9, 0xe2, 0xa6, 0xad,
0x0f, 0x49, 0xd7, 0xaf, 0x64, 0x30, 0x4a, 0x57, 0x71, 0x93, 0x6f, 0xc1, 0xdc, 0xfb, 0xe4, 0x07,
0x07, 0x12, 0x06, 0xbe, 0xb1, 0x2e, 0x00, 0x44, 0x79, 0x21, 0x3f, 0xbc, 0x35, 0x61, 0x82, 0x25,
0xb4, 0x78, 0xa1, 0x46, 0x49, 0xa9, 0x6f, 0x42, 0x9a, 0xbb, 0xaa, 0x2a, 0x71, 0x80, 0xaa, 0x0f,
0xce, 0xa7, 0x35, 0x17, 0xc7, 0xf7, 0x7d, 0xb2, 0x29, 0x0f, 0xd1, 0x10, 0x75, 0x95, 0x80, 0xc7,
0x95, 0x20, 0x58, 0xc0, 0x76, 0x8f, 0xa0, 0xc5, 0x0b, 0xe8, 0xec, 0x79, 0xf4, 0xda, 0x14, 0x94,
0xe6, 0x71, 0xe7, 0xff, 0x9d, 0x86, 0x4d, 0xdb, 0xc4, 0x7a, 0x5e, 0xef, 0xc9, 0xa3, 0xf2, 0xf1,
0xff, 0x17, 0x80, 0x93, 0x47, 0xe5, 0x41, 0xeb, 0x79, 0x83, 0x0d, 0xbd, 0xdb, 0xc5, 0x4d, 0x9c,
0xae, 0xa1, 0x0e, 0x2e, 0xc0, 0xf6, 0xee, 0x59, 0xa1, 0x4c, 0xe5, 0xd3, 0x47, 0x35, 0x24, 0x9f,
0x4b, 0x10, 0x04, 0x01, 0x8d, 0xf5, 0x31, 0x34, 0x5c, 0x02, 0xff, 0x1a, 0x94, 0x66, 0x61, 0xe9,
0x4a, 0x24, 0xfe, 0x1c, 0xa6, 0xa5, 0x1b, 0x53, 0xdf, 0x52, 0xbb, 0x47, 0x9c, 0x9f, 0x44, 0xaf,
0x5d, 0xa6, 0x30, 0x34, 0x9c, 0xb2, 0x86, 0xe7, 0x39, 0x2e, 0xe6, 0xff, 0x06, 0x40, 0x44, 0xac,
0xe1, 0xf9, 0xc2, 0xd0, 0x48, 0x52, 0x17, 0x67, 0xd0, 0xb9, 0x89, 0x9a, 0xcc, 0x63, 0x1a, 0x5a,
0x31, 0x8d, 0xed, 0x15, 0x0a, 0x54, 0xf1, 0x9f, 0x60, 0x91, 0xd6, 0x7a, 0x65, 0x7c, 0x7c, 0x1c,
0xb7, 0x70, 0x05, 0x96, 0xa6, 0xc1, 0x9f, 0x83, 0x70, 0xb1, 0xbc, 0xc6, 0x45, 0x35, 0x5d, 0x1d,
0xde, 0x96, 0x1b, 0x13, 0x8e, 0x4e, 0x9c, 0x26, 0xdb, 0x3d, 0x84, 0x97, 0x88, 0x15, 0x7e, 0xd9,
0x30, 0x6c, 0x4d, 0x00, 0xa7, 0x1e, 0xe5, 0x13, 0x36, 0x1e, 0xeb, 0xae, 0xef, 0x1e, 0x16, 0x1d,
0x7f, 0xb5, 0xaa, 0xaa, 0x96, 0xad, 0xdf, 0xbf, 0xbf, 0xac, 0x8c, 0x1f, 0xf5, 0x02, 0xc1, 0x3c,
0xf8, 0xb3, 0xb0, 0x38, 0x0d, 0xa5, 0x59, 0x3a, 0x1a, 0x84, 0xd2, 0xd2, 0x22, 0xf9, 0xc6, 0x64,
0x39, 0x43, 0x85, 0x95, 0xc6, 0xa6, 0x4a, 0x4c, 0xcb, 0x26, 0x4c, 0x73, 0x77, 0x2d, 0x80, 0x85,
0x69, 0x74, 0x6e, 0x82, 0xc2, 0xc0, 0x70, 0xda, 0x58, 0xbe, 0x7a, 0xb3, 0x61, 0xd8, 0xea, 0x00,
0x8e, 0x8b, 0x31, 0x96, 0xaf, 0xe7, 0x07, 0x86, 0xd2, 0xcc, 0x5f, 0x44, 0xe7, 0x2f, 0x47, 0xfb,
0x96, 0xb2, 0x48, 0x2e, 0x8f, 0xa9, 0xcb, 0x82, 0x7f, 0x15, 0x4a, 0xc5, 0xe8, 0x33, 0x58, 0x28,
0xb7, 0x94, 0x51, 0x75, 0x4d, 0xc5, 0x0d, 0x7f, 0xf5, 0x7b, 0x07, 0x69, 0x6f, 0x4e, 0xd7, 0x2a,
0xcf, 0x8d, 0x20, 0xbc, 0x91, 0xbb, 0x6e, 0xf4, 0xc2, 0xc5, 0xd7, 0xa8, 0xeb, 0xe8, 0x27, 0x16,
0x4f, 0xdc, 0x74, 0x18, 0xb6, 0x2a, 0x80, 0x93, 0x67, 0x78, 0xc4, 0xc6, 0xe3, 0x6d, 0xd9, 0xce,
0x3e, 0x74, 0x62, 0x2c, 0xa2, 0x48, 0x18, 0x05, 0x1e, 0xfe, 0x55, 0xbc, 0xbe, 0x5d, 0xd1, 0xf5,
0x32, 0x1d, 0x56, 0x55, 0x2c, 0xe4, 0xd8, 0x47, 0x87, 0x79, 0xf4, 0xf0, 0xe0, 0xaa, 0x96, 0xaf,
0xbe, 0xc7, 0xe4, 0x0a, 0x98, 0xd6, 0xcd, 0xb5, 0x00, 0x96, 0xe6, 0xd0, 0xe2, 0x79, 0xda, 0x07,
0x87, 0xd2, 0x06, 0xbe, 0xb2, 0xd6, 0x30, 0xec, 0x06, 0x00, 0x3f, 0xbd, 0x4f, 0x3c, 0x23, 0x7c,
0xb5, 0xbd, 0x7f, 0x30, 0xad, 0xc5, 0x71, 0x74, 0xb1, 0x58, 0x6e, 0xc8, 0xa3, 0xe6, 0xdc, 0x14,
0x06, 0x30, 0xd9, 0xe6, 0x55, 0x94, 0xae, 0xa5, 0xc8, 0x52, 0xc9, 0xe7, 0x07, 0x2f, 0xbf, 0xc7,
0xc2, 0x52, 0x69, 0xcd, 0x35, 0x95, 0x86, 0xdf, 0xe1, 0x0d, 0x7d, 0x08, 0xe4, 0xba, 0x9d, 0xef,
0xa5, 0x37, 0xc8, 0xe4, 0x37, 0x91, 0x48, 0x25, 0xd3, 0xc5, 0xa9, 0xd5, 0x87, 0x61, 0x37, 0x00,
0xc8, 0x75, 0xf2, 0x44, 0x22, 0x95, 0x6c, 0xa8, 0x2b, 0x6c, 0xc2, 0x4d, 0xbe, 0x79, 0xc3, 0x68,
0xc4, 0x1b, 0xd8, 0xbf, 0xb6, 0x45, 0xcb, 0x4a, 0x2e, 0x2c, 0xfa, 0xec, 0x7a, 0xf2, 0xbb, 0x1c,
0x7b, 0xee, 0x27, 0xec, 0x7b, 0xea, 0x7b, 0xbc, 0xf8, 0xca, 0xd9, 0x55, 0x2d, 0x5f, 0x39, 0x57,
0x4c, 0xb6, 0x09, 0x53, 0x18, 0xa8, 0x7d, 0x9e, 0x7f, 0x0d, 0x9d, 0x39, 0x1b, 0x79, 0xc1, 0xe3,
0xd9, 0xd5, 0x86, 0x61, 0x35, 0x00, 0xfe, 0xe9, 0x09, 0x49, 0x62, 0xf8, 0x4a, 0xbe, 0xbf, 0x3f,
0xa3, 0xc5, 0x0b, 0x50, 0xaa, 0x7d, 0x1f, 0x61, 0xdb, 0x87, 0x30, 0x99, 0x86, 0x35, 0x94, 0xa8,
0xc8, 0x8b, 0xaf, 0x9c, 0xe5, 0xf2, 0xec, 0x62, 0x34, 0xb9, 0x70, 0xca, 0xdf, 0xfd, 0xe8, 0x4c,
0x95, 0xf5, 0xc3, 0x35, 0xc1, 0xc7, 0xfa, 0xf7, 0x45, 0xf3, 0xa3, 0x6a, 0x2f, 0x4c, 0x9d, 0x21,
0xd5, 0x5c, 0x20, 0x95, 0x49, 0xc7, 0x02, 0xe5, 0x73, 0x22, 0xb5, 0x0b, 0x4c, 0x39, 0x63, 0x8a,
0x88, 0x48, 0x5d, 0x89, 0x4f, 0x25, 0xd3, 0xa9, 0x74, 0xa6, 0xb5, 0x03, 0x37, 0x75, 0xe6, 0x3a,
0xa8, 0x06, 0xaf, 0x7f, 0xf7, 0x9a, 0x56, 0xaf, 0xbe, 0xee, 0xeb, 0xa8, 0xab, 0xb9, 0xb5, 0xab,
0x35, 0xbd, 0x26, 0xff, 0xa3, 0x86, 0x27, 0xf2, 0x82, 0x64, 0xea, 0xb1, 0x1d, 0x43, 0xb5, 0xcf,
0x0d, 0x96, 0xd0, 0xe9, 0xb3, 0xe4, 0xfb, 0x07, 0xd2, 0x46, 0x78, 0xe6, 0xc5, 0x87, 0x69, 0x5c,
0xd6, 0x17, 0xc0, 0x94, 0x4f, 0xe4, 0x9b, 0xf7, 0x92, 0xb1, 0x96, 0xe3, 0xf9, 0xbe, 0xbe, 0x8c,
0x16, 0xcf, 0x83, 0xbf, 0x50, 0x6b, 0xfd, 0xce, 0x61, 0x24, 0x95, 0xb9, 0x89, 0x22, 0x15, 0x20,
0x3b, 0xfa, 0x1a, 0xf8, 0x83, 0xdf, 0xdc, 0x4a, 0xae, 0x2e, 0xce, 0x7d, 0xbb, 0xdb, 0x79, 0xea,
0x81, 0x9b, 0x04, 0xf2, 0x4a, 0x7c, 0x45, 0xe7, 0x5e, 0xdf, 0xce, 0x68, 0x9e, 0x5a, 0xed, 0x85,
0xe9, 0x77, 0x49, 0x35, 0x34, 0x93, 0xce, 0xd6, 0x49, 0x73, 0x8c, 0x2f, 0x94, 0x0d, 0xbf, 0x82,
0x42, 0x00, 0xf3, 0xaf, 0x9f, 0xe4, 0x0b, 0xb9, 0x5c, 0xfa, 0x8b, 0xbd, 0x7b, 0xef, 0x4c, 0x87,
0xe7, 0x5e, 0x86, 0x60, 0xa9, 0x4a, 0x7b, 0x4b, 0xe2, 0xae, 0x87, 0x90, 0x64, 0xba, 0x3c, 0x36,
0x5c, 0xbe, 0x4d, 0xaa, 0x5c, 0x2e, 0x95, 0x11, 0xe2, 0xf2, 0x83, 0x9d, 0x62, 0x4c, 0x95, 0xc7,
0x6b, 0x5e, 0x67, 0x95, 0x1b, 0x7e, 0xb4, 0xea, 0xb7, 0x48, 0xfc, 0xb7, 0xfe, 0x8d, 0xf0, 0xdc,
0x1b, 0xb5, 0xe1, 0xd7, 0xd4, 0x87, 0x2f, 0x75, 0xbc, 0x7b, 0x7a, 0x6c, 0xf1, 0xbf, 0x26, 0x19,
0x1c, 0xfd, 0x21, 0xe3, 0x80, 0x33, 0x80, 0x7c, 0xf3, 0x30, 0xb9, 0x84, 0xc7, 0x9f, 0xe6, 0x7b,
0x37, 0xa7, 0x5d, 0xf1, 0x7c, 0xad, 0xf2, 0x80, 0xd7, 0x35, 0x8c, 0xc4, 0x13, 0xff, 0x2b, 0xfa,
0x54, 0x5f, 0x1b, 0xd1, 0x9b, 0xdf, 0xb3, 0x46, 0x1c, 0x79, 0x3d, 0xdb, 0xcb, 0x83, 0x81, 0x2a,
0xb8, 0x33, 0x67, 0x89, 0xd7, 0x67, 0xa9, 0x6f, 0xac, 0x67, 0xb0, 0x91, 0x2f, 0x45, 0x2d, 0x4a,
0xd4, 0xc0, 0x9a, 0xdd, 0xad, 0x7c, 0x36, 0x93, 0x4d, 0x9b, 0x54, 0xae, 0x09, 0x9d, 0xfe, 0xc5,
0x8d, 0xa9, 0xaa, 0xa9, 0xa3, 0xf2, 0x00, 0x6e, 0x42, 0x1f, 0x6e, 0x96, 0x2e, 0xc3, 0x55, 0x8b,
0xd8, 0x6a, 0x22, 0x5e, 0x3c, 0x4a, 0xd5, 0x35, 0x3c, 0x0a, 0xd1, 0xe9, 0xb3, 0xb4, 0xf5, 0x6c,
0x4e, 0x26, 0x2c, 0xc7, 0xbe, 0xf5, 0x11, 0x7a, 0x00, 0xe3, 0xfd, 0xed, 0x61, 0x9a, 0x93, 0x96,
0xcf, 0xb5, 0xf5, 0x74, 0xa7, 0xb4, 0x78, 0xa1, 0x3c, 0x59, 0xbb, 0x6e, 0x02, 0x7d, 0xea, 0xc7,
0x60, 0xd6, 0xf5, 0x75, 0xda, 0x2f, 0x99, 0xfa, 0x95, 0x3d, 0x77, 0xfd, 0xd7, 0xc5, 0x0b, 0xc4,
0xba, 0x3a, 0xc8, 0x36, 0x67, 0x19, 0x71, 0xc5, 0x67, 0x81, 0x27, 0xcd, 0x70, 0x0b, 0x0f, 0x25,
0xd2, 0x71, 0x4d, 0x66, 0x1b, 0xd1, 0xd9, 0x0b, 0x6b, 0xce, 0x11, 0x57, 0x9a, 0xf0, 0xdb, 0x21,
0x6b, 0xbd, 0x89, 0x55, 0x87, 0x16, 0xdf, 0xa7, 0xb5, 0xa3, 0x3d, 0x9e, 0xb0, 0x3c, 0x74, 0xa0,
0x1b, 0x6b, 0xe2, 0x1e, 0x77, 0x37, 0xb4, 0x34, 0xa7, 0xb8, 0x76, 0x25, 0xda, 0x1e, 0x6c, 0xf0,
0x43, 0xe7, 0x27, 0x89, 0xd7, 0xe7, 0x10, 0x30, 0x9f, 0xdf, 0xc9, 0x90, 0x11, 0x65, 0xce, 0x5f,
0x5a, 0x72, 0xd8, 0xf8, 0x0d, 0xe9, 0x6b, 0x23, 0x1e, 0x12, 0xcf, 0x10, 0x96, 0x16, 0x51, 0xc5,
0x9c, 0x5f, 0x64, 0xc2, 0xbb, 0x16, 0xf0, 0x8f, 0xb3, 0x53, 0xb3, 0x8f, 0x35, 0xb5, 0x36, 0xda,
0x58, 0x61, 0x47, 0xd5, 0x20, 0x4a, 0x37, 0x98, 0xe6, 0x52, 0x7e, 0x69, 0x68, 0x99, 0x7c, 0xe7,
0x1d, 0x5f, 0xe1, 0xd4, 0x67, 0x7e, 0xc4, 0xb4, 0x00, 0xde, 0xcb, 0x8f, 0xf0, 0x6c, 0xd2, 0xf2,
0xf9, 0x4c, 0x26, 0x19, 0xc4, 0xe2, 0x36, 0x16, 0x79, 0x42, 0x36, 0x18, 0x77, 0x14, 0x0d, 0x7d,
0x37, 0x7f, 0xcd, 0x0f, 0x03, 0x3f, 0x98, 0x7a, 0xe9, 0x02, 0x1f, 0xfe, 0xcc, 0x4f, 0xb8, 0x20,
0xe5, 0xaa, 0xe6, 0xfd, 0xfd, 0x83, 0xec, 0x6a, 0x4a, 0x70, 0xd0, 0x0a, 0x9d, 0xa1, 0xc3, 0x28,
0x88, 0xea, 0xc6, 0x40, 0x21, 0x82, 0x0a, 0xa8, 0x15, 0x96, 0x66, 0x7c, 0xfe, 0xe3, 0x3b, 0x3f,
0xe3, 0x5f, 0xbe, 0xff, 0x36, 0x33, 0x40, 0xb0, 0x52, 0x89, 0xcb, 0x63, 0x46, 0xaf, 0x5c, 0x20,
0x36, 0xa0, 0x0b, 0xd0, 0x68, 0x4a, 0x4c, 0x18, 0x0d, 0x5f, 0x09, 0x00, 0xf7, 0x3f, 0x05, 0xed,
0x23, 0xdf, 0x99, 0x02, 0xd5, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
0x60, 0x82,
};
const BITMAP_OPAQUE dialog_warning_xpm[1] = {{ png, sizeof( png ), "dialog_warning_xpm" }};
//EOF

View File

@ -7,23 +7,27 @@
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48"
width="48"
height="26"
width="26"
version="1.1"
viewBox="0 0 26 26"
id="svg2"
inkscape:version="0.48.1 "
inkscape:version="0.48.2 r9819"
sodipodi:docname="add_component.svg">
<metadata
id="metadata98">
id="metadata56">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs54" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
@ -33,174 +37,124 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="968"
id="namedview96"
showgrid="false"
inkscape:zoom="16.144186"
inkscape:cx="23.860729"
inkscape:cy="21.637301"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-width="1600"
inkscape:window-height="841"
id="namedview52"
showgrid="true"
inkscape:zoom="18.351206"
inkscape:cx="25.807289"
inkscape:cy="13.250246"
inkscape:window-x="0"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 24 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="48 : 24 : 1"
inkscape:persp3d-origin="24 : 16 : 1"
id="perspective100" />
<linearGradient
id="h"
y2="6.4143"
gradientUnits="userSpaceOnUse"
x2="3.7417"
gradientTransform="matrix(1.069 0 0 .93541 -68.9 33.266)"
y1="13.722"
x1="11.124">
<stop
stop-color="#afafff"
offset="0"
id="stop7" />
<stop
stop-color="#fff"
offset="1"
id="stop9" />
</linearGradient>
<linearGradient
id="f"
y2="206.34"
gradientUnits="userSpaceOnUse"
x2="189.93"
gradientTransform="matrix(.05174 0 0 .049782 15.443 5.8055)"
y1="86.2"
x1="128.19">
<stop
stop-color="#fff"
offset="0"
id="stop12" />
<stop
stop-color="#fff"
stop-opacity="0"
offset="1"
id="stop14" />
</linearGradient>
<linearGradient
id="g"
y2="194.28"
gradientUnits="userSpaceOnUse"
x2="134.9"
gradientTransform="matrix(.038626 0 0 .036613 19.884 9.4599)"
y1="53.314"
x1="134.9">
<stop
stop-color="#fff"
offset="0"
id="stop17" />
<stop
stop-color="#fff"
stop-opacity=".60086"
offset="1"
id="stop19" />
</linearGradient>
<filter
id="e"
color-interpolation-filters="sRGB">
<feGaussianBlur
stdDeviation="0.66274209"
id="feGaussianBlur22" />
</filter>
<inkscape:perspective
id="perspective2972"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<g
id="g3046"
transform="matrix(2.4202879,0,0,2.5639849,28.046412,133.81959)">
<path
style="opacity:0.67577999;fill:none;stroke:#000000;stroke-width:0.70607585;stroke-linecap:square"
id="path53"
d="m 2.2394675,-42.863241 a 4.9810917,4.9419407 0 0 1 -9.9621834,0 4.9810917,4.9419407 0 1 1 9.9621834,0 z"
inkscape:connector-curvature="0" />
<path
style="opacity:0.67577999;fill:none;stroke:#000000;stroke-width:0.95099938"
id="path55"
d="m -1.8474096,-46.3301 0,6.969857"
inkscape:connector-curvature="0" />
<path
style="opacity:0.67577999;fill-rule:evenodd;stroke:#000000;stroke-width:0.75682741"
id="path57"
d="m -4.9075736,-44.616426 0,3.652544 2.592539,-1.826209 -2.592539,-1.826218 z"
inkscape:connector-curvature="0" />
<path
style="opacity:0.67577999;fill:none;stroke:#000000;stroke-width:0.97350782"
id="path59"
d="m -2.8231216,-42.847917 -6.3480238,0 -1.1762506,0.0096"
inkscape:connector-curvature="0" />
<path
style="opacity:0.67577999;fill:none;stroke:#000000;stroke-width:0.97539437"
id="path61"
d="m 7.6581275,-40.843493 -9.19877,0"
inkscape:connector-curvature="0" />
<path
style="opacity:0.67577999;fill:none;stroke:#000000;stroke-width:0.99983388"
id="path63"
d="m 7.7166285,-44.827707 -9.3876811,0"
inkscape:connector-curvature="0" />
<text
sodipodi:linespacing="125%"
id="text65"
x="-10.27033"
y="-43.010334"
font-size="10.082px"
line-height="125%"
transform="scale(0.96596192,1.0352375)"
xml:space="preserve"
font-weight="bold"
style="font-size:2.54732251px;font-weight:bold;text-align:center;line-height:125%;text-anchor:middle;opacity:0.70702999;fill:#000000;stroke:#000000;stroke-width:0.14831169;font-family:Bitstream Vera Sans"><tspan
style="font-size:4.82404613px;stroke:#000000;stroke-width:0.14831169"
id="tspan67"
x="-10.27033"
y="-43.010334"
font-size="19.093px">G</tspan></text>
<text
sodipodi:linespacing="125%"
id="text69"
x="4.5639224"
y="-40.991043"
font-size="10.082px"
line-height="125%"
transform="scale(0.88293422,1.1325872)"
xml:space="preserve"
font-weight="bold"
style="font-size:2.42543864px;font-weight:bold;text-align:center;line-height:125%;text-anchor:middle;opacity:0.70702999;fill:#000000;stroke:#000000;stroke-width:0.14121528;font-family:Bitstream Vera Sans"><tspan
style="font-size:4.59322548px;stroke:#000000;stroke-width:0.14121528"
id="tspan71"
x="4.5639224"
y="-40.991043"
font-size="19.093px">D</tspan></text>
<text
sodipodi:linespacing="125%"
id="text73"
x="4.2184954"
y="-36.048878"
font-size="10.082px"
line-height="125%"
transform="scale(1.0130185,0.9871488)"
xml:space="preserve"
font-weight="bold"
style="font-size:2.6916604px;font-weight:bold;text-align:center;line-height:125%;text-anchor:middle;opacity:0.70702999;fill:#000000;stroke:#000000;stroke-width:0.15671541;font-family:Bitstream Vera Sans"><tspan
style="font-size:5.09738922px;stroke:#000000;stroke-width:0.15671541"
id="tspan75"
x="4.2184954"
y="-36.048878"
font-size="19.093px">S</tspan></text>
</g>
inkscape:current-layer="svg2"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid3033"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<rect
transform="matrix(0,-1,1,0,0,0)"
height="21.994465"
width="12.99073"
y="1.5596062"
x="-17.520231"
id="rect8"
style="fill:#ffffff;stroke:#484848;stroke-width:0.99127513000000000;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
style="fill:#ac9393;fill-opacity:1;fill-rule:evenodd;stroke:none;opacity:0.708"
id="rect3003"
width="18.963331"
height="10.026589"
x="3.0515707"
y="6.0558066"
ry="0.88184816" />
<path
d="m 1.5927632,8.9410802 a 2.0341261,1.8090857 0 1 1 0.012585,3.6181538"
id="path10"
inkscape:connector-curvature="0"
style="fill:none;stroke:#484848;stroke-width:0.99127518999999997;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5188339"
x="-20.502354"
id="rect30"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5071146,16.522119 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.507601"
x="-20.513519"
id="rect30-5"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.495882,16.533284 a 0.98526485,0.92342205 0 0 1 0,1.846845 0.98526485,0.92342205 0 1 1 0,-1.846845 z"
id="path32-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.499128"
x="-20.488094"
id="rect30-2"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.487408,16.507861 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5339792"
x="-7.5303874"
id="rect30-1"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5222603,3.5501532 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-3"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.522747"
x="-7.5415525"
id="rect30-5-6"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.511028,3.5613187 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-4-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.514275"
x="-7.516129"
id="rect30-2-8"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.502554,3.535895 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-0-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</svg>

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -1,335 +1,115 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="af">
<stop stop-color="#8787ff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="ai" y2="12.267" xlink:href="#af" gradientUnits="userSpaceOnUse" x2="6.0408" gradientTransform="matrix(1.2247 0 0 .8165 58.265 4.1618)" y1="17.051" x1="11.431"/>
<linearGradient id="bb" y2="12.267" xlink:href="#af" gradientUnits="userSpaceOnUse" x2="6.0408" gradientTransform="scale(1.2247 .8165)" y1="17.051" x1="11.431"/>
<linearGradient id="ah" y2="4.6406" gradientUnits="userSpaceOnUse" x2="6.0964" y1="8.6836" x1="8.9893">
<stop stop-color="#ff7800" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="ag">
<stop stop-color="#c3c3ff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="am" y2="14.672" gradientUnits="userSpaceOnUse" x2="14.672" gradientTransform="translate(-7,13)" y1="4.1719" x1="7.4531">
<stop stop-color="#fff" offset="0"/>
<stop stop-color="#9b9aff" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="bc" y2="6.7886" xlink:href="#ag" gradientUnits="userSpaceOnUse" x2="8.8384" gradientTransform="matrix(-1.1314 0 0 .88384 14.461 -1)" y1="6.7886" x1=".91842"/>
<linearGradient id="bd" y2="6.7886" xlink:href="#ag" gradientUnits="userSpaceOnUse" x2="8.8384" gradientTransform="matrix(1.1314 0 0 -.88384 -1.5391 16)" y1="6.7886" x1=".91842"/>
<linearGradient id="ba" y2="5.5" gradientUnits="userSpaceOnUse" x2="1.0312" gradientTransform="matrix(.75 0 0 .75 49.186 -33.327)" y1="9.4062" x1="4.9688">
<stop stop-color="#afafff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="an" y2="-15.689" gradientUnits="userSpaceOnUse" x2="58.744" gradientTransform="matrix(.47701 0 0 .47701 73.379 73.879)" y1="78.411" x1="58.744">
<stop stop-color="#810000" offset="0"/>
<stop stop-color="#c50000" offset="1"/>
</linearGradient>
<clipPath id="ad">
<path fill="url(#linearGradient3563)" d="m-64.51 10.75c-1.0423 0.0084-2.0402 0.42321-2.7812 1.1562l-16.969 16.969c-1.5615 1.5621-1.5615 4.0941 0 5.6562l25.437 25.469-25.438 25.469c-1.5615 1.5621-1.5615 4.0941 0 5.6562l16.969 16.969c1.5621 1.5615 4.0941 1.5615 5.6562 0l25.469-25.438 25.469 25.438c1.5621 1.5615 4.0941 1.5615 5.6563 0l16.969-16.965c1.5615-1.5621 1.5615-4.0941 0-5.6562l-25.437-25.469 25.437-25.469c1.5615-1.5621 1.5615-4.0941 0-5.6562l-16.968-16.969c-1.5621-1.5615-4.0941-1.5615-5.6563 0l-25.469 25.438-25.469-25.438c-0.76408-0.75601-1.8002-1.1727-2.875-1.1562zm31.188 63.406c-0.75141-0.75946-1.7754-1.1868-2.8438-1.1868s-2.0923 0.42735-2.8438 1.1868h5.6875z"/>
</clipPath>
<filter id="ae" height="1.2961" width="1.2328" color-interpolation-filters="sRGB" y="-.14804" x="-.11642">
<feGaussianBlur stdDeviation="2.5695681"/>
</filter>
<linearGradient id="ao" y2="14.857" gradientUnits="userSpaceOnUse" x2="31.501" gradientTransform="scale(1.0976 .91108)" y1="14.857" x1="26.091">
<stop stop-color="#fff" offset="0"/>
<stop stop-color="#fff" stop-opacity="0" offset="1"/>
</linearGradient>
<filter id="a" height="1.2775" width="1.2798" color-interpolation-filters="sRGB" y="-.13874" x="-.13992">
<feGaussianBlur stdDeviation="0.28784801"/>
</filter>
<linearGradient id="ap" y2="14.857" xlink:href="#al" gradientUnits="userSpaceOnUse" x2="31.501" gradientTransform="scale(1.0976 .91108)" y1="14.857" x1="26.091"/>
<linearGradient id="al">
<stop stop-color="#765c44" offset="0"/>
<stop stop-color="#765c44" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="aq" y2="384.62" xlink:href="#al" gradientUnits="userSpaceOnUse" x2="345.62" y1="385.86" x1="304.89"/>
<linearGradient id="ar" y2="36.656" gradientUnits="userSpaceOnUse" x2="55.007" gradientTransform="matrix(.47701 0 0 .47701 73.379 73.879)" y1="88.461" x1="55.007">
<stop stop-color="#f00" offset="0"/>
<stop stop-color="#7f0000" offset="1"/>
</linearGradient>
<linearGradient id="as" y2="13.51" xlink:href="#ak" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="34.875" gradientTransform="translate(56.7)" y1="13.51" x1="31.906"/>
<linearGradient id="ak">
<stop stop-color="#ff8787" offset="0"/>
<stop stop-color="#ff8787" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="ay" gradientUnits="userSpaceOnUse" cy="90.073" cx="-36.593" gradientTransform="matrix(.45761 0 0 .78231 -19.848 18.821)" r="25.986">
<stop offset="0"/>
<stop stop-opacity="0" offset="1"/>
</radialGradient>
<linearGradient id="at" y2="13.51" xlink:href="#aj" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="34.875" gradientTransform="translate(-.3)" y1="13.51" x1="31.906"/>
<linearGradient id="aj">
<stop stop-color="#fff" offset="0"/>
<stop stop-color="#790000" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="au" y2="13.51" xlink:href="#aj" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="34.875" gradientTransform="translate(56.7)" y1="13.51" x1="31.906"/>
<linearGradient id="av" y2="55.079" gradientUnits="userSpaceOnUse" x2="57.434" y1="92.973" x1="60">
<stop stop-color="#fff5e4" offset="0"/>
<stop stop-color="#ffecd0" offset=".25"/>
<stop stop-color="#ffd390" offset=".5"/>
<stop stop-color="#ffc46a" offset="1"/>
</linearGradient>
<filter id="az" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.45754832"/>
</filter>
<linearGradient id="aw" y2="32.751" gradientUnits="userSpaceOnUse" x2="51.545" gradientTransform="matrix(.67625 0 0 .33648 73.379 73.879)" y1="109.98" x1="68.313">
<stop stop-color="#f4f5f8" offset="0"/>
<stop stop-color="#fdfdfe" offset="1"/>
</linearGradient>
<linearGradient id="ax" y2="70.357" xlink:href="#ak" gradientUnits="userSpaceOnUse" x2="47.264" gradientTransform="matrix(.47701 0 0 .47701 73.379 73.879)" y1="21.738" x1="47.264"/>
<linearGradient id="be" y2="20.363" gradientUnits="userSpaceOnUse" x2="56.771" gradientTransform="matrix(.47701 0 0 .47701 73.385 74.475)" y1="71.825" x1="57.654">
<stop stop-color="#fff" stop-opacity="0" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
</defs>
<g transform="translate(0,32)">
<path fill="#9b9b9b" d="m105.85 11.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m104.76 10.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<g transform="translate(17,9.441)">
<rect transform="rotate(-90)" height="1" width="1" y="82.265" x="-8.1618" fill="#d72e2e"/>
<rect height="1" width="1" y="9.1618" x="82.265" fill="#006900"/>
<rect height="1.5" width="15.5" y="16.162" x="58.765" fill="#9b9b9b"/>
<path fill-rule="evenodd" fill="#9b9b9b" d="m74.265 13.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="#6f6500" d="m73.265 12.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="url(#ai)" d="m72.265 13.162h-5.5l-2 2.5 2 2.5h5.5v-5z"/>
<path fill-rule="evenodd" fill="#00bd00" d="m79.265 6.1618-2.8961 0.039129 4 4 4-4h-3c0-3.5-1.1039-5.5-5.1039-5.5v2.5c2 0 3 0.5 3 2.9609z"/>
<g transform="translate(-22.5,11.455)">
<g fill-opacity=".39216" fill-rule="evenodd" transform="matrix(-1,0,0,-1,151.26,8.2657)">
<path d="m14 8h-4.5l-3 3.5 3 3.5h4.5v-7z"/>
<path d="m13 9h-3l-2 2.5 2 2.5h3v-5z"/>
</g>
<path fill="#9b9b9b" d="m61.765 28.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m60.677 27.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<g transform="translate(17,9.441)">
<path fill-opacity=".39216" fill-rule="evenodd" d="m115.26-16.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<path fill-opacity=".39216" fill-rule="evenodd" d="m110.76-24.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<rect height="1.5" width="15.5" y="16.162" x="58.765" fill="#9b9b9b"/>
<path fill-rule="evenodd" fill="#9b9b9b" d="m74.265 13.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="#6f6500" d="m73.265 12.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="url(#ai)" d="m72.265 13.162h-5.5l-2 2.5 2 2.5h5.5v-5z"/>
<path fill-rule="evenodd" d="m109.76-25.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<path fill-rule="evenodd" fill="#6f6500" d="m52.765 18.325 2-6h2l2 6h-1.5l-0.5-2h-2l-0.5 2h-1.5z"/>
<path fill-rule="evenodd" fill="#e7e7e7" d="m61.765 0.32468h1l-0.5-2-0.5 2z"/>
<path fill-rule="evenodd" fill="#695f00" d="m114.26-17.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<g transform="translate(42.39,20.756)">
<path d="m-11.5-29.336 1-1 8.5625-0.000702 2.4375 2.4062v10.593l-1 1-10 0.000702-1-1v-11.999z"/>
<path fill="#fff" d="m-10.5-29.336h8v2h2v10h-10v-12z"/>
<path fill="#ebebeb" d="m-9.5-29.336 7.0625-0.000643v1.8331h1l-0.0625 9.1662-8.125 0.000643 0.125-10.999z"/>
<path fill="#c3c3c3" d="m-0.5-27.337v10.001l-1 0.000691v-10.001l1-0.001z"/>
<path fill-rule="evenodd" fill="#ebebeb" d="m-1.9688-29.49 0.031309 1.6528h1.5l-1.5313-1.6528z"/>
<path fill="#c3c3c3" d="m-9.5-18.337h9.0008l0.00062191 1h-9.0008l-0.0006219-1z"/>
</g>
</g>
<g transform="translate(17,9.441)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="matrix(-1,0,0,-1,150.26,7.2657)">
<path fill="#695f00" d="m14 8h-4.5l-3 3.5 3 3.5h4.5v-7z"/>
<path fill="url(#bb)" d="m13 9h-3l-2 2.5 2 2.5h3v-5z"/>
</g>
<g transform="translate(17.5,32.796)">
<g transform="translate(-6.4217,-3)">
<g transform="translate(23.343,12.25)">
<g transform="translate(-6.4217,-3)">
<path fill-opacity=".39216" d="m58.938 5.2103 1.0202 1.7205c3.2889-2.0002 7.5849-0.96655 9.6019 2.3168 1.1602 1.8886 1.1966 4.0675 0.49692 6.0029l1.883 0.67706c0.899-2.488 0.816-5.299-0.675-7.7264-2.59-4.2149-8.101-5.5462-12.327-2.9903z"/>
<path fill-opacity=".39216" d="m83.265-0.33824v2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5h-2c0 3.864 3.136 7 7 7s7-3.136 7-7-3.136-7-7-7z"/>
<path fill-opacity=".39216" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 75.931 -5.3382)"/>
<path fill-opacity=".39216" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 69.931 1.6618)"/>
<path fill-opacity=".39216" d="m83.265 14.412c-3.864 0-7 3.136-7 7s3.136 7 7 7 7-3.136 7-7-3.136-7-7-7zm0 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z"/>
<path fill="#00009b" d="m82.265-1.3382v2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5h-2c0 3.864 3.136 7 7 7s7-3.136 7-7-3.136-7-7-7z"/>
<g transform="translate(28.672,1.5)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<path d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 68.931 .66175)"/>
<path fill="url(#ah)" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.55556 0 0 .55556 71.681 2.9118)"/>
<path d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 74.931 -6.3382)"/>
<path fill="url(#ah)" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.55556 0 0 .55556 77.681 -4.0882)"/>
<path fill="#00009b" d="m57.857 4.2293 1.0202 1.7205c3.2889-2.0002 7.5849-0.96655 9.6019 2.3168 1.1602 1.8886 1.1966 4.0675 0.49692 6.0029l1.883 0.67706c0.899-2.489 0.816-5.2997-0.676-7.7274-2.589-4.2149-8.1-5.5462-12.326-2.9903z"/>
</g>
<g transform="translate(-6.4217,-3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g transform="translate(28,-66.442)">
<g transform="translate(-6.4217,-3)">
<g transform="translate(37.646,10.439)">
<g transform="translate(-.95462 3)">
<g transform="translate(-7.6918,14.561)">
<rect transform="rotate(-90)" height="9.5" width="1.9715" y="53.936" x="26.202" fill="#9b9b9b"/>
<path fill="#9b9b9b" d="m51.936-29.702c-1.656 0-3 1.344-3 3s1.344 3 3 3 3-1.344 3-3-1.344-3-3-3z"/>
<path fill-rule="evenodd" fill="#fff" d="m80.265 6.6618-1.5 3h1v4.5h1v-4.5h1l-1.5-3z"/>
<path fill="#d72e2e" d="m53.436-27.202v-1.5l9 0.02846v1.5l-9-0.02846z"/>
<path fill="#d72e2e" d="m51.436-30.702c-1.656 0-3 1.344-3 3s1.344 3 3 3 3-1.344 3-3-1.344-3-3-3z"/>
<path fill="url(#ba)" d="m51.436-29.202c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5z"/>
</g>
<g transform="translate(-7.6918,14.561)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-.95462 3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(37.646,10.439)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(38.843,33.662)">
<path fill-opacity=".39216" d="m7 7-0.0783 2-3.9217-3.5 3.9217-3.5 0.0783 2c4.9609 0 6.9609 1 6.9217 5.5h-3c0.039-2.5-1.9618-2.5-3.9226-2.5z"/>
<path d="m6 6-0.0783 2-3.9217-3.5 3.9217-3.5 0.0783 2c4.9609 0 6.9609 1 6.9217 5.5h-3c0.0382-2.5-1.9618-2.5-3.9226-2.5z"/>
<path fill="url(#bc)" d="m5.4609 5.5-0.039129 1-2.4609-2 2.4609-2 0.039129 1c3.5 0 6.4609 0 6.4609 4h-1.5c0-2-2.4609-2-4.9609-2z"/>
<path fill-opacity=".39216" d="m7.4217 10 0.078258-2 3.9217 3.5-3.922 3.5-0.0783-2c-4.9609 0-6.9609-1-6.9217-5.5h3c-0.0391 2.5 1.9609 2.5 3.9217 2.5z"/>
<path d="m6.9217 9 0.078258-2 3.9217 3.5-3.922 3.5-0.0783-2c-4.9609 0-6.9609-1-6.9217-5.5h3c-0.0397 2.5 1.9603 2.5 3.9211 2.5z"/>
<path fill="url(#bd)" d="m7.4609 9.5 0.039129-1 2.4609 2-2.4609 2-0.039129-1c-3.5 0-6.4609 0-6.4609-4h1.5c0 2 2.4609 2 4.9609 2z"/>
</g>
</g>
<g transform="translate(-6.4217,-3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(28,-66.442)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g transform="translate(-7.4217,-85.442)">
<g transform="translate(-9.4121,-24.051)">
<path fill="#9b9b9b" d="m61.765 28.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m60.677 27.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<g transform="translate(17,9.441)">
<g transform="matrix(.86106 0 0 .84785 -92.938 -57.767)">
<path fill="url(#an)" d="m88.48 79.007c-0.4972 0.004-0.97321 0.20187-1.3267 0.55155l-8.0943 8.0943c-0.74485 0.74515-0.74485 1.953 0 2.6981l12.134 12.149-12.134 12.149c-0.74485 0.74515-0.74485 1.953 0 2.6981l8.0943 8.0943c0.74515 0.74485 1.953 0.74485 2.6981 0l12.149-12.134 12.149 12.134c0.74516 0.74485 1.953 0.74485 2.6981 0l8.0943-8.0943c0.74485-0.74515 0.74485-1.953 0-2.6981l-12.134-12.149 12.134-12.149c0.74484-0.74515 0.74484-1.953-0.00001-2.6981l-8.0943-8.0943c-0.74515-0.74484-1.953-0.74484-2.6981 0.000002l-12.15 12.133-12.149-12.134c-0.36447-0.36063-0.85873-0.55941-1.3714-0.55154zm14.877 30.246c-0.35843-0.36228-0.84688-0.56613-1.3565-0.56613-0.50963 0-0.99808 0.20385-1.3565 0.56613h2.713z"/>
<path d="m-62.579 106.79 26.163-26.873 25.809 26.513-25.809-40.302-26.163 40.662z" clip-path="url(#ad)" fill-rule="evenodd" transform="matrix(.47701 0 0 .47701 119.28 73.879)" filter="url(#ae)" stroke="#000" stroke-width=".89430px"/>
<path opacity=".49813" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(0 .88927 -.88927 0 134.58 87.901)" filter="url(#a)" fill="url(#ao)"/>
<path opacity=".79026" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.87822 0 0 -.87822 60.74 135.27)" filter="url(#a)" fill="url(#ap)"/>
<path opacity=".49813" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(0 .80528 .80528 0 70.312 90.547)" filter="url(#a)" fill="url(#aq)"/>
<path opacity=".92135" fill="url(#ar)" d="m115.49 82.641-13.492 13.492-13.492-13.492-6.3669 6.3669 13.492 13.492-13.492 13.492 6.3669 6.3669 13.492-13.49 13.492 13.492 6.3669-6.3669-13.492-13.492 13.492-13.492-6.3669-6.3669z"/>
<path opacity=".79026" d="m88.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.80528 0 0 -.80528 44.327 134.59)" filter="url(#a)" fill="url(#as)"/>
<path d="m-62.579 106.79 26.163-26.873 25.809 26.513-25.809-40.302-26.163 40.662z" clip-path="url(#ad)" fill-rule="evenodd" transform="matrix(.47701 0 0 -.47701 119.28 130.9)" filter="url(#ae)" fill="url(#ay)"/>
<path opacity=".79026" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.73233 0 0 .73233 65.336 71.467)" filter="url(#a)" fill="url(#at)"/>
<path opacity=".79026" d="m88.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.75185 0 0 .75185 49.055 71.283)" filter="url(#a)" fill="url(#au)"/>
<path opacity=".92135" stroke-linejoin="round" d="m88.284 18.368-28.284 28.285-28.284-28.285-13.348 13.348 28.285 28.284-28.285 28.284 13.348 13.346 28.284-28.283 28.284 28.283 13.346-13.346-28.283-28.284 28.283-28.284-13.346-13.348z" transform="matrix(.47701 0 0 .47701 73.379 73.879)" stroke-dashoffset="1.0878" filter="url(#az)" stroke="url(#av)" stroke-linecap="round" stroke-width="2.7886" fill="none"/>
<path fill="url(#aw)" d="m88.501 82.61-0.35776 0.35776-6.0082 6.0082 6.2467-5.7697 13.619 12.928 13.362-12.928 5.3524 5.3523c-0.0468 0.24211-0.11002 0.47692-0.17889 0.71552l-5.7991 6.7531c-5.2301 2.6074-12.523 5.1794-20.363 5.1875l0.13416 0.13416c0.22495 0.003 0.44462 0.0149 0.6708 0.0149 7.8641 0 13.272-1.6195 18.515-4.2335l7.7072-7.7072c0.0317-0.10994 0.0612-0.21853 0.0894-0.32795 0.0331-0.12804 0.0642-0.25702 0.0894-0.38757l-6.0977-6.0977-0.35776 0.35776-13.12 13.177-13.499-13.525z"/>
<path fill="url(#ax)" d="m88.509 82.643-6.366 6.366 12.373 12.373c0.22495 0.003 0.44463 0.0149 0.6708 0.0149 7.8641 0 13.272-1.6195 18.515-4.2335l7.7072-7.7072c0.0689-0.2386 0.13207-0.47342 0.17889-0.71552l-6.1-6.095-13.49 13.491-13.491-13.491z"/>
<path fill="url(#be)" d="m88.501 82.61-0.35776 0.35776-6.0082 6.0082 6.2467-5.7697 13.622 13.828-0.003-0.89994 0.005 0.893 13.357-13.821 5.3524 5.3523c-0.0468 0.24211-0.11002 0.47692-0.17889 0.71552l-5.7991 6.7531c-5.2301 2.6074-12.523 5.1794-20.363 5.1875l0.13416 0.13416c0.22495 0.003 0.44462 0.0149 0.6708 0.0149 7.8641 0 13.272-1.6195 18.515-4.2335l7.7072-7.7072c0.0317-0.10994 0.0612-0.21853 0.0894-0.32795 0.0331-0.12804 0.0642-0.25702 0.0894-0.38757l-6.0977-6.0977-0.35776 0.35776-13.12 13.177-13.499-13.525z"/>
</g>
</g>
<g transform="translate(17,9.441)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-9.4121,-24.051)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(2.7646,29.162)">
<g fill-opacity=".39216" transform="translate(.5 .5)">
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
</g>
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path fill="#9b9aff" d="m0.5 15-1.5 1.5h1v4.5h1v-4.5h1l-1.5-1.5z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path fill="#9b9aff" d="m0.5 26-1.5-1.5h1v-3.5h1v3.5h1l-1.5 1.5z"/>
<path fill="#9b9aff" d="m-5 20.5 1.5 1.5v-1h4.5v-1h-4.5v-1l-1.5 1.5z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
<path fill="#9b9aff" d="m6 20.5-1.5 1.5v-1h-3.5v-1h3.5v-1l1.5 1.5z"/>
<path fill="url(#am)" d="m0.5 15-1.5 1.5h1v3.5h-3.5v-1l-1.5 1.5 1.5 1.5v-1h3.5v3.5h-1l1.5 1.5 1.5-1.5h-1v-3.5h3.5v1l1.5-1.5-1.5-1.5v1h-3.5v-3.5h1l-1.5-1.5z"/>
</g>
</g>
<g transform="translate(-7.4217,-85.442)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(83.843,-42.78)">
<g fill-opacity=".39216" transform="translate(.5 .5)">
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
</g>
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path fill="#9b9aff" d="m0.5 15-1.5 1.5h1v4.5h1v-4.5h1l-1.5-1.5z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path fill="#9b9aff" d="m0.5 26-1.5-1.5h1v-3.5h1v3.5h1l-1.5 1.5z"/>
<path fill="#9b9aff" d="m-5 20.5 1.5 1.5v-1h4.5v-1h-4.5v-1l-1.5 1.5z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
<path fill="#9b9aff" d="m6 20.5-1.5 1.5v-1h-3.5v-1h3.5v-1l1.5 1.5z"/>
<path fill="url(#am)" d="m0.5 15-1.5 1.5h1v3.5h-3.5v-1l-1.5 1.5 1.5 1.5v-1h3.5v3.5h-1l1.5 1.5 1.5-1.5h-1v-3.5h3.5v1l1.5-1.5-1.5-1.5v1h-3.5v-3.5h1l-1.5-1.5z"/>
</g>
<g transform="translate(-29.715,-79.978)">
<rect y="2.7977" width="1" x="127.94" height="1"/>
<rect y="2.7977" width="1" x="130.94" height="1"/>
<rect y="2.7977" width="1" x="133.94" height="1"/>
<rect y="2.7977" width="1" x="136.94" height="1"/>
<rect y="2.7977" width="1" x="139.94" height="1"/>
<rect y="2.7977" width="1" x="142.94" height="1"/>
<rect y="5.7977" width="1" x="127.94" height="1"/>
<rect y="5.7977" width="1" x="130.94" height="1"/>
<rect y="5.7977" width="1" x="133.94" height="1"/>
<rect y="5.7977" width="1" x="136.94" height="1"/>
<rect y="5.7977" width="1" x="139.94" height="1"/>
<rect y="5.7977" width="1" x="142.94" height="1"/>
<g transform="translate(16.536 .035544)">
<rect y="14.869" width="1" x="112.23" height="5"/>
<rect transform="rotate(-45)" height="4" width="1" y="92.114" x="67.258"/>
<rect transform="matrix(.70711 .70711 .70711 -.70711 0 0)" height="4" width="1" y="67.551" x="91.822"/>
<rect transform="scale(-1,1)" height="5" width="1" y="14.798" x="-127.19"/>
<rect transform="matrix(-.70711 -.70711 -.70711 .70711 0 0)" height="4" width="1" y="-77.208" x="-102.01"/>
<rect transform="rotate(135)" height="4" width="1" y="-101.72" x="-77.501"/>
<path d="m125.69 16.833v1l-11.929 0.03558v-1l11.93-0.036z"/>
</g>
<g transform="translate(16.536 .035544)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-29.715,-79.978)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(23.343,12.25)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-6.4217,-3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(17.5,32.796)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(129.98,-8.8062)">
<path fill-opacity=".39216" d="m13.961-9.5 0.039-2.896 3.9609 4.3961-4 4.5v-3c-3.5 0-5.4609-2-5.4609-6h2.9609c0 2 1 3 2.5 3z"/>
<g transform="translate(1,-2.4551)">
<path d="m12-8.441 0.03913-2.8961 3.9609 4.3961-4 4.5v-3c-3.5 0-5.4609-2-5.4609-6h2.9609c0 2 1 3 2.5 3z"/>
<path fill="#00bd00" d="m12.5-7.941v-1.5l2.5 2.5-2.5 3v-2c-2 0-5-0.5-5-4.5h1.5c0 2 2 2.5 3.5 2.5z"/>
</g>
</g>
</g>
<g transform="translate(-22.5,11.455)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g transform="translate(36,8.059)">
<path fill="#9b9b9b" d="m66.265 20.162-0.000001-15h1.5l0.000001 15h-1.5z"/>
<path fill="#9b9b9b" d="m59.265 11.162 15-0.000001v1.5l-15 0.000002v-1.5z"/>
<rect transform="rotate(-90)" height="1" width="1" y="82.265" x="-8.1618" fill="#d72e2e"/>
<rect height="1" width="1" y="9.1618" x="82.265" fill="#006900"/>
<rect height="1" width="1" y="11.162" x="82.265" fill="#000069"/>
<path fill="#007d00" d="m58.265 10.162 15-0.000001v1.5l-15 0.000002v-1.5z"/>
<path fill="#007d00" d="m65.265 19.162-0.000001-15h1.5l0.000001 15h-1.5z"/>
</g>
<g transform="translate(36,8.059)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26"
height="26"
id="svg3019"
version="1.1"
inkscape:version="0.47 r22583"
sodipodi:docname="delete_association.svg">
<defs
id="defs3021">
<linearGradient
id="linearGradient3165">
<stop
style="stop-color:#f68273;stop-opacity:1;"
offset="0"
id="stop3167" />
<stop
id="stop3165"
offset="0.5"
style="stop-color:#cd2923;stop-opacity:1;" />
<stop
style="stop-color:#8c0000;stop-opacity:1"
offset="1"
id="stop3169" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3165"
id="linearGradient3186"
x1="9.5"
y1="2.5"
x2="14.909858"
y2="21.491209"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0243903,0,0,1.0355608,1.9512195,1026.5799)" />
<linearGradient
y2="21.491209"
x2="15.409858"
y1="2.5"
x1="10"
gradientTransform="matrix(1.0243903,0,0,1.0355608,1.4390244,1026.5799)"
gradientUnits="userSpaceOnUse"
id="linearGradient3017"
xlink:href="#linearGradient3165"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="3.9910119"
inkscape:cy="13.98951"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1280"
inkscape:window-height="949"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid3027"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata3024">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1026.3622)">
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3017);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 21.354742,1050.0572 c 0,0 -5.437059,-13.8984 -19.0715315,-18.4087 l 2.2098777,-3.2863 c 13.5191078,4.4033 19.0384878,20.3036 19.0384878,20.3036 z"
id="path2205"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3186);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 3.9107143,1046.1662 4.0764373,3.4639 C 14.047658,1033.9761 25,1030.3622 25,1030.3622 l -2,-1.1786 c 0,0 -11.706729,2.1185 -19.0892857,16.9826 z"
id="path2408"
sodipodi:nodetypes="ccccc" />
</g>
<g transform="translate(17,9.441)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<path fill="#9b9b9b" d="m112.85 17.611-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m111.76 16.611-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
</g>
<g transform="translate(0,32)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -1,335 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="af">
<stop stop-color="#8787ff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="ai" y2="12.267" xlink:href="#af" gradientUnits="userSpaceOnUse" x2="6.0408" gradientTransform="matrix(1.2247 0 0 .8165 58.265 4.1618)" y1="17.051" x1="11.431"/>
<linearGradient id="bb" y2="12.267" xlink:href="#af" gradientUnits="userSpaceOnUse" x2="6.0408" gradientTransform="scale(1.2247 .8165)" y1="17.051" x1="11.431"/>
<linearGradient id="ah" y2="4.6406" gradientUnits="userSpaceOnUse" x2="6.0964" y1="8.6836" x1="8.9893">
<stop stop-color="#ff7800" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="ag">
<stop stop-color="#c3c3ff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="am" y2="14.672" gradientUnits="userSpaceOnUse" x2="14.672" gradientTransform="translate(-7,13)" y1="4.1719" x1="7.4531">
<stop stop-color="#fff" offset="0"/>
<stop stop-color="#9b9aff" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="bc" y2="6.7886" xlink:href="#ag" gradientUnits="userSpaceOnUse" x2="8.8384" gradientTransform="matrix(-1.1314 0 0 .88384 14.461 -1)" y1="6.7886" x1=".91842"/>
<linearGradient id="bd" y2="6.7886" xlink:href="#ag" gradientUnits="userSpaceOnUse" x2="8.8384" gradientTransform="matrix(1.1314 0 0 -.88384 -1.5391 16)" y1="6.7886" x1=".91842"/>
<linearGradient id="ba" y2="5.5" gradientUnits="userSpaceOnUse" x2="1.0312" gradientTransform="matrix(.75 0 0 .75 49.186 -33.327)" y1="9.4062" x1="4.9688">
<stop stop-color="#afafff" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
<linearGradient id="an" y2="-15.689" gradientUnits="userSpaceOnUse" x2="58.744" gradientTransform="matrix(.47701 0 0 .47701 73.379 73.879)" y1="78.411" x1="58.744">
<stop stop-color="#810000" offset="0"/>
<stop stop-color="#c50000" offset="1"/>
</linearGradient>
<clipPath id="ad">
<path fill="url(#linearGradient3563)" d="m-64.51 10.75c-1.0423 0.0084-2.0402 0.42321-2.7812 1.1562l-16.969 16.969c-1.5615 1.5621-1.5615 4.0941 0 5.6562l25.437 25.469-25.438 25.469c-1.5615 1.5621-1.5615 4.0941 0 5.6562l16.969 16.969c1.5621 1.5615 4.0941 1.5615 5.6562 0l25.469-25.438 25.469 25.438c1.5621 1.5615 4.0941 1.5615 5.6563 0l16.969-16.965c1.5615-1.5621 1.5615-4.0941 0-5.6562l-25.437-25.469 25.437-25.469c1.5615-1.5621 1.5615-4.0941 0-5.6562l-16.968-16.969c-1.5621-1.5615-4.0941-1.5615-5.6563 0l-25.469 25.438-25.469-25.438c-0.76408-0.75601-1.8002-1.1727-2.875-1.1562zm31.188 63.406c-0.75141-0.75946-1.7754-1.1868-2.8438-1.1868s-2.0923 0.42735-2.8438 1.1868h5.6875z"/>
</clipPath>
<filter id="ae" height="1.2961" width="1.2328" color-interpolation-filters="sRGB" y="-.14804" x="-.11642">
<feGaussianBlur stdDeviation="2.5695681"/>
</filter>
<linearGradient id="ao" y2="14.857" gradientUnits="userSpaceOnUse" x2="31.501" gradientTransform="scale(1.0976 .91108)" y1="14.857" x1="26.091">
<stop stop-color="#fff" offset="0"/>
<stop stop-color="#fff" stop-opacity="0" offset="1"/>
</linearGradient>
<filter id="a" height="1.2775" width="1.2798" color-interpolation-filters="sRGB" y="-.13874" x="-.13992">
<feGaussianBlur stdDeviation="0.28784801"/>
</filter>
<linearGradient id="ap" y2="14.857" xlink:href="#al" gradientUnits="userSpaceOnUse" x2="31.501" gradientTransform="scale(1.0976 .91108)" y1="14.857" x1="26.091"/>
<linearGradient id="al">
<stop stop-color="#765c44" offset="0"/>
<stop stop-color="#765c44" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="aq" y2="384.62" xlink:href="#al" gradientUnits="userSpaceOnUse" x2="345.62" y1="385.86" x1="304.89"/>
<linearGradient id="ar" y2="36.656" gradientUnits="userSpaceOnUse" x2="55.007" gradientTransform="matrix(.47701 0 0 .47701 73.379 73.879)" y1="88.461" x1="55.007">
<stop stop-color="#f00" offset="0"/>
<stop stop-color="#7f0000" offset="1"/>
</linearGradient>
<linearGradient id="as" y2="13.51" xlink:href="#ak" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="34.875" gradientTransform="translate(56.7)" y1="13.51" x1="31.906"/>
<linearGradient id="ak">
<stop stop-color="#ff8787" offset="0"/>
<stop stop-color="#ff8787" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="ay" gradientUnits="userSpaceOnUse" cy="90.073" cx="-36.593" gradientTransform="matrix(.45761 0 0 .78231 -19.848 18.821)" r="25.986">
<stop offset="0"/>
<stop stop-opacity="0" offset="1"/>
</radialGradient>
<linearGradient id="at" y2="13.51" xlink:href="#aj" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="34.875" gradientTransform="translate(-.3)" y1="13.51" x1="31.906"/>
<linearGradient id="aj">
<stop stop-color="#fff" offset="0"/>
<stop stop-color="#790000" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="au" y2="13.51" xlink:href="#aj" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="34.875" gradientTransform="translate(56.7)" y1="13.51" x1="31.906"/>
<linearGradient id="av" y2="55.079" gradientUnits="userSpaceOnUse" x2="57.434" y1="92.973" x1="60">
<stop stop-color="#fff5e4" offset="0"/>
<stop stop-color="#ffecd0" offset=".25"/>
<stop stop-color="#ffd390" offset=".5"/>
<stop stop-color="#ffc46a" offset="1"/>
</linearGradient>
<filter id="az" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.45754832"/>
</filter>
<linearGradient id="aw" y2="32.751" gradientUnits="userSpaceOnUse" x2="51.545" gradientTransform="matrix(.67625 0 0 .33648 73.379 73.879)" y1="109.98" x1="68.313">
<stop stop-color="#f4f5f8" offset="0"/>
<stop stop-color="#fdfdfe" offset="1"/>
</linearGradient>
<linearGradient id="ax" y2="70.357" xlink:href="#ak" gradientUnits="userSpaceOnUse" x2="47.264" gradientTransform="matrix(.47701 0 0 .47701 73.379 73.879)" y1="21.738" x1="47.264"/>
<linearGradient id="be" y2="20.363" gradientUnits="userSpaceOnUse" x2="56.771" gradientTransform="matrix(.47701 0 0 .47701 73.385 74.475)" y1="71.825" x1="57.654">
<stop stop-color="#fff" stop-opacity="0" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</linearGradient>
</defs>
<g transform="translate(0,32)">
<path fill="#9b9b9b" d="m105.85 11.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m104.76 10.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<g transform="translate(17,9.441)">
<rect transform="rotate(-90)" height="1" width="1" y="82.265" x="-8.1618" fill="#d72e2e"/>
<rect height="1" width="1" y="9.1618" x="82.265" fill="#006900"/>
<rect height="1.5" width="15.5" y="16.162" x="58.765" fill="#9b9b9b"/>
<path fill-rule="evenodd" fill="#9b9b9b" d="m74.265 13.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="#6f6500" d="m73.265 12.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="url(#ai)" d="m72.265 13.162h-5.5l-2 2.5 2 2.5h5.5v-5z"/>
<path fill-rule="evenodd" fill="#00bd00" d="m79.265 6.1618-2.8961 0.039129 4 4 4-4h-3c0-3.5-1.1039-5.5-5.1039-5.5v2.5c2 0 3 0.5 3 2.9609z"/>
<g transform="translate(-22.5,11.455)">
<g fill-opacity=".39216" fill-rule="evenodd" transform="matrix(-1,0,0,-1,151.26,8.2657)">
<path d="m14 8h-4.5l-3 3.5 3 3.5h4.5v-7z"/>
<path d="m13 9h-3l-2 2.5 2 2.5h3v-5z"/>
</g>
<path fill="#9b9b9b" d="m61.765 28.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m60.677 27.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<g transform="translate(17,9.441)">
<path fill-opacity=".39216" fill-rule="evenodd" d="m115.26-16.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<path fill-opacity=".39216" fill-rule="evenodd" d="m110.76-24.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<rect height="1.5" width="15.5" y="16.162" x="58.765" fill="#9b9b9b"/>
<path fill-rule="evenodd" fill="#9b9b9b" d="m74.265 13.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="#6f6500" d="m73.265 12.162h-7l-3 3.5 3 3.5h7v-7z"/>
<path fill-rule="evenodd" fill="url(#ai)" d="m72.265 13.162h-5.5l-2 2.5 2 2.5h5.5v-5z"/>
<path fill-rule="evenodd" d="m109.76-25.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<path fill-rule="evenodd" fill="#6f6500" d="m52.765 18.325 2-6h2l2 6h-1.5l-0.5-2h-2l-0.5 2h-1.5z"/>
<path fill-rule="evenodd" fill="#e7e7e7" d="m61.765 0.32468h1l-0.5-2-0.5 2z"/>
<path fill-rule="evenodd" fill="#695f00" d="m114.26-17.175-2 6h1.5l0.5-2h2l0.5 2h1.5l-2-6h-2zm1 1 0.5 2h-1l0.5-2z"/>
<g transform="translate(42.39,20.756)">
<path d="m-11.5-29.336 1-1 8.5625-0.000702 2.4375 2.4062v10.593l-1 1-10 0.000702-1-1v-11.999z"/>
<path fill="#fff" d="m-10.5-29.336h8v2h2v10h-10v-12z"/>
<path fill="#ebebeb" d="m-9.5-29.336 7.0625-0.000643v1.8331h1l-0.0625 9.1662-8.125 0.000643 0.125-10.999z"/>
<path fill="#c3c3c3" d="m-0.5-27.337v10.001l-1 0.000691v-10.001l1-0.001z"/>
<path fill-rule="evenodd" fill="#ebebeb" d="m-1.9688-29.49 0.031309 1.6528h1.5l-1.5313-1.6528z"/>
<path fill="#c3c3c3" d="m-9.5-18.337h9.0008l0.00062191 1h-9.0008l-0.0006219-1z"/>
</g>
</g>
<g transform="translate(17,9.441)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="matrix(-1,0,0,-1,150.26,7.2657)">
<path fill="#695f00" d="m14 8h-4.5l-3 3.5 3 3.5h4.5v-7z"/>
<path fill="url(#bb)" d="m13 9h-3l-2 2.5 2 2.5h3v-5z"/>
</g>
<g transform="translate(17.5,32.796)">
<g transform="translate(-6.4217,-3)">
<g transform="translate(23.343,12.25)">
<g transform="translate(-6.4217,-3)">
<path fill-opacity=".39216" d="m58.938 5.2103 1.0202 1.7205c3.2889-2.0002 7.5849-0.96655 9.6019 2.3168 1.1602 1.8886 1.1966 4.0675 0.49692 6.0029l1.883 0.67706c0.899-2.488 0.816-5.299-0.675-7.7264-2.59-4.2149-8.101-5.5462-12.327-2.9903z"/>
<path fill-opacity=".39216" d="m83.265-0.33824v2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5h-2c0 3.864 3.136 7 7 7s7-3.136 7-7-3.136-7-7-7z"/>
<path fill-opacity=".39216" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 75.931 -5.3382)"/>
<path fill-opacity=".39216" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 69.931 1.6618)"/>
<path fill-opacity=".39216" d="m83.265 14.412c-3.864 0-7 3.136-7 7s3.136 7 7 7 7-3.136 7-7-3.136-7-7-7zm0 2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z"/>
<path fill="#00009b" d="m82.265-1.3382v2c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5h-2c0 3.864 3.136 7 7 7s7-3.136 7-7-3.136-7-7-7z"/>
<g transform="translate(28.672,1.5)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<path d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 68.931 .66175)"/>
<path fill="url(#ah)" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.55556 0 0 .55556 71.681 2.9118)"/>
<path d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.88889 0 0 .88889 74.931 -6.3382)"/>
<path fill="url(#ah)" d="m10.5 6.75a2.25 2.25 0 1 1 -4.5 0 2.25 2.25 0 1 1 4.5 0z" transform="matrix(.55556 0 0 .55556 77.681 -4.0882)"/>
<path fill="#00009b" d="m57.857 4.2293 1.0202 1.7205c3.2889-2.0002 7.5849-0.96655 9.6019 2.3168 1.1602 1.8886 1.1966 4.0675 0.49692 6.0029l1.883 0.67706c0.899-2.489 0.816-5.2997-0.676-7.7274-2.589-4.2149-8.1-5.5462-12.326-2.9903z"/>
</g>
<g transform="translate(-6.4217,-3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g transform="translate(28,-66.442)">
<g transform="translate(-6.4217,-3)">
<g transform="translate(37.646,10.439)">
<g transform="translate(-.95462 3)">
<g transform="translate(-7.6918,14.561)">
<rect transform="rotate(-90)" height="9.5" width="1.9715" y="53.936" x="26.202" fill="#9b9b9b"/>
<path fill="#9b9b9b" d="m51.936-29.702c-1.656 0-3 1.344-3 3s1.344 3 3 3 3-1.344 3-3-1.344-3-3-3z"/>
<path fill-rule="evenodd" fill="#fff" d="m80.265 6.6618-1.5 3h1v4.5h1v-4.5h1l-1.5-3z"/>
<path fill="#d72e2e" d="m53.436-27.202v-1.5l9 0.02846v1.5l-9-0.02846z"/>
<path fill="#d72e2e" d="m51.436-30.702c-1.656 0-3 1.344-3 3s1.344 3 3 3 3-1.344 3-3-1.344-3-3-3z"/>
<path fill="url(#ba)" d="m51.436-29.202c0.828 0 1.5 0.672 1.5 1.5s-0.672 1.5-1.5 1.5-1.5-0.672-1.5-1.5 0.672-1.5 1.5-1.5z"/>
</g>
<g transform="translate(-7.6918,14.561)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-.95462 3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(37.646,10.439)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(38.843,33.662)">
<path fill-opacity=".39216" d="m7 7-0.0783 2-3.9217-3.5 3.9217-3.5 0.0783 2c4.9609 0 6.9609 1 6.9217 5.5h-3c0.039-2.5-1.9618-2.5-3.9226-2.5z"/>
<path d="m6 6-0.0783 2-3.9217-3.5 3.9217-3.5 0.0783 2c4.9609 0 6.9609 1 6.9217 5.5h-3c0.0382-2.5-1.9618-2.5-3.9226-2.5z"/>
<path fill="url(#bc)" d="m5.4609 5.5-0.039129 1-2.4609-2 2.4609-2 0.039129 1c3.5 0 6.4609 0 6.4609 4h-1.5c0-2-2.4609-2-4.9609-2z"/>
<path fill-opacity=".39216" d="m7.4217 10 0.078258-2 3.9217 3.5-3.922 3.5-0.0783-2c-4.9609 0-6.9609-1-6.9217-5.5h3c-0.0391 2.5 1.9609 2.5 3.9217 2.5z"/>
<path d="m6.9217 9 0.078258-2 3.9217 3.5-3.922 3.5-0.0783-2c-4.9609 0-6.9609-1-6.9217-5.5h3c-0.0397 2.5 1.9603 2.5 3.9211 2.5z"/>
<path fill="url(#bd)" d="m7.4609 9.5 0.039129-1 2.4609 2-2.4609 2-0.039129-1c-3.5 0-6.4609 0-6.4609-4h1.5c0 2 2.4609 2 4.9609 2z"/>
</g>
</g>
<g transform="translate(-6.4217,-3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(28,-66.442)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g transform="translate(-7.4217,-85.442)">
<g transform="translate(-9.4121,-24.051)">
<path fill="#9b9b9b" d="m61.765 28.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m60.677 27.662-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<g transform="translate(17,9.441)">
<g transform="matrix(.86106 0 0 .84785 -92.938 -57.767)">
<path fill="url(#an)" d="m88.48 79.007c-0.4972 0.004-0.97321 0.20187-1.3267 0.55155l-8.0943 8.0943c-0.74485 0.74515-0.74485 1.953 0 2.6981l12.134 12.149-12.134 12.149c-0.74485 0.74515-0.74485 1.953 0 2.6981l8.0943 8.0943c0.74515 0.74485 1.953 0.74485 2.6981 0l12.149-12.134 12.149 12.134c0.74516 0.74485 1.953 0.74485 2.6981 0l8.0943-8.0943c0.74485-0.74515 0.74485-1.953 0-2.6981l-12.134-12.149 12.134-12.149c0.74484-0.74515 0.74484-1.953-0.00001-2.6981l-8.0943-8.0943c-0.74515-0.74484-1.953-0.74484-2.6981 0.000002l-12.15 12.133-12.149-12.134c-0.36447-0.36063-0.85873-0.55941-1.3714-0.55154zm14.877 30.246c-0.35843-0.36228-0.84688-0.56613-1.3565-0.56613-0.50963 0-0.99808 0.20385-1.3565 0.56613h2.713z"/>
<path d="m-62.579 106.79 26.163-26.873 25.809 26.513-25.809-40.302-26.163 40.662z" clip-path="url(#ad)" fill-rule="evenodd" transform="matrix(.47701 0 0 .47701 119.28 73.879)" filter="url(#ae)" stroke="#000" stroke-width=".89430px"/>
<path opacity=".49813" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(0 .88927 -.88927 0 134.58 87.901)" filter="url(#a)" fill="url(#ao)"/>
<path opacity=".79026" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.87822 0 0 -.87822 60.74 135.27)" filter="url(#a)" fill="url(#ap)"/>
<path opacity=".49813" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(0 .80528 .80528 0 70.312 90.547)" filter="url(#a)" fill="url(#aq)"/>
<path opacity=".92135" fill="url(#ar)" d="m115.49 82.641-13.492 13.492-13.492-13.492-6.3669 6.3669 13.492 13.492-13.492 13.492 6.3669 6.3669 13.492-13.49 13.492 13.492 6.3669-6.3669-13.492-13.492 13.492-13.492-6.3669-6.3669z"/>
<path opacity=".79026" d="m88.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.80528 0 0 -.80528 44.327 134.59)" filter="url(#a)" fill="url(#as)"/>
<path d="m-62.579 106.79 26.163-26.873 25.809 26.513-25.809-40.302-26.163 40.662z" clip-path="url(#ad)" fill-rule="evenodd" transform="matrix(.47701 0 0 -.47701 119.28 130.9)" filter="url(#ae)" fill="url(#ay)"/>
<path opacity=".79026" d="m31.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.73233 0 0 .73233 65.336 71.467)" filter="url(#a)" fill="url(#at)"/>
<path opacity=".79026" d="m88.7 16 2.875-3.375c-1.051-1.696-3.935-2.288-5.937-0.313l2.812 3.376 0.25 0.312z" fill-rule="evenodd" transform="matrix(.75185 0 0 .75185 49.055 71.283)" filter="url(#a)" fill="url(#au)"/>
<path opacity=".92135" stroke-linejoin="round" d="m88.284 18.368-28.284 28.285-28.284-28.285-13.348 13.348 28.285 28.284-28.285 28.284 13.348 13.346 28.284-28.283 28.284 28.283 13.346-13.346-28.283-28.284 28.283-28.284-13.346-13.348z" transform="matrix(.47701 0 0 .47701 73.379 73.879)" stroke-dashoffset="1.0878" filter="url(#az)" stroke="url(#av)" stroke-linecap="round" stroke-width="2.7886" fill="none"/>
<path fill="url(#aw)" d="m88.501 82.61-0.35776 0.35776-6.0082 6.0082 6.2467-5.7697 13.619 12.928 13.362-12.928 5.3524 5.3523c-0.0468 0.24211-0.11002 0.47692-0.17889 0.71552l-5.7991 6.7531c-5.2301 2.6074-12.523 5.1794-20.363 5.1875l0.13416 0.13416c0.22495 0.003 0.44462 0.0149 0.6708 0.0149 7.8641 0 13.272-1.6195 18.515-4.2335l7.7072-7.7072c0.0317-0.10994 0.0612-0.21853 0.0894-0.32795 0.0331-0.12804 0.0642-0.25702 0.0894-0.38757l-6.0977-6.0977-0.35776 0.35776-13.12 13.177-13.499-13.525z"/>
<path fill="url(#ax)" d="m88.509 82.643-6.366 6.366 12.373 12.373c0.22495 0.003 0.44463 0.0149 0.6708 0.0149 7.8641 0 13.272-1.6195 18.515-4.2335l7.7072-7.7072c0.0689-0.2386 0.13207-0.47342 0.17889-0.71552l-6.1-6.095-13.49 13.491-13.491-13.491z"/>
<path fill="url(#be)" d="m88.501 82.61-0.35776 0.35776-6.0082 6.0082 6.2467-5.7697 13.622 13.828-0.003-0.89994 0.005 0.893 13.357-13.821 5.3524 5.3523c-0.0468 0.24211-0.11002 0.47692-0.17889 0.71552l-5.7991 6.7531c-5.2301 2.6074-12.523 5.1794-20.363 5.1875l0.13416 0.13416c0.22495 0.003 0.44462 0.0149 0.6708 0.0149 7.8641 0 13.272-1.6195 18.515-4.2335l7.7072-7.7072c0.0317-0.10994 0.0612-0.21853 0.0894-0.32795 0.0331-0.12804 0.0642-0.25702 0.0894-0.38757l-6.0977-6.0977-0.35776 0.35776-13.12 13.177-13.499-13.525z"/>
</g>
</g>
<g transform="translate(17,9.441)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-9.4121,-24.051)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(2.7646,29.162)">
<g fill-opacity=".39216" transform="translate(.5 .5)">
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
</g>
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path fill="#9b9aff" d="m0.5 15-1.5 1.5h1v4.5h1v-4.5h1l-1.5-1.5z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path fill="#9b9aff" d="m0.5 26-1.5-1.5h1v-3.5h1v3.5h1l-1.5 1.5z"/>
<path fill="#9b9aff" d="m-5 20.5 1.5 1.5v-1h4.5v-1h-4.5v-1l-1.5 1.5z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
<path fill="#9b9aff" d="m6 20.5-1.5 1.5v-1h-3.5v-1h3.5v-1l1.5 1.5z"/>
<path fill="url(#am)" d="m0.5 15-1.5 1.5h1v3.5h-3.5v-1l-1.5 1.5 1.5 1.5v-1h3.5v3.5h-1l1.5 1.5 1.5-1.5h-1v-3.5h3.5v1l1.5-1.5-1.5-1.5v1h-3.5v-3.5h1l-1.5-1.5z"/>
</g>
</g>
<g transform="translate(-7.4217,-85.442)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(83.843,-42.78)">
<g fill-opacity=".39216" transform="translate(.5 .5)">
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
</g>
<path d="m-6 20.5 3 3.5v-2h4v-3h-4v-2l-3 3.5z"/>
<path d="m0.5 14-3.5 3h2v4h3v-4h2l-3.5-3z"/>
<path fill="#9b9aff" d="m0.5 15-1.5 1.5h1v4.5h1v-4.5h1l-1.5-1.5z"/>
<path d="m0.5 27-3.5-3h2v-3h3v3h2l-3.5 3z"/>
<path fill="#9b9aff" d="m0.5 26-1.5-1.5h1v-3.5h1v3.5h1l-1.5 1.5z"/>
<path fill="#9b9aff" d="m-5 20.5 1.5 1.5v-1h4.5v-1h-4.5v-1l-1.5 1.5z"/>
<path d="m7 20.5-3 3.5v-2h-3v-3h3v-2l3 3.5z"/>
<path fill="#9b9aff" d="m6 20.5-1.5 1.5v-1h-3.5v-1h3.5v-1l1.5 1.5z"/>
<path fill="url(#am)" d="m0.5 15-1.5 1.5h1v3.5h-3.5v-1l-1.5 1.5 1.5 1.5v-1h3.5v3.5h-1l1.5 1.5 1.5-1.5h-1v-3.5h3.5v1l1.5-1.5-1.5-1.5v1h-3.5v-3.5h1l-1.5-1.5z"/>
</g>
<g transform="translate(-29.715,-79.978)">
<rect y="2.7977" width="1" x="127.94" height="1"/>
<rect y="2.7977" width="1" x="130.94" height="1"/>
<rect y="2.7977" width="1" x="133.94" height="1"/>
<rect y="2.7977" width="1" x="136.94" height="1"/>
<rect y="2.7977" width="1" x="139.94" height="1"/>
<rect y="2.7977" width="1" x="142.94" height="1"/>
<rect y="5.7977" width="1" x="127.94" height="1"/>
<rect y="5.7977" width="1" x="130.94" height="1"/>
<rect y="5.7977" width="1" x="133.94" height="1"/>
<rect y="5.7977" width="1" x="136.94" height="1"/>
<rect y="5.7977" width="1" x="139.94" height="1"/>
<rect y="5.7977" width="1" x="142.94" height="1"/>
<g transform="translate(16.536 .035544)">
<rect y="14.869" width="1" x="112.23" height="5"/>
<rect transform="rotate(-45)" height="4" width="1" y="92.114" x="67.258"/>
<rect transform="matrix(.70711 .70711 .70711 -.70711 0 0)" height="4" width="1" y="67.551" x="91.822"/>
<rect transform="scale(-1,1)" height="5" width="1" y="14.798" x="-127.19"/>
<rect transform="matrix(-.70711 -.70711 -.70711 .70711 0 0)" height="4" width="1" y="-77.208" x="-102.01"/>
<rect transform="rotate(135)" height="4" width="1" y="-101.72" x="-77.501"/>
<path d="m125.69 16.833v1l-11.929 0.03558v-1l11.93-0.036z"/>
</g>
<g transform="translate(16.536 .035544)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-29.715,-79.978)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(23.343,12.25)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(-6.4217,-3)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(17.5,32.796)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g fill-rule="evenodd" transform="translate(129.98,-8.8062)">
<path fill-opacity=".39216" d="m13.961-9.5 0.039-2.896 3.9609 4.3961-4 4.5v-3c-3.5 0-5.4609-2-5.4609-6h2.9609c0 2 1 3 2.5 3z"/>
<g transform="translate(1,-2.4551)">
<path d="m12-8.441 0.03913-2.8961 3.9609 4.3961-4 4.5v-3c-3.5 0-5.4609-2-5.4609-6h2.9609c0 2 1 3 2.5 3z"/>
<path fill="#00bd00" d="m12.5-7.941v-1.5l2.5 2.5-2.5 3v-2c-2 0-5-0.5-5-4.5h1.5c0 2 2 2.5 3.5 2.5z"/>
</g>
</g>
</g>
<g transform="translate(-22.5,11.455)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<g transform="translate(36,8.059)">
<path fill="#9b9b9b" d="m66.265 20.162-0.000001-15h1.5l0.000001 15h-1.5z"/>
<path fill="#9b9b9b" d="m59.265 11.162 15-0.000001v1.5l-15 0.000002v-1.5z"/>
<rect transform="rotate(-90)" height="1" width="1" y="82.265" x="-8.1618" fill="#d72e2e"/>
<rect height="1" width="1" y="9.1618" x="82.265" fill="#006900"/>
<rect height="1" width="1" y="11.162" x="82.265" fill="#000069"/>
<path fill="#007d00" d="m58.265 10.162 15-0.000001v1.5l-15 0.000002v-1.5z"/>
<path fill="#007d00" d="m65.265 19.162-0.000001-15h1.5l0.000001 15h-1.5z"/>
</g>
<g transform="translate(36,8.059)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</g>
<g transform="translate(17,9.441)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
<path fill="#9b9b9b" d="m112.85 17.611-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
<path fill="#695f00" d="m111.76 16.611-0.5 1.5h-2l3-8h2l3 8h-2l-0.5-1.5m-0.5-1.5-0.91211-2.9492-1.0879 2.9492"/>
</g>
<g transform="translate(0,32)">
<rect fill-opacity="0" height="16" width="16" y="0" x="0"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -5,13 +5,14 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48"
width="48"
version="1.1"
id="svg2"
inkscape:version="0.47 r22583"
inkscape:version="0.48.1 "
sodipodi:docname="cursor.svg">
<metadata
id="metadata30">
@ -21,7 +22,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -35,14 +36,14 @@
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="949"
inkscape:window-height="968"
id="namedview28"
showgrid="false"
inkscape:zoom="4.9166667"
inkscape:cx="24"
inkscape:cy="23.59322"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:zoom="16.970389"
inkscape:cx="18.500421"
inkscape:cy="22.178251"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<defs
@ -56,7 +57,8 @@
r="17.5">
<stop
offset="0"
id="stop7" />
id="stop7"
style="stop-color:#748b06;stop-opacity:1;" />
<stop
stop-opacity="0"
offset="1"
@ -72,29 +74,59 @@
<stop
stop-color="#fff"
offset="0"
id="stop12" />
id="stop12"
style="stop-color:#d0df86;stop-opacity:1;" />
<stop
stop-color="#b6b6b6"
offset="1"
id="stop14" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#d"
id="radialGradient2993"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-4.6642765,0,5.1803514e-8,3.6277497,94.665752,-79.397716)"
cx="17.814"
cy="24.149"
r="9.125" />
<radialGradient
inkscape:collect="always"
xlink:href="#c"
id="radialGradient2996"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1134389,0,0,0.28779166,-0.84065924,32.08251)"
cx="25.375"
cy="36.812"
r="17.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#d"
id="radialGradient3030"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-4.6642765,0,5.1803514e-8,3.6277497,94.665752,-79.397716)"
cx="17.814"
cy="24.149"
r="9.125" />
<radialGradient
inkscape:collect="always"
xlink:href="#d"
id="radialGradient3801"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-4.095565,0,4.5487152e-8,3.0004846,88.215274,-61.085103)"
cx="17.814"
cy="24.149"
r="9.125" />
</defs>
<g
transform="matrix(0.75896533,0,0,0.72134196,-34.405103,6.812085)"
id="g16">
<path
d="m 42.875,36.812 a 17.5,7.9375 0 1 1 -35,0 17.5,7.9375 0 1 1 35,0 z"
transform="matrix(1.0451,0,0,0.64275,55.941,16.987)"
display="block"
id="path18"
style="opacity:0.39872999;fill:url(#c);display:block" />
<path
d="m 64.736,2.1869 28.149,23.925 -12.833,0.363 c 0,0 5.3814,9.7875 5.3814,9.7875 1.6558,4.35 -5.7954,5.9813 -7.0373,2.7188 l -4.9675,-9.7875 -9.1071,8.5188 0.41396,-35.525 z"
id="path20"
style="fill:url(#d);fill-rule:evenodd;stroke:#555753;stroke-width:1.54949999;stroke-linejoin:round" />
<path
d="m 66.652,6.352 21.438,18.119 -10.461,0.77732 6.1616,11.247 c 1.1934,2.1784 -2.7263,3.31 -3.6513,1.5467 l -6.0985,-11.625 -7.8266,7.0771 z"
id="path22"
style="fill:none;stroke:#ffffff;stroke-width:2.04999995" />
</g>
<path
inkscape:connector-curvature="0"
style="opacity:0.73076923;fill:url(#radialGradient2996);display:block"
id="path18"
display="block"
d="m 46.898034,42.676811 a 19.485181,5.0363699 0 0 1 -38.9703619,0 19.485181,5.0363699 0 1 1 38.9703619,0 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#radialGradient3801);fill-rule:evenodd;stroke:#444643;stroke-width:2.13050127;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path20"
d="M 13.512843,8.6741031 39.845885,28.208402 27.840771,28.504784 c 0,0 5.034234,7.991304 5.034234,7.991304 1.54898,3.551691 -5.421525,4.883616 -6.583308,2.219848 l -4.647035,-7.991304 -8.519579,6.955435 0.387254,-29.005474 z" />
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -14,7 +14,7 @@
height="26"
id="svg3019"
version="1.1"
inkscape:version="0.47 r22583"
inkscape:version="0.48.2 r9819"
sodipodi:docname="delete_association.svg">
<defs
id="defs3021">
@ -53,6 +53,33 @@
id="linearGradient3017"
xlink:href="#linearGradient3165"
inkscape:collect="always" />
<filter
id="a"
color-interpolation-filters="sRGB">
<feGaussianBlur
stdDeviation="0.68606254"
id="feGaussianBlur3402" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3165"
id="linearGradient3044"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0243903,0,0,1.0355608,1.4390244,1026.5799)"
x1="10"
y1="2.5"
x2="15.409858"
y2="21.491209" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3165"
id="linearGradient3046"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0243903,0,0,1.0355608,1.9512195,1026.5799)"
x1="9.5"
y1="2.5"
x2="14.909858"
y2="21.491209" />
</defs>
<sodipodi:namedview
id="base"
@ -61,19 +88,20 @@
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="3.9910119"
inkscape:cy="13.98951"
inkscape:zoom="12.885186"
inkscape:cx="-1.3216226"
inkscape:cy="12.989974"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1280"
inkscape:window-height="949"
inkscape:window-width="1600"
inkscape:window-height="841"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
inkscape:snap-grids="false"
inkscape:snap-center="true">
<inkscape:grid
type="xygrid"
id="grid3027"
@ -99,17 +127,268 @@
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1026.3622)">
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3017);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 21.354742,1050.0572 c 0,0 -5.437059,-13.8984 -19.0715315,-18.4087 l 2.2098777,-3.2863 c 13.5191078,4.4033 19.0384878,20.3036 19.0384878,20.3036 z"
id="path2205"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3186);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 3.9107143,1046.1662 4.0764373,3.4639 C 14.047658,1033.9761 25,1030.3622 25,1030.3622 l -2,-1.1786 c 0,0 -11.706729,2.1185 -19.0892857,16.9826 z"
id="path2408"
sodipodi:nodetypes="ccccc" />
<g
id="g3664"
style="opacity:0.584">
<g
id="g3404"
transform="matrix(0.59111634,0,0,0.75386533,-1.8633707,1020.3586)">
<g
id="g3406"
transform="translate(-31.608,-25.562)"
style="opacity:0.44530998999999999;filter:url(#a)">
<g
id="g3408"
transform="matrix(1,0,0,1.5171,35.316,16.243)">
<rect
id="rect3410"
height="3.8562"
x="15.085"
width="7.6531"
y="20.298" />
<path
id="path3412"
d="m 22.739,17.406 5.5806,4.8202 -5.5806,4.8202 v -9.64 z"
inkscape:connector-curvature="0"
style="fill-rule:evenodd" />
</g>
<g
id="g3414"
transform="translate(35.312,28.744)">
<rect
id="rect3416"
height="23.136999"
x="30.750999"
width="10.933"
y="10.551" />
<rect
id="rect3418"
height="30.849001"
x="35.124001"
width="2.1866"
y="6.6953001" />
<rect
id="rect3420"
height="3.8780999"
x="32.937"
width="6.5598001"
y="12.48" />
<rect
id="rect3422"
height="1.9281"
x="32.937"
width="6.5598001"
y="16.336" />
<rect
id="rect3424"
height="1.9281"
x="32.937"
width="6.5598001"
y="20.191999" />
<rect
id="rect3426"
height="1.9281"
x="32.937"
width="6.5598001"
y="18.264" />
<rect
id="rect3428"
height="2.8281"
x="32.937"
width="6.5598001"
y="22.120001" />
<rect
id="rect3430"
height="4.7561998"
x="32.937"
width="6.5598001"
y="26.940001" />
</g>
<g
id="g3432"
transform="translate(35.312,28.001)">
<rect
id="rect3434"
x="-13.381"
y="18.884001"
width="2.2397001"
height="6.7192001"
transform="matrix(0.9134,-0.40706,0.9134,0.40706,0,0)" />
<path
id="path3436"
d="m 1.5335,18.024 2.0458,0.91171 9.6296,-3.8681 -2.0458,-0.91172 -9.6296,3.8681 z"
inkscape:connector-curvature="0" />
<path
id="path3438"
d="M 1.5335,18.291 3.5793,17.38 13.209,21.248 11.163,22.159 1.5335,18.291 z"
inkscape:connector-curvature="0" />
<path
id="path3440"
d="m 1.1825,24.471 2.0458,0.91172 9.6296,-3.8681 -2.0458,-0.91171 -9.6296,3.8681 z"
inkscape:connector-curvature="0" />
<path
id="path3442"
d="m 1.1922,31.107 2.0458,-0.912 4.6062,2.36 -2.0457,0.912 -4.6063,-2.36 z"
inkscape:connector-curvature="0" />
<rect
id="rect3444"
height="5.7842002"
x="5.5558"
width="2.1866"
y="32.502998" />
<rect
id="rect3446"
height="5.7842002"
x="5.5558"
width="2.1866"
y="7.4376998" />
<path
id="path3448"
d="m 1.5335,24.726 2.0458,-0.912 9.6297,3.869 -2.046,0.911 -9.6295,-3.868 z"
inkscape:connector-curvature="0" />
<path
id="path3450"
d="m 1.1825,30.906 2.0458,0.91171 9.6296,-3.8681 -2.0458,-0.91171 -9.6296,3.8681 z"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g3452"
transform="matrix(1,0,0,1.5171,2.2315,-11.122)">
<rect
id="rect3454"
height="3.8562"
x="15.085"
width="7.6531"
y="20.298" />
<path
id="path3456"
d="m 22.739,17.406 5.5806,4.8202 -5.5806,4.8202 v -9.64 z"
inkscape:connector-curvature="0"
style="fill-rule:evenodd" />
</g>
<g
id="g3458"
transform="translate(2.2274,1.3789)">
<rect
id="rect3460"
height="23.136999"
x="30.750999"
width="10.933"
y="10.551" />
<rect
id="rect3462"
height="30.849001"
x="35.124001"
width="2.1866"
y="6.6953001" />
<rect
id="rect3464"
x="32.937"
y="12.48"
width="6.5598001"
height="3.8780999"
style="fill:#4f82ff" />
<rect
id="rect3466"
x="32.937"
y="16.336"
width="6.5598001"
height="1.9281"
style="fill:#ff0000" />
<rect
id="rect3468"
x="32.937"
y="20.191999"
width="6.5598001"
height="1.9281"
style="fill:#ff0000" />
<rect
id="rect3470"
x="32.937"
y="18.264"
width="6.5598001"
height="1.9281"
style="fill:#4f82ff" />
<rect
id="rect3472"
x="32.937"
y="22.120001"
width="6.5598001"
height="2.8281"
style="fill:#4f82ff" />
<rect
id="rect3474"
x="32.937"
y="26.940001"
width="6.5598001"
height="4.7561998"
style="fill:#4f82ff" />
</g>
<g
id="g3476"
transform="translate(2.2274,0.6364)">
<rect
id="rect3478"
x="-13.381"
y="18.884001"
width="2.2397001"
height="6.7192001"
transform="matrix(0.9134,-0.40706,0.9134,0.40706,0,0)" />
<path
id="path3480"
d="m 1.5335,18.024 2.0458,0.91171 9.6296,-3.8681 -2.0458,-0.91172 -9.6296,3.8681 z"
inkscape:connector-curvature="0" />
<path
id="path3482"
d="M 1.5335,18.291 3.5793,17.38 13.209,21.248 11.163,22.159 1.5335,18.291 z"
inkscape:connector-curvature="0" />
<path
id="path3484"
d="m 1.1825,24.471 2.0458,0.91172 9.6296,-3.8681 -2.0458,-0.91171 -9.6296,3.8681 z"
inkscape:connector-curvature="0" />
<path
id="path3486"
d="m 1.1922,31.107 2.0458,-0.912 4.6062,2.36 -2.0457,0.912 -4.6063,-2.36 z"
inkscape:connector-curvature="0" />
<rect
id="rect3488"
height="5.7842002"
x="5.5558"
width="2.1866"
y="32.502998" />
<rect
id="rect3490"
height="5.7842002"
x="5.5558"
width="2.1866"
y="7.4376998" />
<path
id="path3492"
d="m 1.5335,24.726 2.0458,-0.912 9.6297,3.869 -2.046,0.911 -9.6295,-3.868 z"
inkscape:connector-curvature="0" />
<path
id="path3494"
d="m 1.1825,30.906 2.0458,0.91171 9.6296,-3.8681 -2.0458,-0.91171 -9.6296,3.8681 z"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
id="g3040"
transform="matrix(0.9050526,0,0,0.88011666,1.7441226,127.77087)">
<path
sodipodi:nodetypes="ccccc"
id="path2205"
d="m 21.354742,1050.0572 c 0,0 -5.437059,-13.8984 -19.0715315,-18.4087 l 2.2098777,-3.2863 c 13.5191078,4.4033 19.0384878,20.3036 19.0384878,20.3036 z"
style="fill:url(#linearGradient3044);fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccc"
id="path2408"
d="m 3.9107143,1046.1662 4.0764373,3.4639 C 14.047658,1033.9761 25,1030.3622 25,1030.3622 l -2,-1.1786 c 0,0 -11.706729,2.1185 -19.0892857,16.9826 z"
style="fill:url(#linearGradient3046);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,115 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26"
height="26"
id="svg3019"
version="1.1"
inkscape:version="0.48.1 r9760"
sodipodi:docname="del_body.svg">
<defs
id="defs3021">
<linearGradient
id="linearGradient3165">
<stop
style="stop-color:#f68273;stop-opacity:1;"
offset="0"
id="stop3167" />
<stop
id="stop3165"
offset="0.5"
style="stop-color:#cd2923;stop-opacity:1;" />
<stop
style="stop-color:#8c0000;stop-opacity:1"
offset="1"
id="stop3169" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3165"
id="linearGradient3186"
x1="9.5"
y1="2.5"
x2="14.909858"
y2="21.491209"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0243903,0,0,1.0355608,1.9512195,1026.5799)" />
<linearGradient
y2="21.491209"
x2="15.409858"
y1="2.5"
x1="10"
gradientTransform="matrix(1.0243903,0,0,1.0355608,1.4390244,1026.5799)"
gradientUnits="userSpaceOnUse"
id="linearGradient3017"
xlink:href="#linearGradient3165"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="3.9910119"
inkscape:cy="14.078796"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="1600"
inkscape:window-height="876"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid3027"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata3024">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1026.3622)">
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3017);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 21.354742,1050.0572 c 0,0 -5.437059,-13.8984 -19.0715315,-18.4087 l 2.2098777,-3.2863 c 13.5191078,4.4033 19.0384878,20.3036 19.0384878,20.3036 z"
id="path2205"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3186);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 3.9107143,1046.1662 4.0764373,3.4639 C 14.047658,1033.9761 25,1030.3622 25,1030.3622 l -2,-1.1786 c 0,0 -11.706729,2.1185 -19.0892857,16.9826 z"
id="path2408"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,255 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48px"
id="svg7299"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:version="0.48.1 "
sodipodi:docname="dialog-warning.svg"
sodipodi:version="0.32"
width="48px"
version="1.1">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title />
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>unsorted</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org/">
<dc:title>Open Clip Art Library, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors, Source: GNOME-Colors</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:language>en</dc:language>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs7301">
<filter
height="1.8313844"
id="filter11277"
inkscape:collect="always"
width="1.0566853"
x="-0.02834265"
y="-0.4156922">
<feGaussianBlur
id="feGaussianBlur11279"
inkscape:collect="always"
stdDeviation="0.51961525" />
</filter>
<filter
height="3.4941532"
id="filter11267"
inkscape:collect="always"
width="1.1700559"
x="-0.08502795"
y="-1.2470766">
<feGaussianBlur
id="feGaussianBlur11269"
inkscape:collect="always"
stdDeviation="1.5588457" />
</filter>
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient11223"
x1="4.1914001"
x2="47.319698"
y1="11.1133"
y2="56.052299">
<stop
id="stop11225"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop11227"
offset="1"
style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.646153,0,-0.00281268,0.671002,2.320937,4.636421)"
gradientUnits="userSpaceOnUse"
id="linearGradient11177"
inkscape:collect="always"
x1="22.858232"
x2="23.075396"
xlink:href="#linearGradient11223"
y1="27.427332"
y2="77.315834" />
<linearGradient
id="linearGradient5252">
<stop
id="stop5256"
offset="0"
style="stop-color:#fed496;stop-opacity:1;" />
<stop
id="stop5254"
offset="1"
style="stop-color:#fcaf3e;stop-opacity:1;" />
</linearGradient>
<radialGradient
cx="21.080828"
cy="27.925562"
fx="21.080828"
fy="27.925562"
gradientTransform="matrix(2.794628,0,0,2.6342217,-37.832243,-46.946604)"
gradientUnits="userSpaceOnUse"
id="radialGradient11221"
inkscape:collect="always"
r="8.803154"
xlink:href="#linearGradient5252" />
<linearGradient
id="linearGradient5402"
inkscape:collect="always">
<stop
id="stop5404"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5406"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<radialGradient
cx="79.377068"
cy="44.534161"
fx="79.377068"
fy="44.534161"
gradientTransform="matrix(0.5111798,0,0,0.4916103,-18.445765,-11.688203)"
gradientUnits="userSpaceOnUse"
id="radialGradient11181"
inkscape:collect="always"
r="50.66839"
xlink:href="#linearGradient5402" />
</defs>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="1.0"
id="base"
inkscape:current-layer="layer1"
inkscape:cx="24.055179"
inkscape:cy="24.019671"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-height="688"
inkscape:window-width="641"
inkscape:window-x="260"
inkscape:window-y="167"
inkscape:zoom="7"
pagecolor="#ffffff"
showgrid="true"
inkscape:window-maximized="0" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<rect
height="3"
id="rect11271"
rx="3.25"
ry="1.5"
style="opacity:0.3;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11277);enable-background:new"
transform="matrix(1,0,0,1.3333333,-296,-80.833333)"
width="44"
x="298"
y="91" />
<rect
height="3"
id="rect11249"
rx="3.25"
ry="1.5"
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;filter:url(#filter11267);enable-background:new"
transform="matrix(1,0,0,1.5833333,-296,-103.95833)"
width="44"
x="298"
y="91" />
<g
id="g11137"
style="display:inline;enable-background:new"
transform="matrix(1.6642077,0,0,1.7057624,-11.330187,-28.512243)">
<g
id="g11139"
style="display:inline"
transform="matrix(0.01508284,0,0,0.01391344,34.42474,40.95434)" />
<g
id="g11147"
style="display:inline"
transform="matrix(0.01508284,0,0,0.01391344,34.42474,40.95434)" />
<path
d="M 34.661531,40.883147 22.706683,18.443515 c -0.343618,-0.623323 -0.965385,-0.969613 -1.657845,-0.969613 -0.692462,0 -1.317417,0.415547 -1.666257,1.038871 L 7.5167568,40.952406 c -0.2793053,0.554065 -0.282496,1.315904 0.061415,1.869969 0.3439093,0.554065 0.8967188,0.831097 1.5891806,0.831097 l 23.8206686,0 c 0.69246,0 1.317126,-0.34629 1.596433,-0.900356 0.34855,-0.554065 0.35145,-1.246645 0.07708,-1.869969 z"
id="path11155"
inkscape:r_cx="true"
inkscape:r_cy="true"
style="fill:#f57900;fill-opacity:1;fill-rule:nonzero;stroke:#ce5c00;stroke-width:0.63829809;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0" />
<path
d="m 12.350235,39.643509 c -0.180686,0.297681 -0.0023,0.535827 0.296738,0.535827 l 16.865083,0 c 0.299028,0 0.47946,-0.238146 0.301316,-0.535827 L 21.328843,23.806857 c -0.178145,-0.297681 -0.417365,-0.297681 -0.538248,0 l -8.44036,15.836652 z"
id="path11157"
inkscape:r_cx="true"
inkscape:r_cy="true"
style="fill:url(#radialGradient11221);fill-opacity:1;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
d="M 33.589554,40.372476 22.40647,19.408588 c -0.476278,-0.903101 -0.647108,-1.192852 -1.370915,-1.192852 -0.62253,0 -0.948257,0.421984 -1.398129,1.274438 L 8.5784665,40.437181 c -0.6421717,1.176051 -0.7109747,1.482604 -0.4018775,2.000231 0.3090955,0.517628 0.7059594,0.489435 2.172334,0.5232 l 21.735721,0 c 1.365168,0.01688 1.672683,-0.08716 1.923863,-0.604785 0.313433,-0.517629 0.180116,-0.928304 -0.418953,-1.983351 z"
id="path11159"
inkscape:r_cx="true"
inkscape:r_cy="true"
sodipodi:nodetypes="ccsccscccc"
style="opacity:0.5;fill:none;stroke:url(#linearGradient11177);stroke-width:0.63829821;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0" />
<g
id="g11161"
inkscape:r_cx="true"
inkscape:r_cy="true"
style="fill:#121312;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.98018837;stroke-miterlimit:4"
transform="matrix(0.561759,0,0,0.570854,7.608308,17.60115)">
<path
d="m 23.9,36.5 c -1.3,0 -2.3,-1 -2.3,-2.3 0,-1.4 0.9,-2.3 2.3,-2.3 1.4,0 2.2,0.9 2.3,2.3 0,1.3 -0.9,2.3 -2.3,2.3 l 0,0 z M 23.167629,29.066754 21.9,19.1 l 4,0 -1.267629,11.609518 -1.464742,-1.642764 z"
id="path11163"
inkscape:r_cx="true"
inkscape:r_cy="true"
sodipodi:nodetypes="csscccccccc"
style="fill:#121312;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
</g>
</g>
<path
d="M 23.982235,3.0642796 C 22.983955,3.0642796 22.084515,3.6634646 21.581625,4.5632536 L 6.9499354,32.262453 L 37.310435,25.017218 L 26.371965,4.4600786 C 25.876595,3.5602906 24.980525,3.0642796 23.982235,3.0642796 z"
id="path11179"
style="opacity:0.47126435;fill:url(#radialGradient11181);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.63829809;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -13,7 +13,7 @@
version="1.1"
viewBox="0 0 48 48"
id="svg2"
inkscape:version="0.47 r22583"
inkscape:version="0.48.1 "
sodipodi:docname="export.svg">
<metadata
id="metadata133">
@ -23,7 +23,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -37,14 +37,14 @@
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="949"
inkscape:window-height="968"
id="namedview131"
showgrid="false"
inkscape:zoom="4.9166667"
inkscape:cx="52.043263"
inkscape:cy="23.59322"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:zoom="15.902799"
inkscape:cx="14.345661"
inkscape:cy="26.023752"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<defs
@ -302,7 +302,8 @@
<stop
stop-color="#00537d"
offset="0"
id="stop12-2" />
id="stop12-2"
style="stop-color:#c1b7df;stop-opacity:1;" />
<stop
stop-color="#186389"
offset=".0151"
@ -402,7 +403,8 @@
<stop
stop-color="#fff"
offset="0"
id="stop53-1" />
id="stop53-1"
style="stop-color:#e8f71e;stop-opacity:1;" />
<stop
stop-color="#555753"
offset="1"
@ -418,7 +420,8 @@
<stop
stop-color="#fff"
offset="0"
id="stop58-0" />
id="stop58-0"
style="stop-color:#23ff39;stop-opacity:1;" />
<stop
stop-color="#393b38"
offset="1"
@ -477,7 +480,8 @@
r="63.911999">
<stop
offset="0"
id="stop7-2" />
id="stop7-2"
style="stop-color:#1212f7;stop-opacity:1;" />
<stop
stop-opacity="0"
offset="1"
@ -495,7 +499,7 @@
stop-color="#646464"
offset="0"
id="stop89"
style="stop-color:#4e4e4e;stop-opacity:1;" />
style="stop-color:#272727;stop-opacity:1;" />
<stop
stop-color="#7e7e7e"
offset="0"
@ -529,7 +533,8 @@
<stop
stop-color="#fff"
offset="0"
id="stop82-1" />
id="stop82-1"
style="stop-color:#60d7b7;stop-opacity:1;" />
<stop
stop-color="#fff"
offset=".5"
@ -580,141 +585,132 @@
y1="47.403999"
x2="4"
y2="47.403999" />
<linearGradient
inkscape:collect="always"
xlink:href="#k-7"
id="linearGradient4075"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.39486557,0,0,0.40094471,18.078162,-1.517356)"
x1="64.129997"
y1="56.230999"
x2="2.7471001"
y2="56.230999" />
<linearGradient
inkscape:collect="always"
xlink:href="#n-3"
id="linearGradient4087"
x1="19.595039"
y1="18.522619"
x2="46.445431"
y2="18.522619"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#q-9"
id="radialGradient3112"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.37078,0,0,0.36885,43.685661,-0.6808313)"
cx="102"
cy="112.3"
r="139.56" />
<linearGradient
inkscape:collect="always"
xlink:href="#o-4"
id="linearGradient3131"
gradientUnits="userSpaceOnUse"
x1="96"
y1="104"
x2="88"
y2="96"
gradientTransform="matrix(-0.37078,0,0,0.36885,43.685661,-0.6808313)" />
<linearGradient
inkscape:collect="always"
xlink:href="#n-3"
id="linearGradient3134"
gradientUnits="userSpaceOnUse"
x1="95"
y1="103"
x2="87.292999"
y2="95.292999"
gradientTransform="matrix(-0.37078,0,0,0.36885,43.685661,-0.6808313)" />
<linearGradient
inkscape:collect="always"
xlink:href="#m-8"
id="linearGradient3137"
gradientUnits="userSpaceOnUse"
x1="95"
y1="103"
x2="86.586998"
y2="94.586998"
gradientTransform="matrix(-0.37078,0,0,0.36885,43.685661,-0.6808313)" />
<linearGradient
inkscape:collect="always"
xlink:href="#l-9"
id="linearGradient3140"
gradientUnits="userSpaceOnUse"
x1="94.344002"
y1="102.34"
x2="86.536003"
y2="94.537003"
gradientTransform="matrix(-0.37078,0,0,0.36885,43.685661,-0.6808313)" />
</defs>
<g
transform="matrix(0.36018,0,0,0.36249,-48.695995,-2.2897492)"
id="g97">
<g
transform="translate(0,4)"
id="g99">
<path
d="m 16,4 c -2.206,0 -4,1.794 -4,4 v 110 c 0,3.309 2.691,6 6,6 h 59.172 c 1.299,0 2.545,-0.487 3.641,-1.354 0.128,-0.053 0.257,-0.107 0.257,-0.107 0.098,-0.073 12.134,-10.086 17.759,-15.711 5.374,-5.371 14.61,-16.425 15.646,-17.667 0.91,-0.882 1.52,-2.439 1.52,-3.989 V 8 c 0,-2.206 -1.794,-4 -4,-4 h -96 z"
id="path101"
style="opacity:0.1" />
<path
d="m 16,5 c -1.654,0 -3,1.346 -3,3 v 110 c 0,2.757 2.243,5 5,5 h 59.172 c 1.189,0 2.282,-0.47 3.182,-1.229 0.042,-0.021 0.09,-0.014 0.129,-0.042 0.079,-0.06 12.017,-9.986 17.639,-15.608 5.312,-5.31 14.55,-16.358 15.585,-17.601 0.785,-0.764 1.294,-2.043 1.294,-3.349 V 8 c 0,-1.654 -1.346,-3 -3,-3 h -96 z"
id="path103"
style="opacity:0.15" />
<path
d="m 16,6 c -1.103,0 -2,0.897 -2,2 v 110 c 0,2.206 1.794,4 4,4 h 59.172 c 1.068,0 2.072,-0.416 2.828,-1.172 -0.035,0.036 -0.074,0.068 -0.114,0.099 0.076,-0.057 11.96,-9.944 17.528,-15.513 5.265,-5.264 14.49,-16.294 15.524,-17.534 0.65,-0.644 1.06,-1.65 1.06,-2.708 V 8 c 0,-1.103 -0.897,-2 -2,-2 h -96 z"
id="path105"
style="opacity:0.2" />
<path
d="m 16,7 c -0.552,0 -1,0.448 -1,1 v 110 c 0,1.654 1.346,3 3,3 h 59.172 c 0.801,0 1.555,-0.312 2.121,-0.879 0.052,-0.038 11.945,-9.945 17.414,-15.414 5.469,-5.469 15.376,-17.362 15.476,-17.481 0.51,-0.499 0.82,-1.253 0.82,-2.054 V 8 c 0,-0.552 -0.447,-1 -1,-1 h -96 z"
id="path107"
style="opacity:0.25" />
</g>
<path
d="m 16,12 v 110 c 0,1.104 0.896,2 2,2 h 59.172 c 0.53,0 1.039,-0.211 1.414,-0.586 L 111.41,90.602 C 111.79,90.227 112,89.718 112,89.188 V 12.016 H 16 z"
id="path109"
style="fill:url(#p)" />
<path
d="m 18,13 c -0.551,0 -1,0.449 -1,1 v 108 c 0,0.552 0.449,1 1,1 h 59.172 c 0.263,0 0.521,-0.106 0.707,-0.293 L 110.71,89.867 C 110.89,89.68 111,89.423 111,89.16 V 13.988 c 0,-0.551 -0.448,-1 -1,-1 H 18 z"
id="path111"
style="fill:url(#q)" />
<g
transform="translate(0,4)"
id="g113">
<path
d="M 111.41,86.586 C 111.66,86.336 93.035,93 88,93 c -1.654,0 -3,1.346 -3,3 0,5.035 -6.664,23.664 -6.414,23.414 l 32.828,-32.828 z"
id="path115"
style="opacity:0.1;fill:url(#j)" />
<path
d="M 111.41,86.586 C 111.79,86.211 97.444,94 88,94 c -1.103,0 -2,0.897 -2,2 0,9.444 -7.789,23.789 -7.414,23.414 l 32.828,-32.828 z"
id="path117"
style="opacity:0.1;fill:url(#k)" />
<path
d="M 111.41,86.586 C 111.65,86.347 97.807,95 88,95 c -0.553,0 -1,0.447 -1,1 0,9.807 -8.653,23.653 -8.414,23.414 l 32.828,-32.828 z"
id="path119"
style="opacity:0.1;fill:url(#l)" />
<path
d="m 78.586,119.41 c 0,0 11.914,-9.914 17.414,-15.414 5.5,-5.5 15.414,-17.414 15.414,-17.414 0,0 -13.164,9.414 -23.414,9.414 0,10.25 -9.414,23.414 -9.414,23.414 z"
id="path121"
style="fill:url(#m)" />
</g>
</g>
<path
d="m -6.9146949,45.129051 a 23.052,1.8806 0 1 1 -46.1030001,0 23.052,1.8806 0 1 1 46.1030001,0 z"
id="path123"
style="opacity:0.38140001;fill:url(#r)" />
<g
id="g3935"
transform="matrix(1.1263099,0,0,1.1107396,-54.645319,-1.0686916)">
<path
d="m 15.366698,5.98206 c -0.339985,0.028015 -0.659057,0.1764485 -0.90045,0.4188681 l -2.88144,2.89824 c -0.52082,0.5242192 -0.564762,1.3596369 -0.10121,1.9360239 l 3.894626,4.89078 -12.854104,0 c -0.7956376,8.1e-5 -1.440648,0.648844 -1.44072,1.44912 l 0,4.34736 c 7.96e-5,0.800277 0.6450824,1.449048 1.44072,1.44912 l 12.854104,0 -3.894626,4.89078 c -0.463444,0.576388 -0.419754,1.411661 0.1013,1.935952 l 2.88144,2.89824 c 0.276002,0.277797 0.656356,0.43662 1.046755,0.430208 0.390399,-0.0064 0.757423,-0.177474 1.02428,-0.464153 l 11.52576,-12.31752 c 0.525899,-0.558853 0.525899,-1.433687 0,-1.99254 L 16.537373,6.4350187 C 16.236623,6.1122272 15.805487,5.9455784 15.366788,5.9821687 z M 15.4906,7.43118 27.01636,19.7487 15.4906,32.06622 l -2.88144,-2.89824 5.76288,-7.2456 -15.84792,0 0,-4.34736 15.84792,0 -5.76288,-7.2456 2.88144,-2.89824 z"
id="path127"
style="fill:url(#linearGradient3939);fill-opacity:1" />
<path
d="M 12.60916,29.16798 15.4906,32.06622 27.01636,19.7487 15.4906,7.43118 l -2.88144,2.89824 5.76288,7.2456 -15.84792,0 0,4.34736 15.84792,0 -5.76288,7.2456 z"
id="path129"
style="fill:url(#linearGradient3941)" />
</g>
<g
transform="matrix(-0.37078,0,0,0.36885,43.685661,-2.1562313)"
id="g99-9">
<g
transform="translate(0,4)"
id="g101">
<path
d="m 16,4 c -2.206,0 -4,1.794 -4,4 v 110 c 0,3.309 2.691,6 6,6 h 59.172 c 1.299,0 2.545,-0.487 3.641,-1.354 0.128,-0.053 0.257,-0.107 0.257,-0.107 0.098,-0.073 12.134,-10.086 17.759,-15.711 5.374,-5.371 14.61,-16.425 15.646,-17.667 0.91,-0.882 1.52,-2.439 1.52,-3.989 V 8 c 0,-2.206 -1.794,-4 -4,-4 h -96 z"
id="path103-7"
style="opacity:0.1" />
<path
d="m 16,5 c -1.654,0 -3,1.346 -3,3 v 110 c 0,2.757 2.243,5 5,5 h 59.172 c 1.189,0 2.282,-0.47 3.182,-1.229 0.042,-0.021 0.09,-0.014 0.129,-0.042 0.079,-0.06 12.017,-9.986 17.639,-15.608 5.312,-5.31 14.55,-16.358 15.585,-17.601 0.785,-0.764 1.294,-2.043 1.294,-3.349 V 8 c 0,-1.654 -1.346,-3 -3,-3 h -96 z"
id="path105-5"
style="opacity:0.15" />
<path
d="m 16,6 c -1.103,0 -2,0.897 -2,2 v 110 c 0,2.206 1.794,4 4,4 h 59.172 c 1.068,0 2.072,-0.416 2.828,-1.172 -0.035,0.036 -0.074,0.068 -0.114,0.099 0.076,-0.057 11.96,-9.944 17.528,-15.513 5.265,-5.264 14.49,-16.294 15.524,-17.534 0.65,-0.644 1.06,-1.65 1.06,-2.708 V 8 c 0,-1.103 -0.897,-2 -2,-2 h -96 z"
id="path107-3"
style="opacity:0.2" />
<path
d="m 16,7 c -0.552,0 -1,0.448 -1,1 v 110 c 0,1.654 1.346,3 3,3 h 59.172 c 0.801,0 1.555,-0.312 2.121,-0.879 0.052,-0.038 11.945,-9.945 17.414,-15.414 5.469,-5.469 15.376,-17.362 15.476,-17.481 0.51,-0.499 0.82,-1.253 0.82,-2.054 V 8 c 0,-0.552 -0.447,-1 -1,-1 h -96 z"
id="path109-8"
style="opacity:0.25" />
</g>
<path
d="m 16,12 v 110 c 0,1.104 0.896,2 2,2 h 59.172 c 0.53,0 1.039,-0.211 1.414,-0.586 L 111.41,90.602 C 111.79,90.227 112,89.718 112,89.188 V 12.016 H 16 z"
id="path111-8"
style="fill:url(#p-1)" />
<path
d="m 18,13 c -0.551,0 -1,0.449 -1,1 v 108 c 0,0.552 0.449,1 1,1 h 59.172 c 0.263,0 0.521,-0.106 0.707,-0.293 L 110.71,89.867 C 110.89,89.68 111,89.423 111,89.16 V 13.988 c 0,-0.551 -0.448,-1 -1,-1 H 18 z"
id="path113"
style="fill:url(#q-9)" />
<g
transform="translate(0,4)"
id="g115">
<path
d="M 111.41,86.586 C 111.66,86.336 93.035,93 88,93 c -1.654,0 -3,1.346 -3,3 0,5.035 -6.664,23.664 -6.414,23.414 l 32.828,-32.828 z"
id="path117-3"
style="opacity:0.1;fill:url(#l-9)" />
<path
d="M 111.41,86.586 C 111.79,86.211 97.444,94 88,94 c -1.103,0 -2,0.897 -2,2 0,9.444 -7.789,23.789 -7.414,23.414 l 32.828,-32.828 z"
id="path119-1"
style="opacity:0.1;fill:url(#m-8)" />
<path
d="M 111.41,86.586 C 111.65,86.347 97.807,95 88,95 c -0.553,0 -1,0.447 -1,1 0,9.807 -8.653,23.653 -8.414,23.414 l 32.828,-32.828 z"
id="path121-8"
style="opacity:0.1;fill:url(#n-3)" />
<path
d="m 78.586,119.41 c 0,0 11.914,-9.914 17.414,-15.414 5.5,-5.5 15.414,-17.414 15.414,-17.414 0,0 -13.164,9.414 -23.414,9.414 0,10.25 -9.414,23.414 -9.414,23.414 z"
id="path123-9"
style="fill:url(#o-4)" />
</g>
</g>
d="m 37.753181,0.7945687 c 0.817941,0 1.48312,0.6617169 1.48312,1.4754 V 42.843469 c 0,1.220524 -0.997769,2.2131 -2.22468,2.2131 H 15.071827 c -0.481643,0 -0.943635,-0.17963 -1.35001,-0.499423 -0.04746,-0.01955 -0.09529,-0.03947 -0.09529,-0.03947 C 13.59019,44.490753 9.1274819,40.797458 7.0418444,38.722676 5.0492727,36.741583 1.6247486,32.664315 1.2406205,32.206204 0.9032107,31.880878 0.6770349,31.306578 0.6770349,30.734861 V 2.2699687 c 0,-0.8136831 0.6651793,-1.4754 1.48312,-1.4754 H 37.755035 z"
id="path103-7"
style="opacity:0.1"
inkscape:connector-curvature="0" />
<path
d="m 37.753181,1.1634187 c 0.61327,0 1.11234,0.4964721 1.11234,1.10655 V 42.843469 c 0,1.016919 -0.83166,1.84425 -1.8539,1.84425 H 15.071827 c -0.440858,0 -0.84612,-0.17336 -1.179822,-0.453317 -0.01557,-0.0077 -0.03337,-0.0052 -0.04783,-0.01549 C 13.814883,44.196779 9.388511,40.535574 7.3039858,38.4619 5.3344025,36.503306 1.9091368,32.428251 1.5253795,31.969771 1.2343172,31.687969 1.0455902,31.21621 1.0455902,30.734492 V 2.2699687 c 0,-0.6100779 0.4990699,-1.10655 1.11234,-1.10655 H 37.75281 z"
id="path105-5"
style="opacity:0.15"
inkscape:connector-curvature="0" />
<path
d="m 37.753181,1.5322687 c 0.40897,0 0.74156,0.3308585 0.74156,0.7377 V 42.843469 c 0,0.813683 -0.665179,1.4754 -1.48312,1.4754 H 15.071827 c -0.395993,0 -0.768256,-0.153442 -1.048566,-0.432292 0.01298,0.01328 0.02744,0.02508 0.04227,0.03652 -0.02818,-0.02103 -4.4345289,-3.667845 -6.4990319,-5.72197 C 5.6143414,36.259496 2.1938959,32.191081 1.8105094,31.733707 1.5695024,31.496167 1.4174826,31.125104 1.4174826,30.734861 V 2.2699687 c 0,-0.4068415 0.3325896,-0.7377 0.74156,-0.7377 H 37.753923 z"
id="path107-3"
style="opacity:0.2"
inkscape:connector-curvature="0" />
<path
d="m 37.753181,1.9011187 c 0.204671,0 0.37078,0.1652448 0.37078,0.36885 V 42.843469 c 0,0.610078 -0.49907,1.10655 -1.11234,1.10655 H 15.071827 c -0.296995,0 -0.576563,-0.115081 -0.786425,-0.324219 C 14.266122,43.611783 9.8564354,39.957586 7.8286395,37.940346 5.8008437,35.923105 2.1275263,31.536372 2.0904483,31.492479 1.9013505,31.308423 1.7864087,31.03031 1.7864087,30.734861 V 2.2699687 c 0,-0.2036052 0.1657386,-0.36885 0.37078,-0.36885 H 37.752069 z"
id="path109-8"
style="opacity:0.25"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="fill:#d1d1d1;fill-opacity:1"
id="path111-8"
d="M 37.753181,2.2699687 V 42.843469 c 0,0.40721 -0.332219,0.7377 -0.74156,0.7377 H 15.071827 c -0.196514,0 -0.385241,-0.07783 -0.524283,-0.216146 L 2.3770612,31.262316 C 2.2361648,31.123998 2.158301,30.936253 2.158301,30.740763 V 2.2758703 h 35.59488 z" />
<path
d="m 2.3770612,31.256415 c -0.092695,-0.09221 6.8130825,2.365804 8.6799598,2.365804 0.61327,0 1.11234,0.496472 1.11234,1.10655 0,1.857159 2.470878,8.728466 2.378183,8.636254 L 2.3755781,31.256415 z"
id="path117-3"
style="opacity:0.1;fill:url(#linearGradient3140)"
inkscape:connector-curvature="0" />
<path
d="m 2.3770612,31.256415 c -0.1408964,-0.138319 5.1783135,2.734654 8.6799598,2.734654 0.40897,0 0.74156,0.330858 0.74156,0.7377 0,3.483419 2.888005,8.774572 2.748963,8.636254 L 2.3755781,31.256415 z"
id="path119-1"
style="opacity:0.1;fill:url(#linearGradient3137)"
inkscape:connector-curvature="0" />
<path
d="m 2.3770612,31.256415 c -0.088987,-0.08816 5.0437203,3.103504 8.6799598,3.103504 0.205041,0 0.37078,0.164876 0.37078,0.36885 0,3.617312 3.208359,8.724409 3.119743,8.636254 L 2.3755781,31.256415 z"
id="path121-8"
style="opacity:0.1;fill:url(#linearGradient3134)"
inkscape:connector-curvature="0" />
<path
d="m 14.547544,43.363547 c 0,0 -4.417473,-3.656779 -6.456763,-5.685454 -2.03929,-2.028675 -5.7152029,-6.423154 -5.7152029,-6.423154 0,0 4.8809479,3.472354 8.6814429,3.472354 0,3.780713 3.490523,8.636254 3.490523,8.636254 z"
id="path123-9"
style="fill:url(#linearGradient3131)"
inkscape:connector-curvature="0" />
<path
style="opacity:0.38140001;fill:url(#r-6)"
d="m 48.136285,46.092969 a 23.73,1.9136 0 1 1 -47.45900492,0 23.73,1.9136 0 1 1 47.45900492,0 z"
id="path125" />
<g
id="g3943"
transform="matrix(1.0649592,0,0,1.0870129,-55.998428,-1.5767507)">
<path
id="path127-6"
d="m 84.084009,34.480308 c -0.34999,-0.02852 -0.67845,-0.17965 -0.92694,-0.42646 l -2.966,-2.951 c -0.53652,-0.53372 -0.58138,-1.3843 -0.10419,-1.9711 l 4.0088,-4.9794 h -13.232 c -0.81905,-8.2e-5 -1.483,-0.6606 -1.4831,-1.4754 v -4.4262 c 8.1e-5,-0.81478 0.66406,-1.4753 1.4831,-1.4754 h 13.232 l -4.0088,-4.9794 c -0.477,-0.589 -0.432,-1.4397 0.104,-1.9735003 l 2.966,-2.9507 c 0.28412,-0.28283 0.67567,-0.44453 1.0776,-0.43801 0.40189,0.0065 0.77971,0.18069 1.0544,0.47257 L 97.15388,19.447308 c 0.54141,0.56898 0.54141,1.4597 0,2.0287 l -11.865001,12.541 c -0.30984,0.32865 -0.75364,0.49846 -1.205,0.46106 z m 0.128,-1.476 11.865001,-12.54 -11.865001,-12.5410003 -2.9662,2.9508003 5.9324,7.3769 h -16.314 v 4.4262 h 16.314 l -5.9324,7.3769 2.9662,2.9508 z"
style="fill:url(#linearGradient3947)" />
<path
id="path129-4"
d="m 81.246009,30.047308 2.966,2.951 11.865001,-12.541 -11.865001,-12.5410003 -2.966,2.9509003 5.9324,7.3769 h -16.314 v 4.4262 h 16.314 l -5.9324,7.3769 z"
style="fill:url(#linearGradient3949)" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4075)"
d="m 33.736257,33.765801 c -0.372725,-0.031 -0.722522,-0.195282 -0.987153,-0.463568 l -3.158669,-3.207775 c -0.571372,-0.58016 -0.619146,-1.504752 -0.110958,-2.142611 l 4.269208,-5.412672 H 19.657145 C 18.78489,22.539086 18.07781,21.821094 18.077704,20.935396 V 16.12406 c 8.6e-5,-0.885677 0.707197,-1.60367 1.579441,-1.603779 h 14.09154 L 29.479477,9.1076085 C 28.971491,8.4673575 29.019414,7.542636 29.590232,6.9623882 l 3.158669,-3.207449 c 0.302577,-0.3074399 0.719561,-0.4832098 1.1476,-0.4761225 0.427997,0.00707 0.83036,0.1964123 1.122893,0.5136897 L 47.655136,17.424736 c 0.57658,0.618489 0.57658,1.586713 0,2.205223 L 35.019394,33.262188 c -0.329967,0.357247 -0.802596,0.541832 -1.283275,0.501178 z M 33.872572,32.16137 46.508314,18.530228 33.872572,4.8979985 30.71369,8.1055565 37.031454,16.124342 H 19.657709 v 4.811337 h 17.373745 l -6.317764,8.018785 3.158882,3.207558 z"
id="path127-6" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4087);fill-opacity:1"
d="M 30.651021,28.947073 33.80969,32.154848 46.445432,18.522619 33.80969,4.8903894 30.651021,8.0980565 36.968785,16.116842 H 19.59504 v 4.811337 h 17.373745 l -6.317764,8.018785 z"
id="path129-4" />
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -13,7 +13,7 @@
inkscape:export-ydpi="90.000000"
inkscape:export-xdpi="90.000000"
inkscape:export-filename="/home/steven/edit-find-48.png"
sodipodi:docname="find.svg"
sodipodi:docname="find.svg.BASE"
inkscape:version="0.48.2 r9819"
sodipodi:version="0.32"
id="svg249"
@ -59,6 +59,18 @@
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.24761905;" />
</linearGradient>
<linearGradient
id="linearGradient4477"
inkscape:collect="always">
<stop
id="stop4479"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop4481"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient2366">
<stop
@ -85,6 +97,66 @@
offset="1.0000000"
id="stop2850" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4477"
id="radialGradient1527"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846"
id="linearGradient1529"
gradientUnits="userSpaceOnUse"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440"
id="linearGradient1531"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.334593,0,0,1.291292,-6.973842,-7.460658)"
x1="30.65625"
y1="34"
x2="33.21875"
y2="31.0625" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2366"
id="linearGradient1533"
gradientUnits="userSpaceOnUse"
x1="18.292673"
y1="13.602121"
x2="17.500893"
y2="25.743469" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4454"
id="radialGradient1537"
gradientUnits="userSpaceOnUse"
cx="18.240929"
cy="21.817987"
fx="18.240929"
fy="21.817987"
r="8.3085051" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4467"
id="radialGradient1539"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05975,-18.941)"
cx="15.414371"
cy="13.078408"
fx="15.414371"
fy="13.078408"
r="6.65625" />
<radialGradient
id="aigrd2-8"
cx="20.892099"
@ -211,39 +283,6 @@
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient259-0"
id="radialGradient3528"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6078834,0,0,0.56033901,26.024941,21.60394)"
cx="33.966679"
cy="35.736916"
fx="33.966679"
fy="35.736916"
r="86.70845" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient269-6"
id="radialGradient3530"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.61280726,0,0,0.55583696,28.147361,21.95186)"
cx="8.824419"
cy="3.7561285"
fx="8.824419"
fy="3.7561285"
r="37.751713" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient15662-0"
id="radialGradient3532"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.58918726,0,0,0.53188665,28.589241,22.509383)"
cx="8.1435566"
cy="7.2678967"
fx="8.1435566"
fy="7.2678967"
r="38.158695" />
<radialGradient
inkscape:collect="always"
xlink:href="#aigrd2-8"
@ -299,552 +338,6 @@
fx="8.824419"
fy="3.7561285"
r="37.751713" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2966"
id="linearGradient2554"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-5.669292,0)"
x1="48.90625"
y1="17.376184"
x2="50.988335"
y2="22.250591" />
<linearGradient
id="linearGradient2966">
<stop
id="stop2968"
offset="0"
style="stop-color:#ffd1d1;stop-opacity:1;" />
<stop
style="stop-color:#ff1d1d;stop-opacity:1;"
offset="0.5"
id="stop3006" />
<stop
id="stop2970"
offset="1"
style="stop-color:#6f0000;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2974"
id="linearGradient2556"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-5.669292,0)"
x1="46"
y1="19.8125"
x2="47.6875"
y2="22.625" />
<linearGradient
id="linearGradient2974">
<stop
id="stop2976"
offset="0"
style="stop-color:#c1c1c1;stop-opacity:1;" />
<stop
id="stop2978"
offset="1"
style="stop-color:#acacac;stop-opacity:1;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2984"
id="radialGradient2558"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.923565,0,0,2.029717,-61.55532,-27.88417)"
cx="29.053354"
cy="27.640751"
fx="29.053354"
fy="27.640751"
r="3.2408545" />
<linearGradient
id="linearGradient2984"
inkscape:collect="always">
<stop
id="stop2986"
offset="0"
style="stop-color:#e7e2b8;stop-opacity:1;" />
<stop
id="stop2988"
offset="1"
style="stop-color:#e7e2b8;stop-opacity:0;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2994"
id="linearGradient2560"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-5.825542,0.125)"
x1="25.71875"
y1="31.046875"
x2="25.514589"
y2="30.703125" />
<linearGradient
id="linearGradient2994">
<stop
id="stop2996"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop2998"
offset="1"
style="stop-color:#c9c9c9;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846-1"
id="linearGradient2730"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,48.18409,0)"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<linearGradient
id="linearGradient2846-1">
<stop
style="stop-color:#8a8a8a;stop-opacity:1.0000000;"
offset="0.0000000"
id="stop2848-0" />
<stop
style="stop-color:#484848;stop-opacity:1.0000000;"
offset="1.0000000"
id="stop2850-4" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440-1"
id="linearGradient2732"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.334593,0,0,1.291292,55.15793,-7.460658)"
x1="30.65625"
y1="34"
x2="33.21875"
y2="31.0625" />
<linearGradient
id="linearGradient4440-1">
<stop
id="stop4442-1"
offset="0"
style="stop-color:#7d7d7d;stop-opacity:1;" />
<stop
style="stop-color:#b1b1b1;stop-opacity:1.0000000;"
offset="0.50000000"
id="stop4448-8" />
<stop
id="stop4444-6"
offset="1.0000000"
style="stop-color:#686868;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2366-4"
id="linearGradient2734"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,44.17827,0)"
x1="18.292673"
y1="13.602121"
x2="17.500893"
y2="25.743469" />
<linearGradient
id="linearGradient2366-4">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2368-3" />
<stop
id="stop2374-4"
offset="0.50000000"
style="stop-color:#ffffff;stop-opacity:0.21904762;" />
<stop
style="stop-color:#ffffff;stop-opacity:1.0000000;"
offset="1.0000000"
id="stop2370-7" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4454-7"
id="radialGradient2736"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,43.352,0)"
cx="18.240929"
cy="21.817987"
fx="18.240929"
fy="21.817987"
r="8.3085051" />
<linearGradient
id="linearGradient4454-7">
<stop
id="stop4456-0"
offset="0.0000000"
style="stop-color:#729fcf;stop-opacity:0.20784314;" />
<stop
id="stop4458-7"
offset="1.0000000"
style="stop-color:#729fcf;stop-opacity:0.67619050;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4467-4"
id="radialGradient2738"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05976,-18.941)"
cx="15.414371"
cy="13.078408"
fx="15.414371"
fy="13.078408"
r="6.65625" />
<linearGradient
id="linearGradient4467-4">
<stop
id="stop4469-5"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop4471-3"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.24761905;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4477-0"
id="radialGradient2504"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.237968,0,28.93278)"
cx="24.130018"
cy="37.967922"
fx="24.130018"
fy="37.967922"
r="16.528622" />
<linearGradient
id="linearGradient4477-0"
inkscape:collect="always">
<stop
id="stop4479-7"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop4481-2"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<radialGradient
r="5.256"
fy="114.5684"
fx="20.892099"
cy="114.5684"
cx="20.892099"
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
gradientUnits="userSpaceOnUse"
id="radialGradient2283"
xlink:href="#aigrd2"
inkscape:collect="always" />
<radialGradient
id="aigrd2"
cx="20.892099"
cy="114.5684"
r="5.256"
fx="20.892099"
fy="114.5684"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#F0F0F0"
id="stop15566" />
<stop
offset="1.0000000"
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
id="stop15568" />
</radialGradient>
<radialGradient
r="5.257"
fy="64.567902"
fx="20.892099"
cy="64.567902"
cx="20.892099"
gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)"
gradientUnits="userSpaceOnUse"
id="radialGradient2285"
xlink:href="#aigrd3"
inkscape:collect="always" />
<radialGradient
id="aigrd3"
cx="20.892099"
cy="64.567902"
r="5.257"
fx="20.892099"
fy="64.567902"
gradientUnits="userSpaceOnUse">
<stop
offset="0"
style="stop-color:#F0F0F0"
id="stop15573" />
<stop
offset="1.0000000"
style="stop-color:#9a9a9a;stop-opacity:1.0000000;"
id="stop15575" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient15662"
id="radialGradient15668"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.58918726,0,0,0.53188665,45.117863,30.906277)"
cx="8.1435566"
cy="7.2678967"
fx="8.1435566"
fy="7.2678967"
r="38.158695" />
<linearGradient
id="linearGradient15662">
<stop
id="stop15664"
offset="0.0000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
<stop
id="stop15666"
offset="1.0000000"
style="stop-color:#f8f8f8;stop-opacity:1.0000000;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient259"
id="radialGradient15658"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6078834,0,0,0.56033901,42.553563,30.000834)"
cx="33.966679"
cy="35.736916"
fx="33.966679"
fy="35.736916"
r="86.70845" />
<linearGradient
id="linearGradient259">
<stop
id="stop260"
offset="0.0000000"
style="stop-color:#fafafa;stop-opacity:1.0000000;" />
<stop
id="stop261"
offset="1.0000000"
style="stop-color:#bbbbbb;stop-opacity:1.0000000;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient269"
id="radialGradient15656"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.61280726,0,0,0.55583696,44.675982,30.348754)"
cx="8.824419"
cy="3.7561285"
fx="8.824419"
fy="3.7561285"
r="37.751713" />
<linearGradient
id="linearGradient269">
<stop
id="stop270"
offset="0.0000000"
style="stop-color:#a3a3a3;stop-opacity:1.0000000;" />
<stop
id="stop271"
offset="1.0000000"
style="stop-color:#4c4c4c;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5048"
id="linearGradient5027"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)"
x1="302.85715"
y1="366.64789"
x2="302.85715"
y2="609.50507" />
<linearGradient
id="linearGradient5048">
<stop
style="stop-color:black;stop-opacity:0;"
offset="0"
id="stop5050" />
<stop
id="stop5056"
offset="0.5"
style="stop-color:black;stop-opacity:1;" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5052" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5029"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<linearGradient
inkscape:collect="always"
id="linearGradient5060">
<stop
style="stop-color:black;stop-opacity:1;"
offset="0"
id="stop5062" />
<stop
style="stop-color:black;stop-opacity:0;"
offset="1"
id="stop5064" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5060"
id="radialGradient5031"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
cx="605.71429"
cy="486.64789"
fx="605.71429"
fy="486.64789"
r="117.14286" />
<radialGradient
r="117.14286"
fy="486.64789"
fx="605.71429"
cy="486.64789"
cx="605.71429"
gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)"
gradientUnits="userSpaceOnUse"
id="radialGradient3237"
xlink:href="#linearGradient5060"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2846-1-5"
id="linearGradient2730-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,48.18409,0)"
x1="27.366341"
y1="26.580296"
x2="31.335964"
y2="30.557772" />
<linearGradient
id="linearGradient2846-1-5">
<stop
style="stop-color:#8a8a8a;stop-opacity:1.0000000;"
offset="0.0000000"
id="stop2848-0-9" />
<stop
style="stop-color:#484848;stop-opacity:1.0000000;"
offset="1.0000000"
id="stop2850-4-6" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4440-1-1"
id="linearGradient2732-2"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.334593,0,0,1.291292,55.15793,-7.460658)"
x1="30.65625"
y1="34"
x2="33.21875"
y2="31.0625" />
<linearGradient
id="linearGradient4440-1-1">
<stop
id="stop4442-1-7"
offset="0"
style="stop-color:#7d7d7d;stop-opacity:1;" />
<stop
style="stop-color:#b1b1b1;stop-opacity:1.0000000;"
offset="0.50000000"
id="stop4448-8-8" />
<stop
id="stop4444-6-5"
offset="1.0000000"
style="stop-color:#686868;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2366-4-4"
id="linearGradient2734-7"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,44.17827,0)"
x1="18.292673"
y1="13.602121"
x2="17.500893"
y2="25.743469" />
<linearGradient
id="linearGradient2366-4-4">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2368-3-1" />
<stop
id="stop2374-4-8"
offset="0.50000000"
style="stop-color:#ffffff;stop-opacity:0.21904762;" />
<stop
style="stop-color:#ffffff;stop-opacity:1.0000000;"
offset="1.0000000"
id="stop2370-7-5" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4454-7-7"
id="radialGradient2736-9"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,43.352,0)"
cx="18.240929"
cy="21.817987"
fx="18.240929"
fy="21.817987"
r="8.3085051" />
<linearGradient
id="linearGradient4454-7-7">
<stop
id="stop4456-0-5"
offset="0.0000000"
style="stop-color:#729fcf;stop-opacity:0.20784314;" />
<stop
id="stop4458-7-3"
offset="1.0000000"
style="stop-color:#729fcf;stop-opacity:0.67619050;" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4467-4-8"
id="radialGradient2738-8"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05976,-18.941)"
cx="15.414371"
cy="13.078408"
fx="15.414371"
fy="13.078408"
r="6.65625" />
<linearGradient
id="linearGradient4467-4-8">
<stop
id="stop4469-5-3"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop4471-3-1"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.24761905;" />
</linearGradient>
<radialGradient
r="6.65625"
fy="13.078408"
fx="15.414371"
cy="13.078408"
cx="15.414371"
gradientTransform="matrix(2.592963,0,0,2.252104,-25.05976,-18.941)"
gradientUnits="userSpaceOnUse"
id="radialGradient3411"
xlink:href="#linearGradient4467-4-8"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
inkscape:window-y="26"
@ -855,9 +348,9 @@
inkscape:grid-bbox="true"
showgrid="true"
inkscape:current-layer="layer5"
inkscape:cy="0.68895602"
inkscape:cx="57.513012"
inkscape:zoom="5.656854"
inkscape:cy="13.694933"
inkscape:cx="19.492108"
inkscape:zoom="22.627416"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="0.25490196"
@ -1118,81 +611,66 @@
id="rect15686-03"
style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
<g
style="display:inline"
id="g2711"
transform="matrix(-0.70929483,0,0,0.70095374,27.327841,24.978833)"
inkscape:r_cx="true"
inkscape:r_cy="true">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.643277,0,0,0.643277,31.49802,4.828704)"
sodipodi:nodetypes="csscccscccscczzzz"
id="path2844-9"
d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z"
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2730);stroke-width:3.10908341;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
inkscape:r_cx="true"
inkscape:r_cy="true" />
<path
inkscape:connector-curvature="0"
transform="matrix(-0.643277,0,0,0.643277,31.49802,4.828704)"
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z"
id="path4430-3"
inkscape:r_cx="true"
inkscape:r_cy="true" />
<path
inkscape:connector-curvature="0"
transform="matrix(-0.643277,0,0,0.643277,31.49802,4.828704)"
style="color:#000000;fill:url(#linearGradient2732);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z"
id="path4438-0"
sodipodi:nodetypes="ccccc"
inkscape:r_cx="true"
inkscape:r_cy="true" />
id="g1772"
transform="matrix(0.39105747,0,0,0.37162201,7.9100602,31.393184)">
<path
sodipodi:type="arc"
style="color:#000000;fill:none;stroke:url(#linearGradient2734);stroke-width:1.24788225;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
id="path4450-2"
style="opacity:0.17112301;color:#000000;fill:url(#radialGradient1527);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
id="path4475"
sodipodi:cx="24.130018"
sodipodi:cy="37.967922"
sodipodi:rx="16.528622"
sodipodi:ry="3.9332814"
d="m 40.65864,37.967922 c 0,2.172292 -7.400116,3.933282 -16.528622,3.933282 -9.128505,0 -16.5286214,-1.76099 -16.5286214,-3.933282 0,-2.172291 7.4001164,-3.933281 16.5286214,-3.933281 9.128506,0 16.528622,1.76099 16.528622,3.933281 z"
transform="matrix(1.446431,0,0,1.51999,-10.97453,-17.75168)" />
<path
sodipodi:nodetypes="csscccscccscczzzz"
id="path2844"
d="m 18.627569,3.1435548 c -8.13913,0 -14.7448008,6.6056711 -14.7448008,14.7448012 0,8.13913 6.6056708,14.744802 14.7448008,14.744802 3.479555,0 6.551001,-1.384393 9.073723,-3.402647 -0.205377,1.006881 -0.07803,2.035368 0.756144,2.759925 l 10.964084,9.52741 c 1.233416,1.071329 3.087462,0.93096 4.15879,-0.302457 1.071328,-1.233418 0.930959,-3.087462 -0.302457,-4.15879 L 32.313769,27.529188 c -0.671527,-0.583279 -1.492878,-0.755969 -2.306238,-0.642722 1.9867,-2.512422 3.364839,-5.548803 3.364839,-8.99811 0,-8.1391301 -6.605671,-14.7448012 -14.744801,-14.7448012 z m -0.07562,1.2261833 c 7.639459,0 13.291775,4.7889505 13.291775,13.2917749 0,8.675113 -5.81669,13.291775 -13.291775,13.291775 -7.302949,0 -13.2917734,-5.478092 -13.2917734,-13.291775 0,-7.9841069 5.8246384,-13.291775 13.2917734,-13.2917749 z"
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1529);stroke-width:3.00581574;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible" />
<path
style="color:#000000;fill:#dcdcdc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 18.602905,3.0803551 c -8.16544,0 -14.7924642,6.627024 -14.7924642,14.7924639 0,8.16544 6.6270242,14.792464 14.7924642,14.792464 3.490803,0 6.572177,-1.388867 9.103055,-3.413645 -0.206041,1.010136 -0.07829,2.041947 0.758587,2.768846 l 10.999526,9.558207 c 1.237403,1.074792 3.097442,0.93397 4.172233,-0.303435 1.074791,-1.237404 0.933968,-3.097442 -0.303435,-4.172233 L 32.333346,27.544815 c -0.673698,-0.585164 -1.497704,-0.758413 -2.313693,-0.644799 1.993122,-2.520544 3.375716,-5.56674 3.375716,-9.027197 0,-8.1654399 -6.627024,-14.7924639 -14.792464,-14.7924639 z m -0.07586,3.1860692 c 6.281108,2e-7 11.378818,5.0977107 11.378818,11.3788187 0,6.281108 -5.09771,11.378818 -11.378818,11.378818 -6.281108,0 -11.3788184,-5.09771 -11.3788184,-11.378818 2e-7,-6.281108 5.0977104,-11.3788187 11.3788184,-11.3788187 z"
id="path4430" />
<path
style="color:#000000;fill:url(#linearGradient1531);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 39.507004,41.57769 c -0.478672,-2.273187 1.39733,-4.811422 3.584053,-4.788375 0,0 -10.760367,-9.258111 -10.760367,-9.258111 -2.944791,-0.05671 -4.269502,2.272616 -3.776814,4.599922 l 10.953128,9.446564 z"
id="path4438"
sodipodi:nodetypes="ccccc" />
<path
sodipodi:type="arc"
style="color:#000000;fill:none;stroke:url(#linearGradient1533);stroke-width:1.20643401;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
id="path4450"
sodipodi:cx="17.500893"
sodipodi:cy="18.920233"
sodipodi:rx="11.048544"
sodipodi:ry="11.048544"
d="m 28.549437,18.920233 c 0,6.101942 -4.946602,11.048544 -11.048544,11.048544 -6.101943,0 -11.0485443,-4.946602 -11.0485443,-11.048544 0,-6.101943 4.9466013,-11.0485442 11.0485443,-11.0485442 6.101942,0 11.048544,4.9466012 11.048544,11.0485442 z"
transform="matrix(-0.801358,0,0,0.801358,33.70147,0.855159)"
inkscape:r_cx="true"
inkscape:r_cy="true" />
transform="matrix(1.245743,0,0,1.245743,-3.425346,-6.177033)" />
<rect
style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.55458939;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
id="rect4495-7"
style="opacity:0.43315507;color:#000000;fill:none;stroke:#ffffff;stroke-width:1.50295389;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
id="rect4495"
width="19.048439"
height="4.4404783"
x="40.373337"
y="0.14086054"
rx="3.3215265"
ry="2.9348745"
transform="matrix(-0.484379,0.4233,0.417423,0.489452,31.49802,4.828704)"
inkscape:r_cx="true"
inkscape:r_cy="true" />
rx="3.2112026"
ry="2.837393"
transform="matrix(0.752986,0.658037,-0.648902,0.760872,0,0)" />
<path
sodipodi:type="arc"
style="color:#000000;fill:url(#radialGradient2736);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:1.11148739;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible"
id="path4452-9"
style="color:#000000;fill:url(#radialGradient1537);fill-opacity:1;fill-rule:evenodd;stroke:#3063a3;stroke-width:1.07456946;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible"
id="path4452"
sodipodi:cx="17.589281"
sodipodi:cy="18.478292"
sodipodi:rx="8.3085051"
sodipodi:ry="8.3085051"
d="m 25.897786,18.478292 c 0,4.588661 -3.719844,8.308506 -8.308505,8.308506 -4.588661,0 -8.308505,-3.719845 -8.308505,-8.308506 0,-4.58866 3.719844,-8.308505 8.308505,-8.308505 4.588661,0 8.308505,3.719845 8.308505,8.308505 z"
transform="matrix(-0.899697,0,0,0.899697,35.502,-0.509826)"
inkscape:r_cx="true"
inkscape:r_cy="true" />
transform="matrix(1.398614,0,0,1.398614,-6.224338,-8.298958)" />
<path
inkscape:connector-curvature="0"
transform="matrix(0.643277,0,0,0.643277,7.855933,4.828704)"
style="opacity:0.83422457;color:#000000;fill:url(#radialGradient2738);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
style="opacity:0.83422457;color:#000000;fill:url(#radialGradient1539);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible"
d="m 18.156915,7.3966938 c -5.20759,0 -9.4245469,4.2169572 -9.4245469,9.4245472 0,1.503975 0.4203072,2.887773 1.0471719,4.149903 1.25238,0.461613 2.582757,0.775683 3.994767,0.775683 6.170955,0 11.099282,-4.861637 11.480106,-10.937129 C 23.523449,8.7641668 21.044374,7.3966938 18.156915,7.3966938 z"
id="path4462-9"
inkscape:r_cx="true"
inkscape:r_cy="true" />
id="path4462" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -8,21 +8,21 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48"
width="48"
height="26"
width="26"
version="1.0"
id="svg2"
inkscape:version="0.47 r22583"
inkscape:version="0.48.1 "
sodipodi:docname="hierarchy_cursor.svg">
<metadata
id="metadata102">
id="metadata91">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -36,24 +36,34 @@
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="949"
id="namedview100"
showgrid="false"
inkscape:zoom="0.61458333"
inkscape:cx="-63.296329"
inkscape:cy="-178.90751"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-height="968"
id="namedview89"
showgrid="true"
inkscape:zoom="32.892445"
inkscape:cx="13.697382"
inkscape:cy="13.903946"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
inkscape:current-layer="svg2"
inkscape:snap-grids="false"
inkscape:snap-to-guides="false">
<inkscape:grid
type="xygrid"
id="grid3790"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<defs
id="defs4">
<linearGradient
id="g"
id="d"
y2="106.25"
gradientUnits="userSpaceOnUse"
x2="49.333"
gradientTransform="matrix(.89893 0 0 .89893 30.497 4.8167)"
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
y1="55.785"
x1="49.333">
<stop
@ -67,76 +77,76 @@
id="stop9" />
</linearGradient>
<linearGradient
id="h"
y2="54.974"
spreadMethod="reflect"
inkscape:collect="always"
xlink:href="#d"
id="linearGradient3847"
gradientUnits="userSpaceOnUse"
x2="108.73"
gradientTransform="matrix(.89893 0 0 .89893 8.9069 4.8167)"
y1="54.974"
x1="61.667">
gradientTransform="matrix(0.41240025,0,0,0.21666952,-13.66344,-12.772114)"
x1="49.333"
y1="55.785"
x2="49.333"
y2="106.25" />
<linearGradient
id="d-7"
y2="106.25"
gradientUnits="userSpaceOnUse"
x2="49.333"
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
y1="55.785"
x1="49.333">
<stop
stop-color="#eeeeec"
stop-color="#bfd9ff"
offset="0"
id="stop12" />
id="stop7-4" />
<stop
stop-color="#eeeeec"
stop-color="#bfd9ff"
stop-opacity="0"
offset="1"
id="stop14" />
id="stop9-0" />
</linearGradient>
<radialGradient
id="l"
<linearGradient
y2="106.25"
x2="49.333"
y1="55.785"
x1="49.333"
gradientTransform="matrix(0.40834249,0,0,0.22239263,-2.5736098,-3.2228281)"
gradientUnits="userSpaceOnUse"
cy="112.43"
cx="47.953"
gradientTransform="matrix(1.8808 -.011744 .0062284 .9975 -24.45 .47983)"
r="49.688">
<stop
stop-color="#eeeeec"
offset="0"
id="stop17" />
<stop
stop-color="#fff"
offset="1"
id="stop19" />
</radialGradient>
<radialGradient
id="i"
id="linearGradient3877"
xlink:href="#d-7"
inkscape:collect="always" />
<linearGradient
id="d-7-8"
y2="106.25"
gradientUnits="userSpaceOnUse"
cy="36.812"
cx="25.375"
gradientTransform="matrix(1,0,0,0.45357,0,20.115)"
r="17.5">
x2="49.333"
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
y1="55.785"
x1="49.333">
<stop
stop-color="#bfd9ff"
offset="0"
id="stop22" />
id="stop7-4-8" />
<stop
stop-color="#bfd9ff"
stop-opacity="0"
offset="1"
id="stop24" />
</radialGradient>
<radialGradient
id="j"
id="stop9-0-2" />
</linearGradient>
<linearGradient
y2="106.25"
x2="49.333"
y1="55.785"
x1="49.333"
gradientTransform="matrix(0.40630261,0,0,0.20450943,-0.32448875,6.078512)"
gradientUnits="userSpaceOnUse"
cy="24.149"
cx="17.814"
gradientTransform="matrix(2.644,0,-2.9365e-8,2.5344,31.4,-14.592)"
r="9.125">
<stop
stop-color="#fff"
offset="0"
id="stop27" />
<stop
stop-color="#b6b6b6"
offset="1"
id="stop29" />
</radialGradient>
id="linearGradient3911"
xlink:href="#d-7-8"
inkscape:collect="always" />
<radialGradient
id="k"
gradientUnits="userSpaceOnUse"
cy="24.149"
cx="17.814"
cx="17.813999"
gradientTransform="matrix(-8.5825,0,9.5321e-8,5.8317,228.28,-134.86)"
r="9.125">
<stop
@ -148,277 +158,99 @@
offset="1"
id="stop34" />
</radialGradient>
<radialGradient
id="c"
gradientUnits="userSpaceOnUse"
cy="36.812"
cx="25.375"
gradientTransform="matrix(1,0,0,0.45357,0,20.115)"
r="17.5">
<stop
offset="0"
id="stop7-6" />
<stop
stop-opacity="0"
offset="1"
id="stop9-2" />
</radialGradient>
<radialGradient
id="d"
gradientUnits="userSpaceOnUse"
cy="24.149"
cx="17.813999"
gradientTransform="matrix(-4.378,0,4.8624e-8,3.6749,144.59,-83.252)"
r="9.125">
<stop
stop-color="#fff"
offset="0"
id="stop12-5" />
<stop
stop-color="#b6b6b6"
offset="1"
id="stop14-8" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#d"
id="radialGradient2962"
xlink:href="#k"
id="radialGradient3117"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-3.0832503,0,3.4243938e-8,2.4318283,139.46226,-50.875918)"
cx="17.813999"
cy="24.149"
r="9.125" />
<radialGradient
inkscape:collect="always"
xlink:href="#c"
id="radialGradient2965"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.73602213,0,0,0.19291847,77.030319,24.011818)"
cx="25.375"
cy="36.812"
r="17.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#d"
id="radialGradient2971"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-3.0832503,0,3.4243938e-8,2.4318283,139.46226,-50.875918)"
gradientTransform="matrix(-1.6652669,0,1.8495183e-8,1.2261165,49.810655,-39.950964)"
cx="17.813999"
cy="24.149"
r="9.125" />
</defs>
<path
style="fill:none;stroke:#090909;stroke-width:1.012;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path47"
d="M 6.4452023,5.7236701 V 22.008055" />
<path
style="fill:none;stroke:#323331;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path49"
d="M 6.5093112,13.543361 H 11.85972" />
<path
style="fill:none;stroke:#292a28;stroke-width:0.98240662;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path51"
d="m 6.035011,21.522532 h 8.112518" />
<rect
height="0"
width="1.1118"
y="-107.651"
x="21.122999"
id="rect61"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-138.26001"
x="-17.93"
id="rect63"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-92.348999"
x="-258.62"
id="rect67"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-315.22"
x="-958.79999"
id="rect83"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-345.82001"
x="-997.85999"
id="rect85"
style="opacity:0.57787003;fill:#ffffff" />
<rect
style="fill:url(#linearGradient3877);stroke:#0d16a4;stroke-width:1.01438868;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect31-9"
x="12.402685"
y="11.457044"
width="9.9399824"
height="4.114213" />
<rect
style="fill:url(#linearGradient3911);stroke:#a40d44;stroke-width:0.97031647;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect31-9-4"
x="14.576992"
y="19.577936"
width="9.8903284"
height="3.7833779" />
<rect
style="fill:url(#linearGradient3847);stroke:#7c7c0a;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect31"
x="1.4616796"
y="1.5299835"
width="10.038758"
height="4.008337" />
<g
opacity=".87109"
transform="matrix(.37019 0 0 .39296 .46998 -2.5169)"
id="g36">
id="g3792"
transform="matrix(1.0773764,0,0,1.0929386,-6.4218371,13.233805)">
<path
stroke-linejoin="round"
d="m16.235 17.52v94.998l100.41 0.0519v-88.4l-61.431 0.10996 0.07655-6.7597h-39.052z"
stroke-dashoffset="4"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#888a85"
stroke-linecap="round"
stroke-width="4.8249"
fill="none"
id="path38" />
<path
fill="url(#l)"
d="m16.751 18.329v93.736l99.376-0.0523v-87.274l-61.014 0.06036 0.06958-6.4544-38.431-0.0157z"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
id="path40" />
<rect
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
height="19.256"
width="64.77"
y="44.606"
x="41.876"
fill="url(#h)"
id="rect42" />
<path
d="m40.756 44.898h66.229"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path44" />
<rect
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
height="16.63"
width="21.882"
y="64.154"
x="63.466"
fill="url(#g)"
id="rect46" />
<path
d="m41.998 44.023v19.548"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path48" />
<path
d="m64.483 44.023v36.47"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path50" />
<path
d="m85.415 44.023v52.808"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path52" />
<path
d="m40.756 64.091h66.229"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path54" />
<path
d="m84.52 96.744h22.465"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path56" />
<path
d="m62.93 80.903h44.056"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path58" />
<path
d="m105.48 44.023v52.808"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#bbb"
stroke-width="3.1463"
fill="none"
id="path60" />
<path
d="m27.031 52.775v40.554"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#888a85"
stroke-width="3.1463"
fill="none"
id="path62" />
<path
d="m28.21 74.571h22.465"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#888a85"
stroke-width="3.1463"
fill="none"
id="path64" />
<path
d="m28.21 91.674h45.514"
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
stroke="#888a85"
stroke-width="3.1463"
fill="none"
id="path66" />
<path
fill-opacity=".75688"
fill="#fff"
d="m46.717-1.6694v-3.1071 3.1071z"
id="path68" />
<path
fill-opacity=".75688"
fill="#fff"
d="m188.01-24.878v-3.1071 3.1071z"
id="path70" />
<path
fill-opacity=".75688"
fill="#fff"
d="m85.034 57.276v-1.697 1.697z"
id="path72" />
</g>
<rect
opacity=".57787"
height="0"
width=".41158"
y="-314.59"
x="-266.57"
fill="#fff"
id="rect74" />
<rect
opacity=".57787"
height="0"
width=".41158"
y="-326.62"
x="-281.03"
fill="#fff"
id="rect76" />
<rect
opacity=".57787"
height="0"
width=".41158"
y="-308.58"
x="-370.13"
fill="#fff"
id="rect78" />
<rect
opacity=".57787"
height="0"
width=".41158"
y="-396.16"
x="-629.33"
fill="#fff"
id="rect80" />
<rect
opacity=".57787"
height="0"
width=".41158"
y="-408.19"
x="-643.79"
fill="#fff"
id="rect82" />
<g
transform="matrix(0.33350907,0,0,0.36138836,-60.313457,-13.29018)"
id="g84">
<path
d="m 71.736,0.71806 55.184,37.967 -25.16,0.575 10.55,15.532 c 3.2461,6.903 -11.361,9.4916 -13.796,4.3144 l -9.7381,-15.532 -17.852,13.519 0.812,-56.375 z"
inkscape:connector-curvature="0"
d="m 19.436342,-11.445641 10.70738,7.982572 -4.881808,0.1208935 2.047022,3.2656067 c 0.629842,1.451358 -2.20438,1.995611 -2.676845,0.907104 L 22.742603,-2.4350717 19.27877,0.4073022 19.436323,-11.445557 z"
id="path86"
style="fill:url(#k);fill-rule:evenodd;stroke:#555753;stroke-width:2.73300004;stroke-linejoin:round" />
style="fill:url(#radialGradient3117);fill-rule:evenodd;stroke:#3a3b39;stroke-width:0.69814181;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
<path
d="m 75.492,7.3276 42.028,28.753 -21.321,0.26 12.891,18.822 c 2.3586,3.4439 -5.3446,5.2526 -7.158,2.4544 L 89.985,39.169 74.641,50.4 z"
inkscape:connector-curvature="0"
d="m 20.165121,-10.055983 8.154714,6.0453256 -4.136924,0.054664 2.501247,3.9573296 c 0.45764,0.724082 -1.037016,1.104361 -1.388871,0.516039 L 22.977205,-3.3613209 20,-1 z"
id="path88"
style="fill:#3a3c39;stroke:#9b9b9b;stroke-width:3.61599994" />
</g>
<g
transform="matrix(1.3321,0,0,1.0563,-144.79359,-36.610542)"
id="g90">
<path
d="m 42.875,36.812 a 17.5,7.9375 0 1 1 -35,0 17.5,7.9375 0 1 1 35,0 z"
transform="matrix(0.63117,0,0,0.44327,40.313,61.914)"
display="block"
id="path92"
style="opacity:0.39872999;fill:url(#i);display:block" />
<g
transform="matrix(-1,0,0,1,125.25,7.375)"
id="g94">
<path
d="m 79.625,44.332 -17,16.5 7.75,0.25 c 0,0 -3.25,6.75 -3.25,6.75 -1,3 3.5,4.125 4.25,1.875 l 3,-6.75 5.5,5.875 -0.25,-24.5 z"
id="path96"
style="fill:url(#j);fill-rule:evenodd;stroke:#555753;stroke-linejoin:round" />
<path
d="m 78.468,46.773 -13.476,13.186 6.9219,0.27746 -3.8721,7.7566 c -0.40273,1.6501 2.0283,2.4126 2.5071,1.1529 l 3.6831,-7.845 4.4247,4.7083 -0.18907,-19.236 z"
id="path98"
style="fill:none;stroke:#ffffff" />
</g>
</g>
<g
id="g2967"
transform="matrix(0.96603881,0,0,0.95665806,-52.427719,17.049241)">
<path
style="fill:url(#radialGradient2971);fill-rule:evenodd;stroke:#555753;stroke-width:1.05779564;stroke-linejoin:round"
d="M 83.224285,5.6624192 103.0485,21.494549 94.010732,21.73476 c 0,0 3.789904,6.476781 3.789904,6.476781 1.166114,2.878569 -4.081468,3.958065 -4.956089,1.799138 L 89.346136,23.533899 82.93237,29.17113 83.223905,5.6628162 z"
id="path20" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.39947152"
d="M 84.573648,8.4186325 99.671573,20.4087 l -7.367263,0.514383 4.339368,7.44259 c 0.840464,1.441534 -1.920024,2.190359 -2.571465,1.023513 l -4.294929,-7.692727 -5.511962,4.6832 z"
id="path22" />
style="fill:#008904;fill-opacity:1;stroke:#9b9b9b;stroke-width:0.73035115" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -1,51 +1,242 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.0">
<defs>
<linearGradient id="d" y2="106.25" gradientUnits="userSpaceOnUse" x2="49.333" gradientTransform="matrix(.89893 0 0 .89893 30.497 4.8167)" y1="55.785" x1="49.333">
<stop stop-color="#bfd9ff" offset="0"/>
<stop stop-color="#bfd9ff" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="e" y2="54.974" spreadMethod="reflect" gradientUnits="userSpaceOnUse" x2="108.73" gradientTransform="matrix(.89893 0 0 .89893 8.9069 4.8167)" y1="54.974" x1="61.667">
<stop stop-color="#eeeeec" offset="0"/>
<stop stop-color="#eeeeec" stop-opacity="0" offset="1"/>
</linearGradient>
<radialGradient id="f" gradientUnits="userSpaceOnUse" cy="112.43" cx="47.953" gradientTransform="matrix(1.8808 -.011744 .0062284 .9975 -24.45 .47983)" r="49.688">
<stop stop-color="#eeeeec" offset="0"/>
<stop stop-color="#fff" offset="1"/>
</radialGradient>
</defs>
<g transform="matrix(.40183 0 0 .40536 -2.3929 -1.3507)">
<path stroke-linejoin="round" d="m16.235 17.52v94.998l100.41 0.0519v-88.4l-61.431 0.10996 0.07655-6.7597h-39.052z" stroke-dashoffset="4" stroke="#888a85" stroke-linecap="round" stroke-width="4.8249" fill="none"/>
<path fill="url(#f)" d="m16.751 18.329v93.736l99.376-0.0523v-87.274l-61.014 0.06036 0.06958-6.4544-38.431-0.0157z"/>
<rect height="19.256" width="64.77" y="44.606" x="41.876" fill="url(#e)"/>
<path d="m40.756 44.898h66.229" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<rect height="16.63" width="21.882" y="64.154" x="63.466" fill="url(#d)"/>
<path d="m41.998 44.023v19.548" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m64.483 44.023v36.47" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m85.415 44.023v52.808" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m40.756 64.091h66.229" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m84.52 96.744h22.465" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m62.93 80.903h44.056" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m105.48 44.023v52.808" stroke="#bbb" stroke-width="3.1463" fill="none"/>
<path d="m27.031 52.775v40.554" stroke="#888a85" stroke-width="3.1463" fill="none"/>
<path d="m28.21 74.571h22.465" stroke="#888a85" stroke-width="3.1463" fill="none"/>
<path d="m28.21 91.674h45.514" stroke="#888a85" stroke-width="3.1463" fill="none"/>
</g>
<path fill-opacity=".75688" fill="#fff" d="m17.632 2.7214v-1.064 1.064z"/>
<path fill-opacity=".75688" fill="#fff" d="m-86.143-177.98v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m67.196-5.2262v-1.064 1.064z"/>
<path fill-opacity=".75688" fill="#fff" d="m31.073 22.907v-0.581 0.581z"/>
<rect opacity=".57787" height="0" width="1.1118" y="-85.651" x="21.123" fill="#fff"/>
<rect opacity=".57787" height="0" width="1.1118" y="-116.26" x="-17.93" fill="#fff"/>
<path fill-opacity=".75688" fill="#fff" d="m-194.63-197.66v-3.1071 3.1071z"/>
<rect opacity=".57787" height="0" width="1.1118" y="-70.349" x="-258.62" fill="#fff"/>
<path fill-opacity=".75688" fill="#fff" d="m-435.32-151.75v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m-84.656-191.68v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m-758.65-211.82v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m-933.21-289.24v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m-1066.1-385.55v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m-791.91-312.45v-3.1071 3.1071z"/>
<path fill-opacity=".75688" fill="#fff" d="m-894.89-230.29v-1.6974 1.6974z"/>
<rect opacity=".57787" height="0" width="1.1118" y="-293.22" x="-958.8" fill="#fff"/>
<rect opacity=".57787" height="0" width="1.1118" y="-323.82" x="-997.86" fill="#fff"/>
<path fill-opacity=".75688" fill="#fff" d="m-1174.6-405.22v-3.1071 3.1071z"/>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.0"
id="svg2"
inkscape:version="0.48.1 "
sodipodi:docname="hierarchy_nav.svg">
<metadata
id="metadata91">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="910"
inkscape:window-height="711"
id="namedview89"
showgrid="true"
inkscape:zoom="22.615224"
inkscape:cx="12.957079"
inkscape:cy="13.561772"
inkscape:window-x="223"
inkscape:window-y="35"
inkscape:window-maximized="0"
inkscape:current-layer="svg2"
inkscape:snap-grids="false"
inkscape:snap-to-guides="false">
<inkscape:grid
type="xygrid"
id="grid3790"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<defs
id="defs4">
<linearGradient
id="d"
y2="106.25"
gradientUnits="userSpaceOnUse"
x2="49.333"
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
y1="55.785"
x1="49.333">
<stop
stop-color="#bfd9ff"
offset="0"
id="stop7" />
<stop
stop-color="#bfd9ff"
stop-opacity="0"
offset="1"
id="stop9" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#d"
id="linearGradient3847"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.41240025,0,0,0.21666952,-13.66344,-12.772114)"
x1="49.333"
y1="55.785"
x2="49.333"
y2="106.25" />
<linearGradient
id="d-7"
y2="106.25"
gradientUnits="userSpaceOnUse"
x2="49.333"
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
y1="55.785"
x1="49.333">
<stop
stop-color="#bfd9ff"
offset="0"
id="stop7-4" />
<stop
stop-color="#bfd9ff"
stop-opacity="0"
offset="1"
id="stop9-0" />
</linearGradient>
<linearGradient
y2="106.25"
x2="49.333"
y1="55.785"
x1="49.333"
gradientTransform="matrix(0.40834249,0,0,0.22239263,-2.5736098,-3.2228281)"
gradientUnits="userSpaceOnUse"
id="linearGradient3877"
xlink:href="#d-7"
inkscape:collect="always" />
<linearGradient
id="d-7-8"
y2="106.25"
gradientUnits="userSpaceOnUse"
x2="49.333"
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
y1="55.785"
x1="49.333">
<stop
stop-color="#bfd9ff"
offset="0"
id="stop7-4-8" />
<stop
stop-color="#bfd9ff"
stop-opacity="0"
offset="1"
id="stop9-0-2" />
</linearGradient>
<linearGradient
y2="106.25"
x2="49.333"
y1="55.785"
x1="49.333"
gradientTransform="matrix(0.40630261,0,0,0.20450943,-0.32448875,6.078512)"
gradientUnits="userSpaceOnUse"
id="linearGradient3911"
xlink:href="#d-7-8"
inkscape:collect="always" />
<radialGradient
id="k"
gradientUnits="userSpaceOnUse"
cy="24.149"
cx="17.813999"
gradientTransform="matrix(-8.5825,0,9.5321e-8,5.8317,228.28,-134.86)"
r="9.125">
<stop
stop-color="#fff"
offset="0"
id="stop32" />
<stop
stop-color="#b6b6b6"
offset="1"
id="stop34" />
</radialGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#k"
id="radialGradient3117"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.6652669,0,1.8495183e-8,1.2261165,49.810655,-39.950964)"
cx="17.813999"
cy="24.149"
r="9.125" />
</defs>
<path
style="fill:none;stroke:#090909;stroke-width:1.01241052;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path47"
d="M 6.4452023,5.7236701 V 22.008055" />
<path
style="fill:none;stroke:#323331;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path49"
d="M 6.5093112,13.543361 H 11.85972" />
<path
style="fill:none;stroke:#292a28;stroke-width:0.98240662;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path51"
d="m 6.035011,21.522532 h 8.112518" />
<rect
height="0"
width="1.1118"
y="-107.651"
x="21.122999"
id="rect61"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-138.26001"
x="-17.93"
id="rect63"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-92.348999"
x="-258.62"
id="rect67"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-315.22"
x="-958.79999"
id="rect83"
style="opacity:0.57787003;fill:#ffffff" />
<rect
height="0"
width="1.1118"
y="-345.82001"
x="-997.85999"
id="rect85"
style="opacity:0.57787003;fill:#ffffff" />
<rect
style="fill:url(#linearGradient3877);stroke:#0d16a4;stroke-width:1.01438868;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect31-9"
x="12.402685"
y="11.457044"
width="9.9399824"
height="4.114213" />
<rect
style="fill:url(#linearGradient3911);stroke:#a40d44;stroke-width:0.97031647;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect31-9-4"
x="14.576992"
y="19.577936"
width="9.8903284"
height="3.7833779" />
<rect
style="fill:url(#linearGradient3847);stroke:#7c7c0a;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="rect31"
x="1.4616796"
y="1.5299835"
width="10.038758"
height="4.008337" />
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,32 +1,190 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.1" viewBox="0 0 48 48">
<g transform="matrix(-2.8288,0,0,-2.4916,-6.4559,36.786)">
<g stroke-linejoin="round">
<rect transform="rotate(90)" height="14.619" width="9.7086" stroke="#000" y="3.4905" x="1.904" stroke-width="0.4" fill="#fff"/>
<path d="m693.26 625.06a18.914 18.914 0 0 1 -37.828 0.11702" transform="matrix(0 .071482 -.071482 0 41.168 -41.24)" stroke="#030303" stroke-width="5.5958" fill="none"/>
</g>
<g stroke-linejoin="round" transform="translate(-.0375 -.15)" stroke="#030303">
<rect transform="rotate(90)" height="2.511" width="4.7176" y="13.332" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<rect transform="rotate(90)" height="2.511" width="4.7176" y="5.3636" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 46.083 -44.072)" stroke-width="4.1969" fill="#ffede0"/>
<rect transform="rotate(90)" height="2.511" width="4.7176" y="9.3478" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 42.08 -44.072)" stroke-width="4.1969" fill="#ffede0"/>
<path d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 38.077 -44.072)" stroke-width="4.1969" fill="#ffede0"/>
</g>
<g transform="translate(-.0375 9.6261)">
<rect stroke-linejoin="round" transform="rotate(90)" height="2.511" width="4.7176" stroke="#030303" y="13.332" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<rect stroke-linejoin="round" transform="rotate(90)" height="2.511" width="4.7176" stroke="#030303" y="5.3636" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path stroke-linejoin="round" d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 46.083 -44.072)" stroke="#030303" stroke-width="4.1969" fill="#ffede0"/>
<rect stroke-linejoin="round" transform="rotate(90)" height="2.511" width="4.7176" stroke="#030303" y="9.3478" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path stroke-linejoin="round" d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 42.08 -44.072)" stroke="#030303" stroke-width="4.1969" fill="#ffede0"/>
<g stroke-width="0.3">
<path stroke-linejoin="round" d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 38.077 -44.072)" stroke="#030303" stroke-width="4.1969" fill="#ffede0"/>
</g>
</g>
</g>
<rect ry="2.1184" height="31.004" width="24.273" y="15.396" x="21.327" fill="#3e3e3e"/>
<path d="m25.2 19.172h17.8" stroke="#f2f2f4" stroke-width="3.125" fill="none"/>
<path d="m25.2 24.929h10.39" stroke="#f2f2f4" stroke-width="3.125" fill="none"/>
<path d="m25.2 30.686h17.8" stroke="#f2f2f4" stroke-width="3.125" fill="none"/>
<path d="m25.2 42.2h4.5763" stroke="#f2f2f4" stroke-width="3.125" fill="none"/>
<path d="m25.2 36.443h9.4391" stroke="#f2f2f4" stroke-width="3.125" fill="none"/>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.1"
viewBox="0 0 26 26"
id="svg2"
inkscape:version="0.48.2 r9819"
sodipodi:docname="module_pin_filtered_list (another copy).svg">
<metadata
id="metadata56">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs54" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="969"
id="namedview52"
showgrid="true"
inkscape:zoom="13.906434"
inkscape:cx="19.918756"
inkscape:cy="24.624712"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid3033"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<rect
transform="matrix(0,-1,1,0,0,0)"
height="21.994465"
width="12.99073"
y="1.5596062"
x="-17.520231"
id="rect8"
style="fill:#ffffff;stroke:#484848;stroke-width:0.99127513000000000;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 1.5927632,8.9410802 a 2.0341261,1.8090857 0 1 1 0.012585,3.6181538"
id="path10"
inkscape:connector-curvature="0"
style="fill:none;stroke:#484848;stroke-width:0.99127518999999997;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5188339"
x="-20.502354"
id="rect30"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5071146,16.522119 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.507601"
x="-20.513519"
id="rect30-5"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.495882,16.533284 a 0.98526485,0.92342205 0 0 1 0,1.846845 0.98526485,0.92342205 0 1 1 0,-1.846845 z"
id="path32-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.499128"
x="-20.488094"
id="rect30-2"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.487408,16.507861 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5339792"
x="-7.5303874"
id="rect30-1"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5222603,3.5501532 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-3"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.522747"
x="-7.5415525"
id="rect30-5-6"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.511028,3.5613187 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-4-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.514275"
x="-7.516129"
id="rect30-2-8"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.502554,3.535895 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-0-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="0.95373797"
height="13.958503"
width="11.03963"
y="10.016949"
x="13.978938"
id="rect42"
style="fill:#3e3e3e" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.009575,11.52825 h 8.877796"
id="path44" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.029532,13.53267 h 4.998076"
id="path46" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:0.98748815;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.014805,15.486244 h 8.994456"
id="path48" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 14.996242,17.512034 h 3.030854"
id="path50" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1.00859404;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.023158,19.524562 h 4.975703"
id="path52" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.030706,21.525424 h 7.667396"
id="path46-2" />
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -1,34 +1,190 @@
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.1" viewBox="0 0 48 48">
<g transform="matrix(-2.8288,0,0,-2.4916,-6.4559,36.786)">
<g stroke-linejoin="round">
<rect transform="rotate(90)" height="14.619" width="9.7086" stroke="#000" y="3.4905" x="1.904" stroke-width="0.4" fill="#fff"/>
<path d="m693.26 625.06a18.914 18.914 0 0 1 -37.828 0.11702" transform="matrix(0 .071482 -.071482 0 41.168 -41.24)" stroke="#030303" stroke-width="5.5958" fill="none"/>
</g>
<g stroke-linejoin="round" transform="translate(-.0375 -.15)" stroke="#030303">
<rect transform="rotate(90)" height="2.511" width="4.7176" y="13.332" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<rect transform="rotate(90)" height="2.511" width="4.7176" y="5.3636" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 46.083 -44.072)" stroke-width="4.1969" fill="#ffede0"/>
<rect transform="rotate(90)" height="2.511" width="4.7176" y="9.3478" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 42.08 -44.072)" stroke-width="4.1969" fill="#ffede0"/>
<path d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 38.077 -44.072)" stroke-width="4.1969" fill="#ffede0"/>
</g>
<g transform="translate(-.0375 9.6261)">
<rect stroke-linejoin="round" transform="rotate(90)" height="2.511" width="4.7176" stroke="#030303" y="13.332" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<rect stroke-linejoin="round" transform="rotate(90)" height="2.511" width="4.7176" stroke="#030303" y="5.3636" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path stroke-linejoin="round" d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 46.083 -44.072)" stroke="#030303" stroke-width="4.1969" fill="#ffede0"/>
<rect stroke-linejoin="round" transform="rotate(90)" height="2.511" width="4.7176" stroke="#030303" y="9.3478" x="-.31959" stroke-width="0.3" fill="#ff7800"/>
<path stroke-linejoin="round" d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 42.08 -44.072)" stroke="#030303" stroke-width="4.1969" fill="#ffede0"/>
<g stroke-width="0.3">
<path stroke-linejoin="round" d="m654.65 737.28a9.5805 9.5805 0 1 1 -19.161 0 9.5805 9.5805 0 1 1 19.161 0z" transform="matrix(0 .071482 -.071482 0 38.077 -44.072)" stroke="#030303" stroke-width="4.1969" fill="#ffede0"/>
</g>
</g>
</g>
<rect ry="2.1184" height="31.004" width="24.273" y="15.396" x="21.327" fill="#3e3e3e"/>
<g stroke-width="2.5" stroke="#f2f2f4" fill="none">
<path d="m25.2 19.172h17.8"/>
<path d="m25.2 24.929h17.8"/>
<path d="m25.2 30.686h17.8"/>
<path d="m25.2 42.2h17.8"/>
<path d="m25.2 36.443h17.8"/>
</g>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.1"
viewBox="0 0 26 26"
id="svg2"
inkscape:version="0.48.2 r9819"
sodipodi:docname="module_full_list.svg">
<metadata
id="metadata56">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs54" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="969"
id="namedview52"
showgrid="true"
inkscape:zoom="27.812868"
inkscape:cx="26.566208"
inkscape:cy="13.243384"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid3033"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<rect
transform="matrix(0,-1,1,0,0,0)"
height="21.994465"
width="12.99073"
y="1.5596062"
x="-17.520231"
id="rect8"
style="fill:#ffffff;stroke:#484848;stroke-width:0.99127513000000000;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 1.5927632,8.9410802 a 2.0341261,1.8090857 0 1 1 0.012585,3.6181538"
id="path10"
inkscape:connector-curvature="0"
style="fill:none;stroke:#484848;stroke-width:0.99127518999999997;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5188339"
x="-20.502354"
id="rect30"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5071146,16.522119 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.507601"
x="-20.513519"
id="rect30-5"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.495882,16.533284 a 0.98526485,0.92342205 0 0 1 0,1.846845 0.98526485,0.92342205 0 1 1 0,-1.846845 z"
id="path32-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.499128"
x="-20.488094"
id="rect30-2"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.487408,16.507861 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5339792"
x="-7.5303874"
id="rect30-1"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5222603,3.5501532 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-3"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.522747"
x="-7.5415525"
id="rect30-5-6"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.511028,3.5613187 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-4-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.514275"
x="-7.516129"
id="rect30-2-8"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.502554,3.535895 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-0-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="0.95373797"
height="13.958503"
width="11.03963"
y="10.016949"
x="13.978938"
id="rect42"
style="fill:#3e3e3e" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1.00634968;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.015945,11.510273 h 8.990897"
id="path44" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:0.98837698;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.015694,15.486244 h 9.010655"
id="path48" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1.00634968;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.018901,13.505784 h 8.990897"
id="path44-3" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1.00634968;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.036877,21.505679 h 8.990897"
id="path44-9" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1.00453961;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.035058,19.510199 h 8.958583"
id="path44-93" />
<path
style="fill:none;stroke:#f2f2f4;stroke-width:1.00725353;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
d="m 15.01981,17.496742 h 9.007054"
id="path44-4" />
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -0,0 +1,173 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.1"
viewBox="0 0 26 26"
id="svg2"
inkscape:version="0.48.2 r9819"
sodipodi:docname="module_pin_filtered_list.svg">
<metadata
id="metadata56">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs54" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="968"
id="namedview52"
showgrid="true"
inkscape:zoom="25.615385"
inkscape:cx="20.436413"
inkscape:cy="13"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:snap-to-guides="true"
inkscape:snap-grids="true">
<inkscape:grid
type="xygrid"
id="grid3033"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<rect
transform="matrix(0,-1,1,0,0,0)"
height="21.994465"
width="12.99073"
y="1.5596062"
x="-17.520231"
id="rect8"
style="fill:#ffffff;stroke:#484848;stroke-width:0.99127513000000000;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 1.5927632,8.9410802 a 2.0341261,1.8090857 0 1 1 0.012585,3.6181538"
id="path10"
inkscape:connector-curvature="0"
style="fill:none;stroke:#484848;stroke-width:0.99127518999999997;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5188339"
x="-20.502354"
id="rect30"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5071146,16.522119 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.507601"
x="-20.513519"
id="rect30-5"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.495882,16.533284 a 0.98526485,0.92342205 0 0 1 0,1.846845 0.98526485,0.92342205 0 1 1 0,-1.846845 z"
id="path32-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.499128"
x="-20.488094"
id="rect30-2"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.487408,16.507861 a 0.98526485,0.92342205 0 0 1 0,1.846844 0.98526485,0.92342205 0 1 1 0,-1.846844 z"
id="path32-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="3.5339792"
x="-7.5303874"
id="rect30-1"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 5.5222603,3.5501532 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-3"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="10.522747"
x="-7.5415525"
id="rect30-5-6"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 12.511028,3.5613187 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-4-0"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
transform="matrix(0,-1,1,0,0,0)"
height="3.9761357"
width="5.9874525"
y="17.514275"
x="-7.516129"
id="rect30-2-8"
style="fill:#ff7800;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="m 19.502554,3.535895 a 0.98526485,0.92342205 0 0 1 0,1.8468441 0.98526485,0.92342205 0 1 1 0,-1.8468441 z"
id="path32-0-4"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#484848;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="0.95373797"
height="13.958503"
width="11.03963"
y="10.016949"
x="13.978938"
id="rect42"
style="fill:#3e3e3e" />
<text
xml:space="preserve"
style="font-size:13.32437897px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#fff6f6;fill-opacity:1;stroke:none;font-family:Sans"
x="16.649334"
y="21.141987"
id="text3035"
sodipodi:linespacing="125%"
transform="scale(0.96099939,1.0405834)"><tspan
sodipodi:role="line"
id="tspan3037"
x="16.649334"
y="21.141987"
style="font-weight:bold;fill:#fff6f6;fill-opacity:1;-inkscape-font-specification:Sans Bold">#</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -1,216 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48"
width="48"
version="1.1"
viewBox="0 0 48 48"
id="svg2"
inkscape:version="0.48.1 "
sodipodi:docname="new_module.svg">
<metadata
id="metadata69">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="968"
id="namedview67"
showgrid="false"
inkscape:zoom="14.880258"
inkscape:cx="25.035303"
inkscape:cy="22.670012"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<defs
id="defs4">
<radialGradient
id="a"
gradientUnits="userSpaceOnUse"
cy="115.71"
cx="63.912"
gradientTransform="matrix(1.0014 0 0 .081174 28.49 150.31)"
r="63.912">
<stop
offset="0"
id="stop7" />
<stop
stop-opacity="0"
offset="1"
id="stop9" />
</radialGradient>
</defs>
<g
transform="matrix(0,-2.848,2.44,0,1.8736,51.304)"
id="g11">
<rect
fill-opacity="0"
height="16"
width="16"
y="0"
x="0"
id="rect13" />
</g>
<g
id="g19"
style="stroke-linejoin:round;stroke:#000000;stroke-opacity:1;stroke-width:0.73196075999999999;stroke-miterlimit:4;stroke-dasharray:none;fill:#c8c8c8;fill-opacity:1"
transform="matrix(0,-2.9006493,2.5738852,0,1.9299993,-6.0340112)">
<rect
transform="matrix(0,1,-1,0,0,0)"
height="14.619"
width="9.7086"
y="3.4905"
x="1.904"
id="rect21"
style="fill:#c8c8c8;stroke:#000000;stroke-width:0.73196075999999999;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1" />
<path
d="m 693.26,625.06 a 18.91409,18.91409 0 0 1 -37.828,0.11702"
transform="matrix(0,0.071482,-0.071482,0,41.168,-41.24)"
id="path23"
inkscape:connector-curvature="0"
style="fill:#c8c8c8;stroke:#000000;stroke-width:10.23979123000000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1" />
</g>
<g
transform="matrix(0,-2.9006493,2.5738852,0,1.5439165,-5.9252369)"
id="g25"
style="stroke:#030303;stroke-linejoin:round">
<rect
transform="matrix(0,1,-1,0,0,0)"
height="2.5109999"
width="4.7175999"
y="13.332"
x="-0.31959"
id="rect27"
style="fill:#ff7800;stroke-width:0.30000001" />
<rect
transform="matrix(0,1,-1,0,0,0)"
height="2.5109999"
width="4.7175999"
y="5.3635998"
x="-0.31959"
id="rect29"
style="fill:#ff7800;stroke-width:0.30000001" />
<path
d="m 654.65,737.28 a 9.5805,9.5805 0 1 1 -19.161,0 9.5805,9.5805 0 1 1 19.161,0 z"
transform="matrix(0,0.071482,-0.071482,0,46.083,-44.072)"
id="path31"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke-width:4.19689989" />
<rect
transform="matrix(0,1,-1,0,0,0)"
height="2.5109999"
width="4.7175999"
y="9.3478003"
x="-0.31959"
id="rect33"
style="fill:#ff7800;stroke-width:0.30000001" />
<path
d="m 654.65,737.28 a 9.5805,9.5805 0 1 1 -19.161,0 9.5805,9.5805 0 1 1 19.161,0 z"
transform="matrix(0,0.071482,-0.071482,0,42.08,-44.072)"
id="path35"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke-width:4.19689989" />
<path
d="m 654.65,737.28 a 9.5805,9.5805 0 1 1 -19.161,0 9.5805,9.5805 0 1 1 19.161,0 z"
transform="matrix(0,0.071482,-0.071482,0,38.077,-44.072)"
id="path37"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke-width:4.19689989" />
</g>
<g
transform="matrix(0,-2.9006493,2.5738852,0,26.706476,-5.9252369)"
id="g39">
<rect
transform="matrix(0,1,-1,0,0,0)"
height="2.5109999"
width="4.7175999"
y="13.332"
x="-0.31959"
id="rect41"
style="fill:#ff7800;stroke:#030303;stroke-width:0.30000001;stroke-linejoin:round" />
<rect
transform="matrix(0,1,-1,0,0,0)"
height="2.5109999"
width="4.7175999"
y="5.3635998"
x="-0.31959"
id="rect43"
style="fill:#ff7800;stroke:#030303;stroke-width:0.30000001;stroke-linejoin:round" />
<path
d="m 654.65,737.28 a 9.5805,9.5805 0 1 1 -19.161,0 9.5805,9.5805 0 1 1 19.161,0 z"
transform="matrix(0,0.071482,-0.071482,0,46.083,-44.072)"
id="path45"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#030303;stroke-width:4.19689989;stroke-linejoin:round" />
<rect
transform="matrix(0,1,-1,0,0,0)"
height="2.5109999"
width="4.7175999"
y="9.3478003"
x="-0.31959"
id="rect47"
style="fill:#ff7800;stroke:#030303;stroke-width:0.30000001;stroke-linejoin:round" />
<path
d="m 654.65,737.28 a 9.5805,9.5805 0 1 1 -19.161,0 9.5805,9.5805 0 1 1 19.161,0 z"
transform="matrix(0,0.071482,-0.071482,0,42.08,-44.072)"
id="path49"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#030303;stroke-width:4.19689989;stroke-linejoin:round" />
<g
id="g51"
style="stroke-width:0.30000001">
<path
d="m 654.65,737.28 a 9.5805,9.5805 0 1 1 -19.161,0 9.5805,9.5805 0 1 1 19.161,0 z"
transform="matrix(0,0.071482,-0.071482,0,38.077,-44.072)"
id="path53"
inkscape:connector-curvature="0"
style="fill:#ffede0;stroke:#030303;stroke-width:4.19689989;stroke-linejoin:round" />
</g>
</g>
<g
transform="matrix(4.7410975,0,0,4.2308951,-23.78118,26.886588)"
id="g59"
style="opacity:1">
<path
d="M 12,5.5 9.4826,4.1505 6.9438,5.4592 7.4494,2.648 5.4202,0.6379 8.25,0.25 9.5347,-2.301 10.778,0.2704 13.601,0.70392 11.54,2.68102 z"
transform="matrix(0.86499,0,0,0.86499,3.3638,-4.5167)"
id="path61"
style="fill:#afaf00"
inkscape:connector-curvature="0" />
<path
d="M 12,5.5 9.4826,4.1505 6.9438,5.4592 7.4494,2.648 5.4202,0.6379 8.25,0.25 9.5347,-2.301 10.778,0.2704 13.601,0.70392 11.54,2.68102 z"
transform="matrix(0.61624,0,0,0.61624,5.7296,-4.1188)"
id="path63"
style="fill:#ebeb00"
inkscape:connector-curvature="0" />
<path
d="M 12,5.5 9.4826,4.1505 6.9438,5.4592 7.4494,2.648 5.4202,0.6379 8.25,0.25 9.5347,-2.301 10.778,0.2704 13.601,0.70392 11.54,2.68102 z"
transform="matrix(0.3815,0,0,0.3815,7.9622,-3.7434)"
id="path65"
style="fill:#ffff00"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -12,7 +12,7 @@
width="26"
version="1.0"
id="svg2"
inkscape:version="0.47 r22583"
inkscape:version="0.48.2 r9819"
sodipodi:docname="plot.svg">
<metadata
id="metadata249">
@ -22,7 +22,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
@ -35,17 +35,17 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="949"
inkscape:window-width="1600"
inkscape:window-height="841"
id="namedview247"
showgrid="true"
inkscape:snap-grids="false"
inkscape:snap-to-guides="false"
inkscape:zoom="6.6666668"
inkscape:cx="7.4854788"
inkscape:cy="4.8205635"
inkscape:zoom="19.416417"
inkscape:cx="-5.9009344"
inkscape:cy="15.933751"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
@ -316,15 +316,25 @@
width="12.0375" />
<text
xml:space="preserve"
style="font-size:19.04494285999999903px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#168dc1;fill-opacity:1;stroke:#fdf8f1;stroke-width:1.01899998999999997;stroke-opacity:1;font-family:Sans;stroke-miterlimit:4;stroke-dasharray:none"
x="-1.1046221"
y="14.35789"
style="font-size:19.81988144px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#183f51;fill-opacity:1;stroke:#fdf8f1;stroke-width:1.06046307;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:Sans"
x="-1.193442"
y="14.883414"
id="text3097"
sodipodi:linespacing="125%"
transform="scale(0.87103774,1.1480559)"><tspan
transform="scale(0.84648552,1.1813551)"><tspan
sodipodi:role="line"
id="tspan3099"
x="-1.1046221"
y="14.35789"
style="font-weight:bold;fill:#168dc1;fill-opacity:1;stroke:#fdf8f1;stroke-width:1.01899998999999997;stroke-opacity:1;-inkscape-font-specification:Sans Bold;stroke-miterlimit:4;stroke-dasharray:none">P</tspan></text>
x="-1.193442"
y="14.883414"
style="font-weight:bold;fill:#183f51;fill-opacity:1;stroke:#fdf8f1;stroke-width:1.06046307;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;-inkscape-font-specification:Sans Bold">P</tspan></text>
<path
sodipodi:type="arc"
style="fill:#fdf8f1;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3030"
sodipodi:cx="5.7425632"
sodipodi:cy="6.0684133"
sodipodi:rx="1.6738412"
sodipodi:ry="2.2146208"
d="m 7.4164045,6.0684133 a 1.6738412,2.2146208 0 1 1 -3.3476825,0 1.6738412,2.2146208 0 1 1 3.3476825,0 z"
transform="matrix(1.1846154,0,0,1,-1.5236908,-0.10300562)" />
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,452 +0,0 @@
# Generate a static library target named "bitmaps"
# (with filename libbitmaps.a on Linux)
# Copy the *.xpm files to ${XPM_CPP_PATH}/*.cpp, on change only.
# Compile those *.cpp files and put them into the library, then done.
# bitmap file names should be all lowercase and basename thereof should also
# be a valid C++ identifier name. This means no leading number, or embedded - or +
set(BITMAP_SRCS
add_arc.xpm
add_bus2bus.xpm
add_bus.xpm
add_circle.xpm
add_component.xpm
add_corner.xpm
add_dashed_line.xpm
add_dimension.xpm
add_entry.xpm
add_glabel.xpm
add_hierarchical_label.xpm
add_hierar_pin.xpm
add_hierar_subsheet.xpm
add_junction.xpm
add_line2bus.xpm
add_line_label.xpm
add_line.xpm
add_mires.xpm
add_polygon.xpm
add_power.xpm
add_rectangle.xpm
add_text.xpm
add_tracks.xpm
add_zone_cutout.xpm
add_zone.xpm
anchor.xpm
annotate_down_right.xpm
annotate_right_down.xpm
annotate.xpm
apply.xpm
auto_associe.xpm
auto_delete_track.xpm
auto_track_width.xpm
axis3d_back.xpm
axis3d_bottom.xpm
axis3d_front.xpm
axis3d_left.xpm
axis3d_right.xpm
axis3d_top.xpm
axis3d.xpm
bom.xpm
book.xpm
break_bus.xpm
break_line.xpm
browse_files.xpm
cancel_tool.xpm
cancel.xpm
create_cmp_file.xpm
checked_ok.xpm
component_select_unit.xpm
component_select_alternate_shape.xpm
config.xpm
copyblock.xpm
copycomponent.xmp
copy_button.xpm
copper_layers_setup.cpp
cursor_shape.xpm
cursor.xpm
cut_button.xpm
cvpcb.xpm
dashline.xpm
datasheet.xpm
delete_body.xpm
delete_arc.xpm
delete_association.xpm
delete_bus.xpm
delete_circle.xpm
delete_connection.xpm
delete_cotation.xpm
delete_field.xpm
delete_glabel.xpm
delete_line.xpm
delete_module.xpm
delete_net.xpm
delete_node.xpm
delete_pad.xpm
delete_pinsheet.xpm
delete_pin.xpm
delete_polygon.xpm
delete_rectangle.xpm
delete_segment.xpm
delete_sheet.xpm
delete_text.xpm
delete_track.xpm
delete.xpm
directory.xpm
display_options.xpm
down.xpm
drag_module.xpm
drag_outline_segment.xpm
drag_pad.xpm
drag_segment_withslope.xpm
drag_track_segment.xpm
drc_off.xpm
drc.xpm
edges_sketch.xpm
edit_comp_footprint.xpm
edit_component.xpm
edit_comp_ref.xpm
edit_comp_value.xpm
edit_module.xpm
editor.xpm
edit_part.xpm
edit_sheet.xpm
edit_text.xpm
edit.xpm
eeschema.xpm
enter_sheet.xpm
ercerr.xpm
erc_green.xpm
ercwarn.xpm
erc.xpm
exit.xpm
export_footprint_names.xpm
export_module.xpm
export_options_pad.xpm
export.xpm
fabrication.xpm
file_footprint.xpm
fill_zone.xpm
find_xpm.xpm
flag.xpm
fonts.xpmr
footprint_text.xpm
gbr_select_mode0.xpm
gbr_select_mode1.xpm
gbr_select_mode2.xpm
gerber_file.xpm
gerber_recent_files.xpm
gerbview_drill_file.xpm
gerbview_clear_layers.xpm
gerber_open_dcode_file.xpm
general_deletions.xpm
general_ratsnet.xpm
glabel2label.xpm
glabel2text.xpm
gl_change.xpm
global_options_pad.xpm
green.xpm
grid_select.xpm
grid_select_axis.xpm
grid.xpm
hammer.xpm
help.xpm
hidden_pin.xpm
hierarchy_cursor.xpm
hierarchy_nav.xpm
hotkeys.xpm
icon_3d.xpm
icon_cvpcb_small.xpm
icon_cvpcb.xpm
icon_eeschema.xpm
icon_gerbview_small.xpm
icon_gerbview.xpm
icon_kicad.xpm
icon_modedit.xpm
icon_pcbnew.xpm
icon_pcbcalculator.xpm
icon_bitmap2component.xpm
icon_txt.xpm
import3d.xpm
image.xpm
import_cmp_from_lib.xpm
import_footprint_names.xpm
import_hierarchical_label.xpm
import_module.xpm
import.xpm
info.xpm
insert_module_board.xpm
invert_module.xpm
invisible_text.xpm
jigsaw.xpm
kicad_icon_small.xpm
label2glabel.xpm
label2text.xpm
label.xpm
lang_catalan.xpm
lang_chinese.xpm
lang_cs.xpm
lang_default.xpm
lang_de.xpm
lang_en.xpm
lang_es.xpm
lang_fr.xpm
lang_fi.xpm
lang_gr.xpm
lang_hu.xpm
lang_it.xpm
lang_jp.xpm
lang_ko.xpm
lang_nl.xpm
lang_pl.xpm
lang_pt.xpm
lang_ru.xpm
lang_sl.xpm
language.xpm
layers_manager.xpm
leave_sheet.xpm
left.xpm
libedit_icon.xpm
libedit.xpm
libedprt.xpm
lib_next.xpm
lib_previous.xpm
library_browse.xpm
library_update.xpm
library.xpm
libsavem.xpm
libview.xpm
lines90.xpm
load_module_board.xpm
load_module_lib.xpm
local_ratsnest.xpm
locked.xpm
mirepcb.xpm
mirror_h.xpm
mirror_v.xpm
modedit.xpm
mode_module.xpm
mode_track.xpm
modratsnest.xpm
module_check.xpm
modul_edit.xpm
module_filtered_list.xpm
module_full_list.xpm
module_options.xpm
# module_ratsnest.xpm
module.xpm
morgan1.xpm
morgan2.xpm
move_arc.xpm
move_circle.xpm
move_field.xpm
move_glabel.xpm
move_line.xpm
move_module.xpm
move_pad.xpm
move_pinsheet.xpm
move_pin.xpm
move_polygon.xpm
move_rectangle.xpm
move_sheet.xpm
move_text.xpm
move_track_segment.xpm
move_track.xpm
move.xpm
mw_add_gap.xpm
mw_add_line.xpm
mw_add_shape.xpm
mw_add_stub_arc.xpm
mw_add_stub.xpm
mw_toolbar.xpm
net_highlight.xpm
netlist.xpm
net_locked.xpm
net_unlocked.xpm
new_component.xpm
new_cvpcb.xpm
new_footprint.xpm
new_library.xpm
new_module.xpm
new_pcb.xpm
new_project.xpm
new_sch.xpm
new_txt.xpm
new.xpm
noconn.xpm
normal.xpm
online_help.xpm
open_library.xpm
open_project.xpm
open_document.xpm
options_all_tracks_and_vias.xpm
options_all_tracks.xpm
options_all_vias.xpm
options_arc.xpm
options_circle.xpm
options_module.xpm
options_new_pad.xpm
options_pad.xpm
options_pinsheet.xpm
options_pin.xpm
options_rectangle.xpm
options_segment.xpm
options_text.xpm
options_tracks.xpm
options_track.xpm
options_vias.xpm
opt_show_polygon.xpm
orient.xpm
ortho.xpm
pad_sketch.xpm
pad.xpm
pads_mask_layers.xpm
palette.xpm
part_properties.xpm
paste.xpm
pcbnew.xpm
pcboffset.xpm
pin2pin.xpm
pin_name_to.xpm
pin_number_to.xpm
pin_size_to.xpm
pinorient_right.xpm
pinorient_left.xpm
pinorient_up.xpm
pinorient_down.xpm
pinshape_normal.xpm
pinshape_invert.xpm
pinshape_clock_normal.xpm
pinshape_clock_invert.xpm
pinshape_active_low_input.xpm
pinshape_clock_active_low.xpm
pinshape_active_low_output.xpm
pinshape_clock_fall.xpm
pinshape_nonlogic.xpm
pintype_input.xpm
pintype_output.xpm
pintype_bidi.xpm
pintype_3states.xpm
pintype_passive.xpm
pintype_notspecif.xpm
pintype_powerinput.xpm
pintype_poweroutput.xpm
pintype_opencoll.xpm
pintype_openemit.xpm
pintype_noconnect.xpm
pin_to.xpm
pin.xpm
plot_hpg.xpm
plot_ps.xpm
plot_xpm.xpm
polar.xpm
post_compo.xpm
post_drill.xpm
post_module.xpm
preference.xpm
print_button.xpm
ratsnest.xpm
read_setup.xpm
redo.xpm
red.xpm
reload2.xpm
reload.xpm
reset_text.xpm
resize_sheet.xpm
right.xpm
rotate_field.xpm
rotate_glabel.xpm
rotate_module_neg.xpm
rotate_module_pos.xpm
rotate_pin.xpm
rotate_ccw.xpm
rotate_cw.xpm
rotate_neg_x.xpm
rotate_pos_x.xpm
rotate_neg_y.xpm
rotate_pos_y.xpm
rotate_neg_z.xpm
rotate_pos_z.xpm
save_as.xpm
save_library.xpm
save_netlist.xpm
save_project.xpm
save_setup.xpm
save.xpm
schematic.xpm
select_grid.xpm
select_layer_pair.xpm
select_w_layer.xpm
shape_3d.xpm
sheetset.xpm
showdcode.xpm
show_footprint.xpm
showmodedge.xpm
showtrack.xpm
show_zone.xpm
show_zone_disable.xpm
show_zone_outline_only.xpm
swap_layer.xpm
text_sketch.xpm
three_d.xpm
tool_ratsnest.xpm
tools.xpm
track_locked.xpm
track_sketch.xpm
track_unlocked.xpm
transistor.xpm
treensel.xpm
treesel.xpm
undelete.xpm
undo.xpm
unit_inch.xpm
unit_mm.xpm
unknown.xpm
unlocked.xpm
unzip.xpm
update_module_board.xpm
up.xpm
via_sketch.xpm
viewlibs_icon.xpm
web_support.xpm
width_net.xpm
width_segment.xpm
width_track_via.xpm
width_track.xpm
width_vias.xpm
window_close.xpm
zip_tool.xpm
zip.xpm
zoom.xpm
zoom_area.xpm
zoom_fit_in_page.xpm
zoom_center_on_screen.xpm
zoom_in.xpm
zoom_out.xpm
zoom_redraw.xpm
zoom_selection.xpm
)
# Get the path of the *.xpm files into "PATH"
set(PATH ${CMAKE_CURRENT_SOURCE_DIR})
#message("PATH = ${PATH}")
# The name of the directory to put the copied and renamed *.xpm files into.
# As files are copied they are renamed to *.cpp.
set(XPM_CPP_PATH "${CMAKE_BINARY_DIR}/bitmaps/auto_renamed_to_cpp"
CACHE PATH "path to store renamed .xpm files for compilation")
foreach(LOOP_VAR ${BITMAP_SRCS})
get_filename_component(BASENAME ${LOOP_VAR} NAME_WE)
set(CPP_BITMAP "${XPM_CPP_PATH}/${BASENAME}.cpp")
add_custom_command(
OUTPUT ${CPP_BITMAP}
COMMAND "${CMAKE_COMMAND}" -E copy "${PATH}/${BASENAME}.xpm" "${CPP_BITMAP}"
DEPENDS ${BASENAME}.xpm)
list(APPEND CPP_BITMAPS ${CPP_BITMAP})
set_source_files_properties(${CPP_BITMAP} PROPERTIES COMPILE_FLAGS -DXPMMAIN)
endforeach(LOOP_VAR)
add_library(bitmaps STATIC ${CPP_BITMAPS})

View File

@ -1,75 +0,0 @@
/* XPM */
#include "bitmaps.h"
#ifndef XPMMAIN
extern const char *add_arc_xpm[];
#else
const char * add_arc_xpm[] = {
"16 16 48 1",
" c None",
". c #222224",
"+ c #07071F",
"@ c #000087",
"# c #00009C",
"$ c #00009B",
"% c #474747",
"& c #FEE2CA",
"* c #C59A74",
"= c #000047",
"- c #00009A",
"; c #000095",
"> c #473C33",
", c #FEBB7F",
"' c #C57B3A",
") c #000015",
"! c #000017",
"~ c #00003A",
"{ c #000075",
"] c #000097",
"^ c #000096",
"/ c #211306",
"( c #060300",
"_ c #000000",
": c #000083",
"< c #000094",
"[ c #00008D",
"} c #000090",
"| c #000055",
"1 c #000081",
"2 c #222222",
"3 c #080807",
"4 c #000091",
"5 c #00008B",
"6 c #070300",
"7 c #14141F",
"8 c #12112D",
"9 c #000059",
"0 c #161616",
"a c #F2D7C1",
"b c #F2BD8E",
"c c #120C10",
"d c #161210",
"e c #F2B279",
"f c #F29747",
"g c #130901",
"h c #140B04",
"i c #140900",
" ",
" .+@#$#$ ",
" %&*=$$$$-; ",
" >,')! ~{]$^ ",
" /(_ :$< ",
" [$} ",
" ]$| ",
" -$1 ",
" 23 $4 ",
" %&*_ $; ",
" >,'_ $5 ",
" /6 789 ",
" 0abc ",
" defg ",
" hi_ ",
" "};
#endif

View File

@ -1,28 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_bus_xpm[];
#else
const char * add_bus_xpm[] = {
"16 16 4 1",
" c None",
"! c black",
"# c #0046D9",
"$ c #9B9B9B",
" ",
"###### ",
"###### ",
" $$$##$ ",
" ##$ ",
" ##$ ",
" ##$ ",
" ##$ ",
" ##$ ",
" ##$ ",
" ########### ",
" ########### ",
" $$$$$$$$$$",
" ",
" ",
" "};
#endif

View File

@ -1,62 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_bus2bus_xpm[];
#else
const char * add_bus2bus_xpm[] = {
"16 16 38 1",
" c None",
". c #AFAFFF",
"+ c #9B9B9B",
"@ c #00009A",
"# c #02029B",
"$ c #A4A4CA",
"% c #91919A",
"& c #00009B",
"* c #03039A",
"= c #5F5F9A",
"- c #ACACFD",
"; c #16169B",
"> c #0F0F9B",
", c #7A7A9B",
"' c #A9A9FC",
") c #25259A",
"! c #8C8C9A",
"~ c #AAAAFC",
"{ c #41419A",
"] c #96969A",
"^ c #0D0D9A",
"/ c #909099",
"( c #08089A",
"_ c #A9A9F9",
": c #97979A",
"< c #19199A",
"[ c #01019B",
"} c #A5A5CD",
"| c #AEAEFC",
"1 c #929299",
"2 c #0F0F9A",
"3 c #5D5D9B",
"4 c #18189A",
"5 c #77779B",
"6 c #22229A",
"7 c #898999",
"8 c #3E3E9B",
"9 c #96969B",
" .. ",
" ..+ @....... ",
" ..+ @#.......$",
" ..%@&*=++++++++",
" .-;&>, ",
" .'&)! @....... ",
" .~{]^@#.......$",
" ../@&*=++++++++",
" .-;&>, ",
" .'&)! (........",
" ._{:<[&.......}",
" .|12&*3++++++++",
" ..4&>5 ",
" ..&67 ",
" ..89 ",
" .}+ "};
#endif

View File

@ -1,60 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_circle_xpm[];
#else
const char * add_circle_xpm[] = {
"16 16 36 1",
" c None",
". c #00009B",
"+ c #000096",
"@ c #00008C",
"# c #000053",
"$ c #00008A",
"% c #00009A",
"& c #000073",
"* c #00007A",
"= c #000092",
"- c #00006F",
"; c #161616",
"> c #161513",
", c #12122F",
"' c #121125",
") c #F2D7C1",
"! c #F2BD8E",
"~ c #140D08",
"{ c #151519",
"] c #130D07",
"^ c #161210",
"/ c #F2B279",
"( c #F29747",
"_ c #140A01",
": c #151213",
"< c #130901",
"[ c #140B04",
"} c #140900",
"| c #000000",
"1 c #120A18",
"2 c #12080C",
"3 c #00003F",
"4 c #000094",
"5 c #000044",
"6 c #000083",
"7 c #00006A",
" .... ",
" .......+ ",
" ..@# #$.% ",
" ..& *.= ",
" .@ =.- ",
"..# ;> ,' ",
".. ;)!~ {)!] ",
".. ^/(_ :/(< ",
"..# [}| 12| ",
" .$ .@3| ",
" +.* ..4 ",
" %.= ..%5 ",
" =......45 ",
" -64467 ",
" ",
" "};
#endif

View File

@ -1,91 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_component_xpm[];
#else
const char * add_component_xpm[] = {
"16 16 67 1",
" c None",
"! c black",
"# c #D72E2E",
"$ c #D72F2F",
"% c #D62E2E",
"& c #D83434",
"' c #FEFEFF",
"( c #FBFBFF",
") c #F6F6FF",
"* c #F1F1FF",
"+ c #EBE9FC",
", c #E3C3D7",
"- c #DA6C77",
". c #D13838",
"0 c #FF0000",
"1 c #FAFAFF",
"2 c #F5F5FF",
"3 c #F0F0FF",
"4 c #EBEBFF",
"5 c #E6E6FF",
"6 c #E1E1FF",
"7 c #DBDBFF",
"8 c #D6555F",
"9 c #BD5C5C",
": c #9B9B9B",
"; c #F4F4FF",
"< c #EFEFFF",
"= c #EAEAFF",
"> c #E5E5FF",
"? c #E0E0FF",
"@ c #D6D6FF",
"A c #D390AC",
"B c #CB4444",
"C c #E4E4FF",
"D c #DFDFFF",
"E c #DADAFF",
"F c #D5D5FF",
"G c #D0D0FF",
"H c #CCB8E6",
"I c #D73334",
"J c #E9E9FF",
"K c #D4D4FF",
"L c #CFCFFF",
"M c #CACAFF",
"N c #CB8BAF",
"O c #CB4141",
"P c #E3E3FF",
"Q c #DEDEFF",
"R c #D9D9FF",
"S c #C9C9FF",
"T c #C4C4FF",
"U c #D05364",
"V c #B96262",
"W c #9C9C9C",
"X c #DDDDFF",
"Y c #D8D8FF",
"Z c #D3D3FF",
"[ c #CECEFF",
"] c #C9C7FC",
"^ c #C7A8D8",
"_ c #CE647C",
"` c #CD3E3E",
"a c #9E9595",
"b c #D62F2F",
"c c #CC4141",
"d c #BC5C5C",
"e c #9D9595",
" ",
" ",
" ",
" ######$% ",
" &'()*+,-. ",
"0##&123456789 ",
" :&;<=>?7@AB ",
" &<=CDEFGH###0",
" IJCDEKLMNO:::",
" IPQRKLSTUVW ",
"0##IXYZ[]^_`a ",
" :#####bcde: ",
" :::::::: ",
" ",
" ",
" "};
#endif

View File

@ -1,34 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_corner_xpm[];
#else
const char * add_corner_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 7 1",
" c None",
"X c #808080",
". c #008000",
"+ c #FFFF00",
"@ c #800000",
"o c #C0C0C0",
"O c #808000",
/* pixels */
" .XX ",
" .XX ",
" XooO ",
" ooX ",
"..X ooooX ..... ",
"X.XoooooX XXXXXX",
"XX ooo++O XXXXXX",
" X OOO@ X ",
" X X ",
" X.XX ",
" .XX ",
" .XX ",
" .XX ",
" .XX ",
" .XX ",
" XX "
};
#endif

View File

@ -1,39 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_dashed_line_xpm[];
#else
const char * add_dashed_line_xpm[] = {
"16 16 15 1",
" c None",
". c #03039B",
"+ c #8E8E9B",
"@ c #00009B",
"# c #1F1F9B",
"$ c #93939B",
"% c #00009A",
"& c #46469A",
"* c #9B9B9B",
"= c #93939A",
"- c #16169A",
"; c #0B0B9B",
"> c #97979B",
", c #1E1E9B",
"' c #91919B",
" ",
" .+ ",
" @#$ ",
" @#$ ",
" @#$ ",
" ",
" %&* ",
" %#= ",
" %#= ",
" -= ",
" ;* ",
" @#> ",
" @#$ ",
" @,$ ",
" ' ",
" "};
#endif

View File

@ -1,34 +0,0 @@
/* XPM */
const char * add_dimension_xpm[] = {
/* columns rows colors const chars-per-pixel */
"16 16 14 1",
" c None",
". c #000000",
"+ c #00009B",
"@ c #000097",
"# c #000099",
"$ c #00008B",
"% c #000095",
"& c #000088",
"* c #000072",
"= c #000066",
"- c #000093",
"; c #00008F",
"> c #000082",
", c #00009C",
" ",
" . . ",
" .. . ",
" .... ",
" . . ",
"+ +@ . . # + ",
"+$@ %+ ",
"+#+++++++++++++ ",
"+&* =-+.",
"+ ;> , + ",
"+ + ",
"+ + ",
"+ + ",
"+ + ",
"+ + ",
" "};

View File

@ -1,34 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_entry_xpm[];
#else
const char * add_entry_xpm[] = {
"16 16 10 1",
" c None",
". c #006800",
"+ c #006900",
"@ c #6C8B6C",
"# c #9B9B9B",
"$ c #6C8C6C",
"% c #9A9A9A",
"& c #6B8B6B",
"* c #9C9C9C",
"= c #6A8B6A",
" ",
" ",
" . ",
" +@ ",
" +@# ",
" +$% ",
" +$% ",
" +&# ",
" .&* ",
" .&* ",
" .&# ",
" +=# ",
" =# ",
" % ",
" ",
" "};
#endif

View File

@ -1,78 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_glabel_xpm[];
#else
const char * add_glabel_xpm[] = {
"16 16 54 1",
" c None",
". c #695F00",
"+ c #837E52",
"@ c #6D640F",
"# c #6F6714",
"$ c #706818",
"% c #9C9C9C",
"& c #9191FF",
"* c #9B9BFF",
"= c #A5A5FF",
"- c #857F66",
"; c #746D25",
"> c #827D4F",
", c #7E7841",
"' c #8F8C76",
") c #9E9EFF",
"! c #A8A8FF",
"~ c #B2B2FF",
"{ c #BBBBF9",
"] c #7D7539",
"^ c #7A7437",
"/ c #95948B",
"( c #878460",
"_ c #7D773E",
": c #ACACFF",
"< c #B6B6FF",
"[ c #C0C0FF",
"} c #CACAFF",
"| c #BFBDCC",
"1 c #8C896D",
"2 c #6C6209",
"3 c #989894",
"4 c #B9B9FF",
"5 c #C3C3FF",
"6 c #CECEFF",
"7 c #D5D5F9",
"8 c #847C39",
"9 c #7B7437",
"0 c #9B9B9B",
"a c #797233",
"b c #817C4D",
"c c #756D25",
"d c #898664",
"e c #C7C7FF",
"f c #D1D1FF",
"g c #DBDBFF",
"h c #9B9566",
"i c #999997",
"j c #96958D",
"k c #86825B",
"l c #766F2B",
"m c #706716",
"n c #97968F",
"o c #9A9A9A",
" ",
" ",
" ",
" .. ",
" ...+ ..... ",
" .@#$% .&*=-; ",
" .>,.' .)!~{]^ ",
" ../(._ .:<[}|.1",
" .....23.4567890",
"..abbc.d.efgh;i0",
"..j00k.l....mn0 ",
" o0 0o00000 ",
" ",
" ",
" ",
" "};
#endif

View File

@ -1,61 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_hierar_pin_xpm[];
#else
const char * add_hierar_pin_xpm[] = {
"16 16 37 1",
" c None",
"! c black",
"# c white",
"$ c #FDFDFD",
"% c #FCFCFC",
"& c #666666",
"' c #D99300",
"( c #F0F0F0",
") c #707070",
"* c #151515",
"+ c #747474",
", c #4A4A48",
"- c #ECECEC",
". c #EAEAEA",
"0 c #FF0000",
"1 c #D1D1D1",
"2 c #C4C4C4",
"3 c #287C00",
"4 c #EBEBEB",
"5 c #C3C3C3",
"6 c #3CBA00",
"7 c #0D0D0D",
"8 c #C2C2C2",
"9 c #0055F0",
": c #0C0C0C",
"; c #C0C0C0",
"< c #090909",
"= c #BFBFBF",
"> c #060606",
"? c #BEBEBE",
"@ c #040404",
"A c #BDBDBD",
"B c #010101",
"C c #BCBCBC",
"D c #BABABA",
"E c #B8B8B8",
"F c #9F9F9F",
" !!!!!!!!!!!! ",
"!####$$$$$%&'! ",
"!###$((((((&''! ",
"!###$((((((&'''!",
"!#)!!!!****!+,*!",
"!#!----...!0!12!",
"!#!333--44!00!5!",
"!#!6663-44!!!78!",
"!996663399945:;!",
"!#!6663-44945<=!",
"!#!333-444995>?!",
"!#!----444445@A!",
"!#!5552555555BC!",
"!#)!!!!!!!!!!)D!",
"!EEEEEEEEEEEEEF!",
" !!!!!!!!!!!!!! "};
#endif

View File

@ -1,59 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_hierarchical_subsheet_xpm[];
#else
const char * add_hierarchical_subsheet_xpm[] = {
"16 16 35 1",
" c None",
"! c black",
"# c white",
"$ c #FDFDFD",
"% c #FCFCFC",
"& c #666666",
"' c #F00000",
"( c #F0F0F0",
") c #707070",
"* c #151515",
"+ c #747474",
", c #4A4A48",
"- c #ECECEC",
". c #EAEAEA",
"0 c #FFCE6C",
"1 c #D1D1D1",
"2 c #C4C4C4",
"3 c #EBEBEB",
"4 c #C3C3C3",
"5 c #0D0D0D",
"6 c #C2C2C2",
"7 c #0C0C0C",
"8 c #C0C0C0",
"9 c #090909",
": c #BFBFBF",
"; c #060606",
"< c #BEBEBE",
"= c #040404",
"> c #BDBDBD",
"? c #010101",
"@ c #BCBCBC",
"A c #BABABA",
"B c #C1C1C1",
"C c #BBBBBB",
"D c #9F9F9F",
" !!!!!!!!!!!! ",
"!####$$$$$%&'! ",
"!###$((((((&''! ",
"!###$((((((&'''!",
"!#)!!!!****!+,*!",
"!#!----...!0!12!",
"!#!-----33!00!4!",
"!#!-----33!!!56!",
"!#!-----3333478!",
"!#!-----333349:!",
"!#!----333334;<!",
"!#!----333334=>!",
"!#!4442444444?@!",
"!#)!!!!!!!!!!)A!",
"!###B@@@CCAAAAD!",
" !!!!!!!!!!!!!! "};
#endif

View File

@ -1,75 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_hierarchical_label_xpm[];
#else
const char *add_hierarchical_label_xpm[]={
"16 16 51 1",
"c c None",
"# c None",
"b c #303030",
"e c #695f00",
"G c #6c6209",
"g c #6d640f",
"h c #6f6714",
"V c #706716",
"i c #706818",
"o c #746d25",
"O c #756d25",
"U c #766f2b",
"x c #7a7437",
"M c #7b7437",
"w c #7d7539",
"z c #7d773e",
". c #800080",
"f c #837e52",
"L c #847c39",
"n c #857f66",
"P c #898664",
"F c #8c896d",
"r c #8f8c76",
"k c #9191ff",
"q c #97968f",
"H c #989894",
"T c #999997",
"W c #9a9a9a",
"N c #9b9566",
"p c #9b9b9b",
"l c #9b9bff",
"j c #9c9c9c",
"s c #9e9eff",
"m c #a5a5ff",
"t c #a8a8ff",
"A c #acacff",
"u c #b2b2ff",
"B c #b6b6ff",
"I c #b9b9ff",
"v c #bbbbf9",
"E c #bfbdcc",
"C c #c0c0ff",
"J c #c3c3ff",
"Q c #c7c7ff",
"D c #cacaff",
"y c #ceceff",
"R c #d1d1ff",
"K c #d5d5f9",
"S c #dbdbff",
"d c #dcdcdc",
"a c #ffffff",
".....###########",
"aaab..c#########",
"aaabd..c########",
"aaabdd..########",
"aaabbbb.########",
"aaaeedd.########",
"aaeeefd.eeeee###",
"aaeghij.eklmno##",
"aaepqer.estuvwx#",
"aeeyyez.eABCDEeF",
"aeeeeeGHeIJyKLMp",
"eeNNNOePeQRSNoTp",
"eeyyyyeUeeeeVqp#",
"ddddddd.Wppppp##",
"ddddddd.########",
"........########"};
#endif

View File

@ -1,84 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_junction_xpm[];
#else
const char * add_junction_xpm[] = {
"16 16 60 1",
" c None",
". c #007D00",
"+ c #4D8B4D",
"@ c #9B9B9B",
"# c #000000",
"$ c #000700",
"% c #0A130A",
"& c #282828",
"* c #222222",
"= c #868483",
"- c #E1D5CA",
"; c #B7A595",
"> c #564A3F",
", c #080707",
"' c #151515",
") c #EAE2DB",
"! c #FFEBDA",
"~ c #FFE0C5",
"{ c #FFD5B1",
"] c #FFCA9C",
"^ c #806044",
"/ c #004C00",
"( c #645F59",
"_ c #FFE6CF",
": c #FFDBBB",
"< c #FFD0A6",
"[ c #FFC591",
"} c #FFBA7D",
"| c #E49C5D",
"1 c #000D00",
"2 c #2F552F",
"3 c #64584D",
"4 c #FFD5B0",
"5 c #FFCA9B",
"6 c #FFBF87",
"7 c #FFB472",
"8 c #FFA95D",
"9 c #E48D41",
"0 c #080F08",
"a c #757575",
"b c #16120F",
"c c #EAB485",
"d c #FFB97C",
"e c #FFAF67",
"f c #FFA453",
"g c #FF993E",
"h c #804715",
"i c #3A3A3A",
"j c #414141",
"k c #22180F",
"l c #865931",
"m c #E18B40",
"n c #B76925",
"o c #562E0A",
"p c #131110",
"q c #8E8E8E",
"r c #686868",
"s c #242424",
"t c #3F3F3F",
"u c #909090",
" .. ",
" .+@ ",
" .+@ ",
" #$%& ",
" *=-;>, ",
" ')!~{]^* ",
".../(_:<[}|1... ",
".++234567890+++@",
" @@abcdefghi@@@@",
" jklmnopq ",
" rs$%tu ",
" @.+@ ",
" .+@ ",
" .+@ ",
" .+@ ",
" @@ "};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_line_xpm[];
#else
const char * add_line_xpm[] = {
"16 16 3 1",
" c None",
". c #006900",
"+ c #9B9B9B",
" ",
" ",
"...... ",
" ++++.+ ",
" .+ ",
" .+ ",
" .+ ",
" .+ ",
" .+ ",
" .+ ",
" .+ ",
" .......... ",
" ++++++++++",
" ",
" ",
" "};
#endif

View File

@ -1,55 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_line2bus_xpm[];
#else
const char * add_line2bus_xpm[] = {
"16 16 31 1",
" c None",
"! c black",
"# c #9B9BFF",
"$ c #006900",
"% c #95F400",
"& c #9B9B9B",
"' c #397B39",
"( c #026902",
") c #437E43",
"* c #FFFBF0",
"+ c #879487",
", c #046A04",
"- c #498049",
". c #788F78",
"0 c #126F12",
"1 c #4C814C",
"2 c #006800",
"3 c #397C39",
"4 c #4D814D",
"5 c #437F43",
"6 c #126E12",
"7 c #387B38",
"8 c #9A9A9A",
"9 c #4D824D",
": c #016901",
"; c #427E42",
"< c #488048",
"= c #799079",
"> c #4B814B",
"? c #869386",
"@ c #9B9BCD",
" ## $%%%%%%%%",
" ##& $'&&&&&&&&",
" ##& ()&********",
" ##+,-.$%%%%%%%%",
" ##01.23&&&&&&&&",
" ##4.(5&********",
" ##+,-.$%%%%%%%%",
" ##61.278&&&&&&&",
" ##9.:;&********",
" ##+,<=$%%%%%%%%",
" ##6>=23&&&&&&&&",
" ##9=(5& ",
" ##?,-& ",
" ##61& ",
" ##9& ",
" #@& "};
#endif

View File

@ -1,48 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_line_label_xpm[];
#else
const char * add_line_label_xpm[] = {
"16 16 24 1",
" c None",
". c #000000",
"+ c #020202",
"@ c #8D8D8D",
"# c #202020",
"$ c #555555",
"% c #9A9A9A",
"& c #8C8C8C",
"* c #080808",
"= c #161616",
"- c #9B9B9B",
"; c #131313",
"> c #969696",
", c #212121",
"' c #7C7C7C",
") c #414141",
"! c #515151",
"~ c #525252",
"{ c #070707",
"] c #0B0B0B",
"^ c #979797",
"/ c #1F1F1F",
"( c #6B6B6B",
"_ c #009B00",
" ",
" ..+ ",
" ..+@ ",
" .#.$% ",
" ..&*=- ",
" .;>,.' ",
" ......)- ",
" ..!~~{]^ ",
" ./-% #+( ",
" -- -- ",
" ",
"________________",
"________________",
"----------------",
" ",
" "};
#endif

View File

@ -1,88 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char* add_mires_xpm[];
#else
const char * add_mires_xpm[] = {
"16 16 64 1",
" c None",
"! c black",
"# c #1F1F1F",
"$ c #414141",
"% c #C4BD94",
"& c #F2EFC1",
"' c #A9A9A9",
"( c #939288",
") c #6C6642",
"* c #4B4B4B",
"+ c #E8DDA6",
", c #FFF8B5",
"- c #FFF8B3",
". c #949494",
"0 c #929292",
"1 c #8F8F8F",
"2 c #635E45",
"3 c #BDB384",
"4 c #FFF39E",
"5 c #FFF49D",
"6 c #FFF49C",
"7 c #7B7B7B",
"8 c #797979",
"9 c #767676",
": c #6C6C6C",
"; c #3F3606",
"< c #E8D97C",
"= c #FFEF86",
"> c #FFEF85",
"? c #FFEF83",
"@ c #626262",
"A c #5F5F5F",
"B c #5D5D5D",
"C c #545454",
"D c #201C04",
"E c #282827",
"F c #505050",
"G c #4E4E4E",
"H c #494949",
"I c #464646",
"J c #444444",
"K c #020200",
"L c #201B03",
"M c #141414",
"N c #292929",
"O c #313131",
"P c #2E2E2E",
"Q c #FFDF3C",
"R c #FFDA26",
"S c #FFD615",
"T c #D9B611",
"U c #3F3504",
"V c #FFD513",
"W c #FFD410",
"X c #FFD20C",
"Y c #7F6907",
"Z c #2D2502",
"[ c #FFD009",
"] c #FFCF07",
"^ c #AE8F08",
"_ c #3F3403",
"` c #201A00",
"a c #D9B005",
"b c #7F6806",
" # ",
" # ",
" !!#!! ",
" $%&'()! ",
" *+,-.012! ",
" !3456789:;! ",
" !<=>?@ABCD! ",
"##!EFG*HIJ#K!## ",
" !LMNOPQRST! ",
" !U!!!!VWXY! ",
" !Z!!![]^! ",
" !_`Kab! ",
" !!#!! ",
" # ",
" # ",
" "};
#endif

View File

@ -1,78 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_polygon_xpm[];
#else
const char * add_polygon_xpm[] = {
"16 16 54 1",
" c None",
". c #161616",
"+ c #161513",
"@ c #080808",
"# c #222222",
"$ c #F2D7C0",
"% c #F2BC8E",
"& c #120C24",
"* c #00009B",
"= c #000047",
"- c #C5C4C4",
"; c #FEE2CA",
"> c #46372A",
", c #16120F",
"' c #F2B279",
") c #F29647",
"! c #12091F",
"~ c #C5A68C",
"{ c #FEBB7F",
"] c #462B17",
"^ c #000033",
"/ c #140C04",
"( c #130900",
"_ c #000000",
": c #070402",
"< c #1F1211",
"[ c #00005E",
"} c #000091",
"| c #00008C",
"1 c #00009A",
"2 c #00005F",
"3 c #000040",
"4 c #858484",
"5 c #857D75",
"6 c #26262B",
"7 c #FFE3CB",
"8 c #FFC796",
"9 c #25190E",
"0 c #856243",
"a c #855327",
"b c #00006E",
"c c #12122F",
"d c #12112D",
"e c #F2D7C1",
"f c #F2BD8E",
"g c #130D07",
"h c #161210",
"i c #F29747",
"j c #12091E",
"k c #120F2A",
"l c #130901",
"m c #140B04",
"n c #130800",
"o c #130A04",
" .+ @# ",
".$%&**=-;> ",
",')!**=~{]^ ",
" /(__ :<[} ",
" |12 ",
" 345_ ",
" 6789 ",
" _0a_ ",
" bb_ ",
" ** ",
" ** ",
" .+ cd_ ",
" .ef&*****cefg ",
" h'ij*****k'il ",
" mn__ _on_ ",
" "};
#endif

View File

@ -1,50 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_power_xpm[];
#else
const char * add_power_xpm[] = {
"16 16 26 1",
" c None",
". c #D72D2D",
"+ c #E88B8B",
"@ c #ECDBE9",
"# c #D87B8B",
"$ c #C54C4C",
"% c #DCDCFF",
"& c #CAB9E9",
"* c #D13838",
"= c #9A9A9A",
"- c #C76A8B",
"; c #BE5959",
"> c #9B9B9B",
", c #D72E2E",
"' c #A18E8E",
") c #C35252",
"! c #DC4848",
"~ c #EFDAE5",
"{ c #E5E5FF",
"] c #D6C1E5",
"^ c #D54148",
"/ c #B96464",
"( c #D74348",
"_ c #CCA2CB",
": c #D33F48",
"< c #B37070",
" ",
" ... ",
" .+@#$ ",
" .@%&*= ",
" .#&-;> ",
" $,;'= ",
" ,>= ",
" ,> ",
" ,> ",
" > ",
" ,,,,,,,,, ",
" )!~{]^/>> ",
" )(_:/>> ",
" ),/>> ",
" <>> ",
" "};
#endif

View File

@ -1,48 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_rectangle_xpm[];
#else
const char * add_rectangle_xpm[] = {
"16 16 24 1",
" c None",
". c #161616",
"+ c #161513",
"@ c #F2D7C0",
"# c #F2BC8E",
"$ c #120C24",
"% c #00009B",
"& c #16120F",
"* c #F2B279",
"= c #F29647",
"- c #12091F",
"; c #120A21",
"> c #12081D",
", c #000000",
"' c #12122F",
") c #12112D",
"! c #F2D7C1",
"~ c #F2BD8E",
"{ c #130D07",
"] c #120F2A",
"^ c #F29747",
"/ c #130901",
"( c #130A04",
"_ c #130800",
" .+ ",
".@#$%%%%%%%%%% ",
"&*=-%%%%%%%%%% ",
" ;>,, %% ",
" %%, %% ",
" %% %% ",
" %% %% ",
" %% %% ",
" %% %% ",
" %% %% ",
" %% %% ",
" %% '), ",
" %%%%%%%%%%'!~{ ",
" %%%%%%%%%%]*^/ ",
" ,(_, ",
" "};
#endif

View File

@ -1,28 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_text_xpm[];
#else
const char * add_text_xpm[] = {
"16 16 4 1",
" c None",
". c #00009B",
"+ c #000098",
"@ c #00005D",
" .............. ",
" .............. ",
" .+ .... +. ",
" .@ .... . ",
" .... ",
" .... ",
" .... ",
" .... ",
" .... ",
" .... ",
" .... ",
" .... ",
" .... ",
" .....+ ",
" ........ ",
" "};
#endif

View File

@ -1,41 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_tracks_xpm[];
#else
const char * add_tracks_xpm[] = {
"16 16 16 1",
" c None",
". c #007D00",
"+ c #006100",
"@ c #004400",
"# c #007800",
"$ c #007B00",
"% c #004000",
"& c #007C00",
"* c #006500",
"= c #007A00",
"- c #004600",
"; c #D72E2E",
"> c #A32222",
", c #C22929",
"' c #D22D2D",
") c #6D1717",
" ",
"........ ",
"........+ ",
" @.# ",
" $.% ",
" &.* ",
" .= ",
" $.- ",
" ;;; ........",
" ;;;;; .......",
";;> >;, ",
";; ;' ",
";;> ;;, ",
" ;;;;;) ",
" ,',) ",
" "};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_zone_xpm[];
#else
const char * add_zone_xpm[] = {
"16 16 3 1",
" c None",
". c #007D00",
"+ c #007E00",
"................",
".... ........",
"... .......",
".. ++ .....",
". .... ...",
". +. ..... ..",
". +. ...... ..",
". .... .. .",
".. ++ .. ",
"... .. ... ",
".... .... ...",
"............ ..",
"............. .",
".............. .",
"............... ",
"............... "};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *add_zone_cutout_xpm[];
#else
const char * add_zone_cutout_xpm[] = {
"16 16 3 1",
" c None",
". c #007D00",
"+ c #900000",
" ..............",
".... ........",
"... ++++ .......",
".. +++++++ .....",
". ++ ++ ...",
". ++ ++ ..",
". ++ ++ ..",
". ++ ++ .",
".. ++++++++++ ..",
"... +++++++ ... ",
".... .... ",
"............ ",
"............. ",
".............. ",
" ............. ",
" ............ "};
#endif

View File

@ -1,26 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *anchor_xpm[];
#else
const char * anchor_xpm[] = {
"16 16 2 1",
" c None",
". c #000000",
" .. ",
" .... ",
" .. .. ",
" .. .. ",
" .... ",
" ............ ",
" ........... ",
" .. ",
". .. .",
".. .. ..",
".. .. ..",
".. .. ..",
". .. .... . .",
" ............ ",
" .......... ",
" ...... "};
#endif

View File

@ -1,118 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *annotate_xpm[];
#else
const char *annotate_xpm[] = {
/* columns rows colors const chars-per-pixel */
"16 16 93 2",
" c None",
". c #000000",
"+ c #080808",
"@ c #B0B0B0",
"# c #1B1B1C",
"$ c #161616",
"% c #FBFBFF",
"& c #EAEAF3",
"* c #69696F",
"= c #0A0A0A",
"- c #F7F7FF",
"; c #F3F3FF",
"> c #EEEEFF",
", c #BBBBCC",
"' c #2E2E33",
") c #9B9B9B",
"! c #F4F4FF",
"~ c #EFEFFF",
"{ c #EBEBFF",
"] c #E6E6FF",
"^ c #DFDFFC",
"/ c #7D7D90",
"( c #111113",
"_ c #F0F0FF",
": c #ECECFF",
"< c #E7E7FF",
"[ c #C5C5DD",
"} c #0C0C0E",
"| c #9999B6",
"1 c #000001",
"2 c #DCDBD9",
"3 c #050506",
"4 c #0F0F0F",
"5 c #020202",
"6 c #EDEDFF",
"7 c #E8E8FF",
"8 c #E4E4FF",
"9 c #ECECED",
"0 c #B1B1AF",
"a c #0A0A0C",
"b c #474540",
"c c #9E9C95",
"d c #484641",
"e c #010101",
"f c #86857F",
"g c #0C0C0C",
"h c #090909",
"i c #E9E9FF",
"j c #E5E5FF",
"k c #E0E0FF",
"l c #9C9B97",
"m c #8F8E89",
"n c #9D9B94",
"o c #8E8C84",
"p c #95938C",
"q c #807D74",
"r c #E1E1FF",
"s c #DDDDFF",
"t c #8B8BA4",
"u c #020203",
"v c #595854",
"w c #605E57",
"x c #888782",
"y c #76746B",
"z c #E2E2FF",
"A c #D4D4F3",
"B c #43423F",
"C c #272623",
"D c #35332F",
"E c #6C6A62",
"F c #9A9AB0",
"G c #18181C",
"H c #EDEDEC",
"I c #B5B4AE",
"J c #585753",
"K c #201F1D",
"L c #090807",
"M c #171715",
"N c #E4E4E2",
"O c #7F7C73",
"P c #64625B",
"Q c #5F5D56",
"R c #676767",
"S c #050505",
"T c #878681",
"U c #151513",
"V c #8A8987",
"W c #DDDCDA",
"X c #8E8E8E",
"Y c #AEADA7",
"Z c #B4B3AD",
"` c #D3D2CF",
" . c #918F89",
" . . . . . ",
" . . . ",
" . . . . . . ",
" . + . . . ",
" . @ # $ . . . . ",
" . % & * = . ",
". . - ; > , ' $ ",
") . ! ~ { ] ^ / ( . . . ",
" . _ : < [ } } | 1 2 3 4 5 . ",
" . 6 7 8 } 9 0 a b c d e f g h ",
" . i j k } l m n n n o p q d h ",
". . ] r s t u n c v w x q y . ",
") . z A e . b c w B C D n E b . ",
" . F G e H I c J K L M N O P Q ",
" . g R 5 S d n T D U V W P b . ",
" . X ) . Y O Z N ` .P . "};
#endif

View File

@ -1,38 +0,0 @@
/* XPM */
const char *annotate_down_right_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 16 1",
"= c #9A524C",
": c #405814",
"O c #932722",
". c #BAA7A6",
"X c #549454",
"+ c #7C210E",
" c None",
"$ c #8C0505",
"- c #AE7879",
"@ c #097409",
"* c #867258",
"& c #308430",
"# c #783820",
"; c #9E3838",
"% c #403F04",
"o c #7FA57F",
/* pixels */
" .X. oX ",
"O+@#O .@@o ",
"O$%$$ &@@o ",
"*$$$= &@@@o ",
".$$$. -#%&&@o ",
" +$#.-;$$$+.X@o ",
" *+*O$$$$$= X@o ",
" o@X-=*:$$. X@o ",
" o@X .@%$= $#@O;",
" o@X &@$$. $$%$O",
" o@X&@&$; =$$$-",
" o@@@& -$$$ ",
" X@@@. $$= ",
" X@@o :+o ",
" o@o X@o ",
" o&. "
};

View File

@ -1,38 +0,0 @@
/* XPM */
const char *annotate_right_down_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 16 1",
"o c #A25451",
"+ c #88A887",
"* c #424004",
"% c #308530",
"@ c #8B0405",
"# c #7C563C",
" c None",
"- c #B18B8C",
"O c #BAA6A6",
"X c #8E1C17",
"$ c #549354",
"; c #74381C",
"& c #067205",
". c #993F3B",
"= c #748157",
": c #AC7474",
/* pixels */
" .XoO ",
"+X@@@X#$$$$$$$+ ",
"%&*@@@@&&&&&&&% ",
"O#@@@X=+++$&&&O ",
" X@.O O&&%O ",
" O o@O+&&% ",
" @@=&&$ ",
" -@X&&= ",
" o@**X@o ",
" O@@@@@X- ",
" +&@@@.- ",
" +&&;oO X@.: ",
"$&&&%%%%;@@@@;%+",
"%&&&&&&&&*@@@@&%",
" +++++++;@@@#++ ",
" .X: "
};

View File

@ -1,40 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *apply_xpm[];
#else
const char * apply_xpm[] = {
"16 16 16 1",
" c None",
". c #000000",
"+ c #C8D7E5",
"@ c #8EA8C0",
"# c #9DB8D2",
"$ c #7E94AA",
"% c #8299AF",
"& c #D6E1EB",
"* c #C4CED6",
"= c #ACBED0",
"- c #404040",
"; c #ACB9C5",
"> c #727272",
", c #889FB6",
"' c #B1BFCB",
") c #98B2CC",
" ",
" ",
" ",
" .. ",
" .+@. ",
" .+#$. ",
" .. .+#%. ",
" .&&. .+#%. ",
" .*#=. .+#%. ",
" -=#=.&#%. ",
" .;####%. ",
" >,##%. ",
" .')$. ",
" ... ",
" ",
" "};
#endif

View File

@ -1,149 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *auto_associe_xpm[];
#else
const char *auto_associe_xpm[] = {
/* width height num_colors const chars_per_pixel */
"16 16 124 2",
" c None",
". c #160A00",
"+ c #FF7800",
"@ c #000000",
"# c #231000",
"$ c #E1DFDE",
"% c #44260C",
"& c #E86D00",
"* c #FFFFFF",
"= c #C35B00",
"- c #FAF6F3",
"; c #A38F7C",
"> c #C7B4A5",
", c #FDBD85",
"' c #FFBF87",
") c #FFF3EC",
"! c #FEE6D6",
"~ c #D8BDA8",
"{ c #C7874F",
"] c #F9B880",
"^ c #FFF5EF",
"/ c #FFE8D8",
"( c #FFDBC2",
"_ c #FFCEAB",
": c #F4C8A9",
"< c #D6B69C",
"[ c #F6EDE6",
"} c #F3F3F3",
"| c #878787",
"1 c #FFEADC",
"2 c #FFDDC5",
"3 c #FFD0AF",
"4 c #FFC298",
"5 c #FFB582",
"6 c #FDB380",
"7 c #EAC6A8",
"8 c #F7EADF",
"9 c #FDFDFD",
"0 c #272727",
"a c #FFDFC8",
"b c #FFD1B2",
"c c #FFC49C",
"d c #FFB785",
"e c #FFAA6F",
"f c #FF9D58",
"g c #FE9248",
"h c #F9C197",
"i c #FBEEE4",
"j c #FEFEFE",
"k c #C7C7C7",
"l c #FFD3B5",
"m c #FFC69F",
"n c #FFB988",
"o c #FFAC72",
"p c #FF9F5B",
"q c #FF9145",
"r c #FE8835",
"s c #030202",
"t c #030303",
"u c #FFC8A2",
"v c #FFBB8C",
"w c #FFAE75",
"x c #DD8C52",
"y c #0E0804",
"z c #BC9A7F",
"A c #080707",
"B c #DCDBD9",
"C c #080808",
"D c #CBCBCB",
"E c #020202",
"F c #FFBD8F",
"G c #FFB079",
"H c #FFA262",
"I c #EDEBEA",
"J c #B1B1AF",
"K c #0E0D0D",
"L c #484641",
"M c #9E9C95",
"N c #0E0E0E",
"O c #878680",
"P c #1F1F1F",
"Q c #FFB27C",
"R c #FFA465",
"S c #FE9A55",
"T c #0C0906",
"U c #9C9B96",
"V c #908F89",
"W c #8F8C84",
"X c #96938C",
"Y c #807C73",
"Z c #FFA669",
"` c #FAA162",
" . c #A37E60",
".. c #A09185",
"+. c #0E0A07",
"@. c #595854",
"#. c #605E57",
"$. c #888681",
"%. c #76736A",
"&. c #E1A074",
"*. c #442102",
"=. c #010000",
"-. c #484540",
";. c #605D56",
">. c #42413E",
",. c #272623",
"'. c #36332F",
"). c #6D6A62",
"!. c #474540",
"~. c #ECECEB",
"{. c #B5B3AD",
"]. c #9E9B94",
"^. c #595753",
"/. c #201F1D",
"(. c #090807",
"_. c #181715",
":. c #E5E4E2",
"<. c #64625B",
"[. c #5F5D56",
"}. c #35332F",
"|. c #151513",
"1. c #8B8987",
"2. c #DEDCDA",
"3. c #65625B",
" . + + + ",
" @ # + + + ",
" @ $ % & * = + * + @ @ ",
" @ * - ; > , ' ' * * + + + * @ ",
" @ * ) ! ~ { ] ' * * + + + * @ ",
"@ @ ^ / ( _ : < [ * * * * } | @ ",
" @ 1 2 3 4 5 6 7 8 * * 9 0 ",
" @ a b c d e f g h i j k @ ",
" @ l m n o p q r s t t k @ ",
" @ u v w x y y z A B C D E @ ",
"@ @ F G H y I J K L M L N O P @ ",
" @ Q R S T U V M M M W X Y L @ ",
" @ Z ` ...+.M M @.#.$.Y %.N @ ",
" @ &.*.=.@ -.M ;.>.,.'.M ).!.@ ",
" @ # @ ~.{.].^./.(._.:.Y <.[.",
" . @ @ -.].$.}.|.1.2.3.!.@ "};
#endif

View File

@ -1,40 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * auto_delete_track_xpm[];
#else
const char * auto_delete_track_xpm[] =
{
"16 15 14 1",
"X c Black",
"% c #000080",
"W c #008000",
") c #008080",
"> c #00FF00",
"( c #800000",
": c #800080",
"- c #808080",
". c None",
"? c #FF0000",
"U c #FF00FF",
"$ c #FFFF00",
"o c White",
"z c Red",
"zz..........Xoo$",
"zz.........Xoo$$",
"zz........Xoo$$%",
".zz......X>Xo$%-",
"..zz....X>$>X%--",
"...zz..X>$>WWX-X",
"....zz?UX>WW%)X.",
".o...?UoUXW%)X..",
".oo.?UoU?UX)X...",
"ooo.U?o?UU)X....",
"oooo?U?UU:(.....",
"oooo-?UU:(......",
"ooooo-(((zz.....",
".oooooo....zz...",
"..o..o.......zz."
};
#endif

View File

@ -1,39 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *auto_track_width_xpm[];
#else
const char * auto_track_width_xpm[] = {
"16 16 14 1",
" c None",
", c #008080",
". c #00E000",
"+ c #006100",
"@ c #004400",
"# c #007800",
"$ c #007B00",
"% c #004000",
"& c #007C00",
"* c #006500",
"= c #007A00",
"- c #004600",
"x c #FF2D2D",
"o c #0000FF",
" ",
"........+ ",
".........+ ",
" @..# ",
" $.% o o ",
" &..* o ",
" xxxx..= o ",
" x xxx..- o ",
" x x ........",
" x x .......",
"x x , o ",
"x x ,, o ",
"x x,,,,,,,,,,o ",
"x x ,, o ",
"x x , o o ",
"x x "};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_xpm[];
#else
const char * axis3d_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . ",
" ... ",
" . ",
" . ",
" . ",
" . ",
" . . ",
" ............",
" . . ",
" . ",
" . ",
" . ",
" .. ",
" . ",
" "
};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_back_xpm[];
#else
const char * axis3d_back_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . x ",
" ... x ",
" . x ",
" . xxxxx ",
" . xxx ",
" . x ",
" . . ",
" ............",
" . . ",
" . ",
" . ",
" . ",
" .. ",
" . ",
" "
};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_bottom_xpm[];
#else
const char * axis3d_bottom_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . ",
" ... ",
" . ",
" . ",
" . ",
" . ",
" . . ",
" ............",
" . . ",
" . x ",
" . xxx ",
" . xxxxx ",
" .. x ",
" . x ",
" x "
};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_front_xpm[];
#else
const char * axis3d_front_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . ",
" ... ",
" . ",
" . ",
" . ",
" . ",
" . . ",
" ............",
" . x . ",
" . xxx ",
" . xxxxx ",
" . x ",
" .. x ",
" . x ",
" "
};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_left_xpm[];
#else
const char * axis3d_left_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . ",
" ... ",
" . ",
" . ",
" x. ",
" xx ",
"xxxxxx . ",
" xx...........",
" x . ",
" . ",
" . ",
" . ",
" .. ",
" . ",
" "
};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_right_xpm[];
#else
const char * axis3d_right_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . ",
" ... ",
" . ",
" . ",
" . x ",
" . xx ",
" . xxxxxx",
" .......xx...",
" . x . ",
" . ",
" . ",
" . ",
" .. ",
" . ",
" "
};
#endif

View File

@ -1,27 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * axis3d_top_xpm[];
#else
const char * axis3d_top_xpm[] = {
"16 15 3 1",
" c None",
". c Blue",
"x c Red",
" . x ",
" ... x ",
" . x ",
" . xxxxx ",
" . xxx ",
" . x ",
" . . ",
" ............",
" . . ",
" . ",
" . ",
" . ",
" .. ",
" . ",
" "
};
#endif

View File

@ -1,25 +0,0 @@
/* XPM */
const char *bom_xpm[] = {
/* columns rows colors const chars-per-pixel */
"16 16 5 1",
" c None",
". c #000000",
"+ c #FFFFFF",
"@ c #BFE5FF",
"# c #696969",
"............... ",
".+++++++++++++. ",
".@#@..@....@#@. ",
".+++++++++++++. ",
".@#@..@..@@@#@. ",
".+++++++++++++. ",
".@#@..@....@#@. ",
".+++++++++++++. ",
".@#@..@...@@#@. ",
".+++++++++++++. ",
".@#@..@....@#@. ",
".+++++++++++++. ",
".@#@..@..@..#@. ",
".+++++++++++++. ",
"............... ",
" "};

View File

@ -1,47 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * book_xpm[];
#else
const char * book_xpm[] = {
"16 16 21 1",
" c None",
". c #007F7F",
"+ c #660000",
"@ c #CC0000",
"# c #E50000",
"$ c #FF0000",
"% c #F20000",
"& c #D80000",
"* c #720000",
"= c #7F0000",
"- c #BFBFBF",
"; c #E57F7F",
"> c #7F7F7F",
", c #FFFFFF",
"' c #F2BFBF",
") c #723F3F",
"! c #A5A5A5",
"~ c #E5E5E5",
"{ c #B2B2B2",
"] c #003F3F",
"^ c #000000",
" ",
" ......... ",
" +@#$$$$$%&+ ",
" +##$$$$$$$* ",
" +##$$$$$$$=- ",
" +##$$$$$$$=;> ",
" +##$$$$$$$=;,. ",
" +##$$$$$$$=;,. ",
" +##$$$$$$$=''. ",
" +##$$$$$$$=,;. ",
" +##$$$$$$%+,;. ",
" +&++++++++),;. ",
" ++!~~~~~~~~~,. ",
" ++!~~~~~~~~~{. ",
" ]^^^^^^^^^^^ ",
" "
};
#endif

View File

@ -1,59 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *break_bus_xpm[];
#else
const char * break_bus_xpm[] = {
"16 16 36 1",
" c None",
". c #D72E2E",
"+ c #D82E2E",
"@ c #D43232",
"# c #9B9B9B",
"$ c #D82F2F",
"% c #CF3A3A",
"& c #C45050",
"* c #D62D2D",
"= c #A98080",
"- c #B66868",
"; c #9C9C9C",
"> c #0000C3",
", c #1818BC",
"' c #0000C2",
") c #1212BE",
"! c #4E4EAE",
"~ c #0404C1",
"{ c #1111BE",
"] c #2C2CB7",
"^ c #7474A4",
"/ c #1B1BBB",
"( c #0A0AC0",
"_ c #6F6FA6",
": c #6767A8",
"< c #1C1CBB",
"[ c #2020BA",
"} c #0202C2",
"| c #0909C0",
"1 c #5656AC",
"2 c #97979B",
"3 c #5353AD",
"4 c #0C0CBF",
"5 c #7C7CA3",
"6 c #8E8E9E",
"7 c #6161A9",
" ",
" . ",
" +@ .# $ ",
" %& .# *= ",
" - #$=; ",
" ",
" >>, >') ",
" >>>'!>>>~{ ",
" >>>>>]^/>>>>( ",
"'>>>,_## :<>>>[ ",
" }|12# 34'5#",
" 6# 7# ",
" ",
" ",
" ",
" "};
#endif

View File

@ -1,58 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char* break_line_xpm[];
#else
const char * break_line_xpm[] = {
"16 16 34 1",
" c None",
". c #D72E2E",
"+ c #D82E2E",
"@ c #D43232",
"# c #9B9B9B",
"$ c #D82F2F",
"% c #CF3A3A",
"& c #C45050",
"* c #D62D2D",
"= c #A98080",
"- c #B66868",
"; c #9C9C9C",
"> c #007D00",
", c #017D01",
"' c #077E07",
") c #568D56",
"! c #0E7F0E",
"~ c #158115",
"{ c #418941",
"] c #8F988F",
"^ c #4C8B4C",
"/ c #0A7F0A",
"( c #1A821A",
"_ c #268426",
": c #819681",
"< c #3A883A",
"[ c #057E05",
"} c #118011",
"| c #6C916C",
"1 c #699169",
"2 c #0D7F0D",
"3 c #8B978B",
"4 c #969A96",
"5 c #809580",
" ",
" . ",
" +@ .# $ ",
" %& .# *= ",
" - #$=; ",
" ",
" > , ",
" >>')!>~ ",
" >,{] ^/,( ",
" >>_:# <,'( ",
"[}|# 1_23",
" 4 5 ",
" ",
" ",
" ",
" "};
#endif

View File

@ -1,90 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char * browse_files_xpm[];
#else
const char * browse_files_xpm[] = {
"16 16 66 1",
" c None",
". c #000000",
"+ c #E4E5DE",
"@ c #D3D5CA",
"# c #A5A797",
"$ c #F3F4F0",
"% c #ABAE99",
"& c #BDC0AD",
"* c #BCBEAA",
"= c #B1B49F",
"- c #6E715C",
"; c #E6E7DD",
"> c #F5F6F3",
", c #818181",
"' c #E2E4D9",
") c #E1E3D8",
"! c #DFE1D6",
"~ c #C4C6B6",
"{ c #F7F7F6",
"] c #D3D6C5",
"^ c #808080",
"/ c #636363",
"( c #D2D2D2",
"_ c #F2F2F2",
": c #CACDB9",
"< c #C8CBB6",
"[ c #C6C9B3",
"} c #C4C8B1",
"| c #93967C",
"1 c #F0F0EB",
"2 c #C5C5C5",
"3 c #F5F5F5",
"4 c #FEFEFE",
"5 c #F0F1EC",
"6 c #D2D4C2",
"7 c #AEAEAE",
"8 c #E5E5E5",
"9 c #F8F8F8",
"0 c #E0E0E0",
"a c #C3C6AF",
"b c #C1C4AD",
"c c #909478",
"d c #EFF0EB",
"e c #CED1BD",
"f c #7B7B7B",
"g c #5D5D5D",
"h c #ADADAD",
"i c #BCBCBC",
"j c #626262",
"k c #666666",
"l c #BFC2AB",
"m c #BDC1A8",
"n c #8E9175",
"o c #EDEEE8",
"p c #7C7C7C",
"q c #525252",
"r c #BBBEA5",
"s c #BABDA3",
"t c #8B8F72",
"u c #ECEEE7",
"v c #B7BAA0",
"w c #E8E8E0",
"x c #C6C9BA",
"y c #8E9276",
"z c #8C9073",
"A c #646751",
" ",
" ",
" .... ",
" .+@@#. ",
" .$%&*=-....... ",
" .;>;,..,''))!~.",
" .{]^/(_/^:<[}|.",
" .1].234_.:<[}|.",
" .56.7890.[}abc.",
" .defghijkablmn.",
" .o:<p..q..mrst.",
" .u[}ablm...vvt.",
" .wablmrsv...vt.",
" .xcynztttt..tA.",
" ............. ",
" "};
#endif

View File

@ -1,127 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *cancel_xpm[];
#else
const char * cancel_xpm[] = {
"16 16 103 2",
" c None",
"! c black",
"# c #422019",
"$ c #391C17",
"% c #0D0D0D",
"& c #020202",
"' c #050505",
"( c #321813",
") c #DD8D7D",
"* c #D05F49",
"+ c #4E1D14",
", c #2D1714",
"- c #C16E5E",
". c #AD4632",
"0 c #090504",
"1 c #3E1E18",
"2 c #D3634E",
"3 c #C95641",
"4 c #C64D37",
"5 c #4C1B13",
"6 c #301914",
"7 c #D9705B",
"8 c #C24129",
"9 c #962E1C",
": c #120502",
"; c #0E0B09",
"< c #C34C36",
"= c #C03B22",
"> c #BF3B22",
"? c #C44D36",
"@ c #5C251B",
"A c #1D0F0C",
"B c #D66F5B",
"C c #B93B24",
"D c #922C1B",
"E c #4E160D",
"F c #2F1510",
"G c #BE3B22",
"H c #B23821",
"I c #3B1711",
"J c #CA6D5B",
"K c #B83E27",
"L c #822617",
"M c #2C0B05",
"N c #2B130E",
"O c #BD3B22",
"P c #BA3B22",
"Q c #B73922",
"R c #B45B4A",
"S c #CE523A",
"T c #992F1D",
"U c #200804",
"V c #3C1812",
"W c #BA3A22",
"X c #C84E37",
"Y c #B63922",
"Z c #2F0E07",
"[ c #49160C",
"] c #CE6653",
"^ c #BD3C24",
"_ c #BB3B22",
"` c #B43922",
"a c #2C140F",
"b c #1B0704",
"c c #D17F70",
"d c #BE3F27",
"e c #B63D26",
"f c #BC3B22",
"g c #B03720",
"h c #381914",
"i c #CB7868",
"j c #BD3F28",
"k c #922F1E",
"l c #090909",
"m c #B43A23",
"n c #25120F",
"o c #010101",
"p c #572119",
"q c #CC7261",
"r c #B93A22",
"s c #96311E",
"t c #200B08",
"u c #411710",
"v c #A23A26",
"w c #080505",
"x c #230A06",
"y c #CD7261",
"z c #BD3D25",
"{ c #98311E",
"| c #240D09",
"} c #C23B22",
"~ c #AD3620",
" ! c #26110D",
"!! c #0F0907",
"#! c #912F1E",
"$! c #94301E",
"%! c #180906",
"&! c #A13521",
"'! c #26110E",
"(! c #2C0E09",
")! c #1C0905",
"*! c #341A15",
"+! c #311712",
" ",
" # $ % & ' ",
" ( ) * + % , - . 0 ",
" 1 2 3 4 5 6 7 8 9 : ",
" ; < = > ? @ A B C D E ",
" F < G G H I ' J K L M ",
" N < O P Q R S T U ",
" V < W W X Y Z & ",
" & [ ] ^ W _ ` a ",
" b c d e Q f O g N ",
" h i j k l I < G G m n ",
" o p q r s t u ? > = v w ",
" x y z { | 5 4 } ~ ! ",
" !!#!$!%! % + X &!'! ",
" (!)! % *!+! ",
" "};
#endif

View File

@ -1,123 +0,0 @@
/* XPM */
#ifndef XPMMAIN
extern const char *cancel_tool_xpm[];
#else
const char * cancel_tool_xpm[] = {
"16 16 99 2",
" c None",
". c #411F18",
"+ c #371B16",
"@ c #060606",
"# c #010101",
"$ c #040404",
"% c #2C1510",
"& c #DB8B7C",
"* c #CE5E48",
"= c #4D1C13",
"- c #2C1613",
"; c #BF6D5D",
"> c #AB4531",
", c #070403",
"' c #000000",
") c #361A15",
"! c #D1624D",
"~ c #C75540",
"{ c #C44C36",
"] c #4B1A12",
"^ c #2E1813",
"/ c #D76F5A",
"( c #C04028",
"_ c #942D1B",
": c #0F0401",
"< c #FDFDFD",
"[ c #0A0807",
"} c #C14B35",
"| c #BF3B22",
"1 c #BD3A21",
"2 c #C24C35",
"3 c #582319",
"4 c #1C0E0B",
"5 c #D46E5A",
"6 c #B73A23",
"7 c #902B1A",
"8 c #4D150C",
"9 c #212120",
"0 c #2E140F",
"a c #C24C36",
"b c #BC3A21",
"c c #B03720",
"d c #C86C5A",
"e c #B63D26",
"f c #802516",
"g c #2B0A04",
"h c #EDEDED",
"i c #818181",
"j c #2B130E",
"k c #BB3A21",
"l c #B83A21",
"m c #CC5139",
"n c #972E1C",
"o c #1F0703",
"p c #C1C1C1",
"q c #1A0603",
"r c #CF7E6F",
"s c #BC3E26",
"t c #BA3A21",
"u c #AE361F",
"v c #29120D",
"w c #361813",
"x c #C97767",
"y c #BB3E27",
"z c #902E1D",
"A c #B23922",
"B c #22100E",
"C c #717171",
"D c #562018",
"E c #CA7160",
"F c #B73921",
"G c #94301D",
"H c #1E0A07",
"I c #40160F",
"J c #BE3A21",
"K c #A03925",
"L c #060404",
"M c #341E1B",
"N c #CB7160",
"O c #BB3C24",
"P c #96301D",
"Q c #230C08",
"R c #C03A21",
"S c #AB351F",
"T c #220F0B",
"U c #383331",
"V c #8F2E1D",
"W c #922F1D",
"X c #170805",
"Y c #070707",
"Z c #C64D36",
"` c #9F3420",
" . c #220F0C",
".. c #9DA08E",
"+. c #9F9F9F",
"@. c #371B17",
"#. c #190804",
"$. c #321914",
"%. c #301611",
" . + @ # $ ",
" % & * = - ; > , ",
" ' ' ) ! ~ { ] ^ / ( _ : ",
"' < ' [ } | 1 2 3 4 5 6 7 8 ",
"' < ' ' 9 0 a b b c d e f g ",
"' < h h h i j } k l m n o ",
" ' < h h p # q r s t k u v ",
" ' ' < p ' w x y z } b b A B ",
" ' < C D E F G H I 2 1 J K L ",
" ' < M N O P Q ] { R S T ",
" ' < U V W X Y = Z ` .",
"..' < h +.@.#. @ $.%. ",
"' < h h h h p ' ",
"' < ' ' ' ' h ' ",
"' < ' ' h ' ",
" ' ' ' ' "};
#endif

View File

@ -1,38 +0,0 @@
/* XPM */
const char *checked_ok_xpm[] = {
/* columns rows colors chars-per-pixel */
"16 16 16 1",
"- c #C4F874",
"% c #B2E58B",
"o c #C7E5C4",
"= c #B7F456",
"O c #ACCEAC",
"$ c #2A8504",
" c None",
". c #7FAC78",
"+ c #1C510A",
"X c #0C2906",
"@ c #70B158",
"# c #91D35F",
"& c #32720A",
"; c #53B412",
"* c #77CE1C",
": c #AAFA18",
/* pixels */
" ",
" ",
" ..X ",
" .ooOX",
" .ooo.+",
" +@# .ooo@$ ",
"+#%%& .%%O@$ ",
"X*=-# X#%%%;$ ",
" ;::=&#-%%;$ ",
" &:::::==*$ ",
" X*==:::*& ",
" ;--==*& ",
" +===*& ",
" X;;;& ",
" ",
" "
};

Some files were not shown because too many files have changed in this diff Show More